This source file includes following definitions.
- crm_copy_xml_element
1
2
3
4
5
6
7
8
9
10 #ifndef PCMK__CRM_COMMON_NVPAIR__H
11 # define PCMK__CRM_COMMON_NVPAIR__H
12
13 # include <sys/time.h>
14 # include <glib.h>
15 # include <libxml/tree.h>
16 # include <crm/crm.h>
17
18
19 # ifdef __cplusplus
20 extern "C" {
21 # endif
22
23
24
25
26
27
28
29 typedef struct pcmk_nvpair_s {
30 char *name;
31 char *value;
32 } pcmk_nvpair_t;
33
34 GSList *pcmk_prepend_nvpair(GSList *nvpairs, const char *name, const char *value);
35 void pcmk_free_nvpairs(GSList *nvpairs);
36 GSList *pcmk_sort_nvpairs(GSList *list);
37 GSList *pcmk_xml_attrs2nvpairs(xmlNode *xml);
38 void pcmk_nvpairs2xml_attrs(GSList *list, xmlNode *xml);
39
40 xmlNode *crm_create_nvpair_xml(xmlNode *parent, const char *id,
41 const char *name, const char *value);
42 void hash2nvpair(gpointer key, gpointer value, gpointer user_data);
43 void hash2field(gpointer key, gpointer value, gpointer user_data);
44 void hash2metafield(gpointer key, gpointer value, gpointer user_data);
45 void hash2smartfield(gpointer key, gpointer value, gpointer user_data);
46 GHashTable *xml2list(xmlNode *parent);
47
48 const char *crm_xml_add(xmlNode *node, const char *name, const char *value);
49 const char *crm_xml_replace(xmlNode *node, const char *name, const char *value);
50 const char *crm_xml_add_int(xmlNode *node, const char *name, int value);
51 const char *crm_xml_add_ll(xmlNode *node, const char *name, long long value);
52 const char *crm_xml_add_ms(xmlNode *node, const char *name, guint ms);
53 const char *crm_xml_add_timeval(xmlNode *xml, const char *name_sec,
54 const char *name_usec,
55 const struct timeval *value);
56
57 const char *crm_element_value(const xmlNode *data, const char *name);
58 int crm_element_value_int(const xmlNode *data, const char *name, int *dest);
59 int crm_element_value_ll(const xmlNode *data, const char *name, long long *dest);
60 int crm_element_value_ms(const xmlNode *data, const char *name, guint *dest);
61 int crm_element_value_epoch(const xmlNode *xml, const char *name, time_t *dest);
62 int crm_element_value_timeval(const xmlNode *data, const char *name_sec,
63 const char *name_usec, struct timeval *dest);
64 char *crm_element_value_copy(const xmlNode *data, const char *name);
65
66
67
68
69
70
71
72
73
74
75 static inline const char *
76 crm_copy_xml_element(xmlNode *obj1, xmlNode *obj2, const char *element)
77 {
78 const char *value = crm_element_value(obj1, element);
79
80 crm_xml_add(obj2, element, value);
81 return value;
82 }
83
84 # ifdef __cplusplus
85 }
86 # endif
87
88 #endif