pacemaker  2.1.6-802a72226b
Scalable High-Availability cluster resource manager
xml_compat.h
Go to the documentation of this file.
1 /*
2  * Copyright 2004-2023 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_XML_COMPAT__H
11 # define PCMK__CRM_COMMON_XML_COMPAT__H
12 
13 #include <glib.h> // gboolean
14 #include <libxml/tree.h> // xmlNode
15 #include <crm/common/xml.h> // crm_xml_add()
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
30 #define XML_PARANOIA_CHECKS 0
32 
34 int add_node_nocopy(xmlNode * parent, const char *name, xmlNode * child);
35 
37 xmlNode *find_entity(xmlNode *parent, const char *node_name, const char *id);
38 
40 char *xml_get_path(const xmlNode *xml);
41 
43 void xml_log_changes(uint8_t level, const char *function, const xmlNode *xml);
44 
46 void xml_log_patchset(uint8_t level, const char *function, const xmlNode *xml);
47 
49 gboolean apply_xml_diff(xmlNode *old_xml, xmlNode *diff, xmlNode **new_xml);
50 
52 void crm_destroy_xml(gpointer data);
53 
55 static inline const char *
56 crm_xml_add_boolean(xmlNode *node, const char *name, gboolean value)
57 {
58  return crm_xml_add(node, name, (value? "true" : "false"));
59 }
60 
61 #ifdef __cplusplus
62 }
63 #endif
64 
65 #endif // PCMK__CRM_COMMON_XML_COMPAT__H
void xml_log_changes(uint8_t level, const char *function, const xmlNode *xml)
Definition: xml_display.c:527
char data[0]
Definition: cpg.c:55
const char * name
Definition: cib.c:24
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
void crm_destroy_xml(gpointer data)
Definition: xml.c:2739
Wrappers for and extensions to libxml2.
gboolean apply_xml_diff(xmlNode *old_xml, xmlNode *diff, xmlNode **new_xml)
Definition: patchset.c:1429
int add_node_nocopy(xmlNode *parent, const char *name, xmlNode *child)
Definition: xml.c:2745
xmlNode * find_entity(xmlNode *parent, const char *node_name, const char *id)
Definition: xml.c:2732
void xml_log_patchset(uint8_t level, const char *function, const xmlNode *xml)
char * xml_get_path(const xmlNode *xml)
Get an XPath string that matches an XML element as closely as possible.
Definition: xpath.c:361
const char * parent
Definition: cib.c:25