pacemaker  2.1.7-0f7f88312f
Scalable High-Availability cluster resource manager
nvpair.h
Go to the documentation of this file.
1 /*
2  * Copyright 2004-2022 the Pacemaker project contributors
3  *
4  * The version control history for this file may have further details.
5  *
6  * This source code is licensed under the GNU Lesser General Public License
7  * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8  */
9 
10 #ifndef PCMK__CRM_COMMON_NVPAIR__H
11 # define PCMK__CRM_COMMON_NVPAIR__H
12 
13 # include <sys/time.h> // struct timeval
14 # include <glib.h> // gpointer, gboolean, guint
15 # include <libxml/tree.h> // xmlNode
16 # include <crm/crm.h>
17 
18 
19 # ifdef __cplusplus
20 extern "C" {
21 # endif
22 
29 typedef struct pcmk_nvpair_s {
30  char *name;
31  char *value;
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(const 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(const xmlNode *parent);
47 
48 const char *crm_xml_add(xmlNode *node, const char *name, const char *value);
49 const char *crm_xml_add_int(xmlNode *node, const char *name, int value);
50 const char *crm_xml_add_ll(xmlNode *node, const char *name, long long value);
51 const char *crm_xml_add_ms(xmlNode *node, const char *name, guint ms);
52 const char *crm_xml_add_timeval(xmlNode *xml, const char *name_sec,
53  const char *name_usec,
54  const struct timeval *value);
55 
56 const char *crm_element_value(const xmlNode *data, const char *name);
57 int crm_element_value_int(const xmlNode *data, const char *name, int *dest);
58 int crm_element_value_ll(const xmlNode *data, const char *name, long long *dest);
59 int crm_element_value_ms(const xmlNode *data, const char *name, guint *dest);
60 int crm_element_value_epoch(const xmlNode *xml, const char *name, time_t *dest);
61 int crm_element_value_timeval(const xmlNode *data, const char *name_sec,
62  const char *name_usec, struct timeval *dest);
63 char *crm_element_value_copy(const xmlNode *data, const char *name);
64 
74 static inline const char *
75 crm_copy_xml_element(const xmlNode *obj1, xmlNode *obj2, const char *element)
76 {
77  const char *value = crm_element_value(obj1, element);
78 
79  crm_xml_add(obj2, element, value);
80  return value;
81 }
82 
83 # ifdef __cplusplus
84 }
85 # endif
86 
87 #endif // PCMK__CRM_COMMON_NVPAIR__H
A dumping ground.
GSList * pcmk_sort_nvpairs(GSList *list)
Sort a list of name/value pairs.
Definition: nvpair.c:146
char * name
Definition: nvpair.h:30
char data[0]
Definition: cpg.c:55
void hash2field(gpointer key, gpointer value, gpointer user_data)
Set XML attribute based on hash table entry.
Definition: nvpair.c:700
void pcmk_free_nvpairs(GSList *nvpairs)
Free a list of name/value pairs.
Definition: nvpair.c:102
const char * crm_xml_add_ms(xmlNode *node, const char *name, guint ms)
Create an XML attribute with specified name and unsigned value.
Definition: nvpair.c:371
const char * name
Definition: cib.c:26
char * value
Definition: nvpair.h:31
const char * crm_xml_add_int(xmlNode *node, const char *name, int value)
Create an XML attribute with specified name and integer value.
Definition: nvpair.c:349
const char * crm_xml_add(xmlNode *node, const char *name, const char *value)
Create an XML attribute with specified name and value.
Definition: nvpair.c:302
GSList * pcmk_prepend_nvpair(GSList *nvpairs, const char *name, const char *value)
Prepend a name/value pair to a list.
Definition: nvpair.c:91
int crm_element_value_ll(const xmlNode *data, const char *name, long long *dest)
Retrieve the long long integer value of an XML attribute.
Definition: nvpair.c:515
int crm_element_value_int(const xmlNode *data, const char *name, int *dest)
Retrieve the integer value of an XML attribute.
Definition: nvpair.c:483
void hash2smartfield(gpointer key, gpointer value, gpointer user_data)
Add hash table entry to XML as (possibly legacy) name/value.
Definition: nvpair.c:666
void hash2nvpair(gpointer key, gpointer value, gpointer user_data)
Add XML nvpair element based on hash table entry.
Definition: nvpair.c:801
GHashTable * xml2list(const xmlNode *parent)
Retrieve XML attributes as a hash table.
Definition: nvpair.c:826
int crm_element_value_ms(const xmlNode *data, const char *name, guint *dest)
Retrieve the millisecond value of an XML attribute.
Definition: nvpair.c:540
char * crm_element_value_copy(const xmlNode *data, const char *name)
Retrieve a copy of the value of an XML attribute.
Definition: nvpair.c:644
const char * crm_element_value(const xmlNode *data, const char *name)
Retrieve the value of an XML attribute.
Definition: nvpair.c:447
int crm_element_value_timeval(const xmlNode *data, const char *name_sec, const char *name_usec, struct timeval *dest)
Retrieve the value of XML second/microsecond attributes as time.
Definition: nvpair.c:597
int crm_element_value_epoch(const xmlNode *xml, const char *name, time_t *dest)
Retrieve the seconds-since-epoch value of an XML attribute.
Definition: nvpair.c:568
const char * crm_xml_add_timeval(xmlNode *xml, const char *name_sec, const char *name_usec, const struct timeval *value)
Create XML attributes for seconds and microseconds.
Definition: nvpair.c:423
const char * crm_xml_add_ll(xmlNode *node, const char *name, long long value)
Create an XML attribute with specified name and long long int value.
Definition: nvpair.c:399
void hash2metafield(gpointer key, gpointer value, gpointer user_data)
Set XML attribute based on hash table entry, as meta-attribute name.
Definition: nvpair.c:728
void pcmk_nvpairs2xml_attrs(GSList *list, xmlNode *xml)
Add XML attributes based on a list of name/value pairs.
Definition: nvpair.c:201
xmlNode * crm_create_nvpair_xml(xmlNode *parent, const char *id, const char *name, const char *value)
Create an XML name/value pair.
Definition: nvpair.c:763
const char * parent
Definition: cib.c:27
struct pcmk_nvpair_s pcmk_nvpair_t
GSList * pcmk_xml_attrs2nvpairs(const xmlNode *xml)
Create a list of name/value pairs from an XML node&#39;s attributes.
Definition: nvpair.c:161