pacemaker  2.1.8-3980678f03
Scalable High-Availability cluster resource manager
nvpair.h
Go to the documentation of this file.
1 /*
2  * Copyright 2004-2024 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, GHashTable
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 
65 char *crm_meta_name(const char *field);
66 const char *crm_meta_value(GHashTable *hash, const char *field);
67 
77 static inline const char *
78 crm_copy_xml_element(const xmlNode *obj1, xmlNode *obj2, const char *element)
79 {
80  const char *value = crm_element_value(obj1, element);
81 
82  crm_xml_add(obj2, element, value);
83  return value;
84 }
85 
86 #ifdef __cplusplus
87 }
88 #endif
89 
90 #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:145
char * name
Definition: nvpair.h:30
char data[0]
Definition: cpg.c:58
void hash2field(gpointer key, gpointer value, gpointer user_data)
Set XML attribute based on hash table entry.
Definition: nvpair.c:736
void pcmk_free_nvpairs(GSList *nvpairs)
Free a list of name/value pairs.
Definition: nvpair.c:101
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:370
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:348
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:301
GSList * pcmk_prepend_nvpair(GSList *nvpairs, const char *name, const char *value)
Prepend a name/value pair to a list.
Definition: nvpair.c:90
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:514
int crm_element_value_int(const xmlNode *data, const char *name, int *dest)
Retrieve the integer value of an XML attribute.
Definition: nvpair.c:482
void hash2smartfield(gpointer key, gpointer value, gpointer user_data)
Safely add hash table entry to XML as attribute or name-value pair.
Definition: nvpair.c:694
void hash2nvpair(gpointer key, gpointer value, gpointer user_data)
Add XML nvpair element based on hash table entry.
Definition: nvpair.c:834
GHashTable * xml2list(const xmlNode *parent)
Retrieve XML attributes as a hash table.
Definition: nvpair.c:859
int crm_element_value_ms(const xmlNode *data, const char *name, guint *dest)
Retrieve the millisecond value of an XML attribute.
Definition: nvpair.c:539
char * crm_element_value_copy(const xmlNode *data, const char *name)
Retrieve a copy of the value of an XML attribute.
Definition: nvpair.c:674
const char * crm_element_value(const xmlNode *data, const char *name)
Retrieve the value of an XML attribute.
Definition: nvpair.c:446
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:596
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:567
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:422
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:398
void hash2metafield(gpointer key, gpointer value, gpointer user_data)
Set XML attribute based on hash table entry, as meta-attribute name.
Definition: nvpair.c:764
void pcmk_nvpairs2xml_attrs(GSList *list, xmlNode *xml)
Add XML attributes based on a list of name/value pairs.
Definition: nvpair.c:200
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:799
const char * parent
Definition: cib.c:27
const char * crm_meta_value(GHashTable *hash, const char *field)
Get the value of a meta-attribute.
Definition: nvpair.c:987
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:160
char * crm_meta_name(const char *field)
Get the environment variable equivalent of a meta-attribute name.
Definition: nvpair.c:959