pacemaker 2.1.6-6fdc9deea29
Scalable High-Availability cluster resource manager
Loading...
Searching...
No Matches
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
18extern "C" {
19#endif
20
31#define XML_PARANOIA_CHECKS 0
32
34int add_node_nocopy(xmlNode * parent, const char *name, xmlNode * child);
35
37xmlNode *find_entity(xmlNode *parent, const char *node_name, const char *id);
38
40char *xml_get_path(const xmlNode *xml);
41
43void xml_log_changes(uint8_t level, const char *function, const xmlNode *xml);
44
46void xml_log_patchset(uint8_t level, const char *function, const xmlNode *xml);
47
49gboolean apply_xml_diff(xmlNode *old_xml, xmlNode *diff, xmlNode **new_xml);
50
52void crm_destroy_xml(gpointer data);
53
55static inline const char *
56crm_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
const char * parent
Definition cib.c:25
const char * name
Definition cib.c:24
char data[0]
Definition cpg.c:10
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
Wrappers for and extensions to libxml2.
int add_node_nocopy(xmlNode *parent, const char *name, xmlNode *child)
Definition xml.c:2745
void xml_log_changes(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
gboolean apply_xml_diff(xmlNode *old_xml, xmlNode *diff, xmlNode **new_xml)
Definition patchset.c:1429
void crm_destroy_xml(gpointer data)
Definition xml.c:2739
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)