pacemaker  2.1.0-7c3f660
Scalable High-Availability cluster resource manager
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions | Variables
unpack.c File Reference
#include <crm_internal.h>
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include <time.h>
#include <crm/crm.h>
#include <crm/services.h>
#include <crm/msg_xml.h>
#include <crm/common/xml.h>
#include <crm/common/xml_internal.h>
#include <crm/common/util.h>
#include <crm/pengine/rules.h>
#include <crm/pengine/internal.h>
#include <crm/common/iso8601_internal.h>
#include <pe_status_private.h>
Include dependency graph for unpack.c:

Go to the source code of this file.

Macros

#define set_config_flag(data_set, option, flag)
 
#define XPATH_UNFENCING_NVPAIR
 
#define XPATH_ENABLE_UNFENCING
 
#define STATUS_PATH_MAX   1024
 

Functions

 CRM_TRACE_INIT_DATA (pe_status)
 
void pe_fence_node (pe_working_set_t *data_set, pe_node_t *node, const char *reason, bool priority_delay)
 Schedule a fence action for a node. More...
 
gboolean unpack_config (xmlNode *config, pe_working_set_t *data_set)
 
pe_node_tpe_create_node (const char *id, const char *uname, const char *type, const char *score, pe_working_set_t *data_set)
 
gboolean unpack_nodes (xmlNode *xml_nodes, pe_working_set_t *data_set)
 
gboolean unpack_remote_nodes (xmlNode *xml_resources, pe_working_set_t *data_set)
 
gboolean unpack_resources (xmlNode *xml_resources, pe_working_set_t *data_set)
 
gboolean unpack_tags (xmlNode *xml_tags, pe_working_set_t *data_set)
 
gboolean unpack_status (xmlNode *status, pe_working_set_t *data_set)
 
const char * pe_base_name_end (const char *id)
 
char * clone_strip (const char *last_rsc_id)
 
char * clone_zero (const char *last_rsc_id)
 
void calculate_active_ops (GList *sorted_op_list, int *start_index, int *stop_index)
 
int pe__target_rc_from_xml (xmlNode *xml_op)
 
GList * find_operations (const char *rsc, const char *node, gboolean active_filter, pe_working_set_t *data_set)
 

Variables

uint32_t pe_wo = 0
 

Macro Definition Documentation

#define set_config_flag (   data_set,
  option,
  flag 
)
Value:
do { \
const char *scf_value = pe_pref((data_set)->config_hash, (option)); \
if (scf_value != NULL) { \
if (crm_is_true(scf_value)) { \
(data_set)->flags = pcmk__set_flags_as(__func__, __LINE__, \
LOG_TRACE, "Working set", \
crm_system_name, (data_set)->flags, \
(flag), #flag); \
} else { \
(data_set)->flags = pcmk__clear_flags_as(__func__, __LINE__,\
LOG_TRACE, "Working set", \
crm_system_name, (data_set)->flags, \
(flag), #flag); \
} \
} \
} while(0)
#define LOG_TRACE
Definition: logging.h:36
char * crm_system_name
Definition: utils.c:54
const char * pe_pref(GHashTable *options, const char *name)
Definition: common.c:308
gboolean crm_is_true(const char *s)
Definition: strings.c:415
uint64_t flags
Definition: remote.c:149

Definition at line 35 of file unpack.c.

#define STATUS_PATH_MAX   1024

Definition at line 2543 of file unpack.c.

#define XPATH_ENABLE_UNFENCING
Value:
#define XML_CIB_TAG_RESOURCES
Definition: msg_xml.h:180
#define XPATH_UNFENCING_NVPAIR
Definition: unpack.c:171
#define XML_TAG_META_SETS
Definition: msg_xml.h:204
#define XML_TAG_CIB
Definition: msg_xml.h:109
#define XML_CIB_TAG_RSCCONFIG
Definition: msg_xml.h:186
#define XML_CIB_TAG_CONFIGURATION
Definition: msg_xml.h:178

Definition at line 177 of file unpack.c.

#define XPATH_UNFENCING_NVPAIR
Value:
"and @" XML_NVPAIR_ATTR_VALUE "='unfencing']"
#define PCMK_STONITH_PROVIDES
Definition: agents.h:36
#define XML_NVPAIR_ATTR_NAME
Definition: msg_xml.h:377
#define XML_CIB_TAG_NVPAIR
Definition: msg_xml.h:200
#define XML_RSC_ATTR_REQUIRES
Definition: msg_xml.h:240
#define XML_NVPAIR_ATTR_VALUE
Definition: msg_xml.h:378

Definition at line 171 of file unpack.c.

Function Documentation

void calculate_active_ops ( GList *  sorted_op_list,
int *  start_index,
int *  stop_index 
)

Definition at line 2253 of file unpack.c.

char* clone_strip ( const char *  last_rsc_id)

Definition at line 1634 of file unpack.c.

char* clone_zero ( const char *  last_rsc_id)

Definition at line 1656 of file unpack.c.

CRM_TRACE_INIT_DATA ( pe_status  )
GList* find_operations ( const char *  rsc,
const char *  node,
gboolean  active_filter,
pe_working_set_t data_set 
)

Definition at line 4042 of file unpack.c.

int pe__target_rc_from_xml ( xmlNode *  xml_op)

Definition at line 3508 of file unpack.c.

const char* pe_base_name_end ( const char *  id)

Definition at line 1594 of file unpack.c.

pe_node_t* pe_create_node ( const char *  id,
const char *  uname,
const char *  type,
const char *  score,
pe_working_set_t data_set 
)

Definition at line 390 of file unpack.c.

void pe_fence_node ( pe_working_set_t data_set,
pe_node_t node,
const char *  reason,
bool  priority_delay 
)

Schedule a fence action for a node.

Parameters
[in,out]data_setCurrent working set of cluster
[in,out]nodeNode to fence
[in]reasonText description of why fencing is needed
[in]priority_delayWhether to consider priority-fencing-delay

Definition at line 97 of file unpack.c.

gboolean unpack_config ( xmlNode *  config,
pe_working_set_t data_set 
)

Definition at line 198 of file unpack.c.

gboolean unpack_nodes ( xmlNode *  xml_nodes,
pe_working_set_t data_set 
)

Definition at line 530 of file unpack.c.

gboolean unpack_remote_nodes ( xmlNode *  xml_resources,
pe_working_set_t data_set 
)

Definition at line 629 of file unpack.c.

gboolean unpack_resources ( xmlNode *  xml_resources,
pe_working_set_t data_set 
)

Definition at line 766 of file unpack.c.

gboolean unpack_status ( xmlNode *  status,
pe_working_set_t data_set 
)

Definition at line 1249 of file unpack.c.

gboolean unpack_tags ( xmlNode *  xml_tags,
pe_working_set_t data_set 
)

Definition at line 827 of file unpack.c.

Variable Documentation

uint32_t pe_wo = 0

Definition at line 68 of file unpack.c.