pacemaker 2.1.5-a3f44794f94
Scalable High-Availability cluster resource manager
xml_compat.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_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
34xmlNode *find_entity(xmlNode *parent, const char *node_name, const char *id);
35
37char *xml_get_path(const xmlNode *xml);
38
40gboolean apply_xml_diff(xmlNode *old_xml, xmlNode *diff, xmlNode **new_xml);
41
43void crm_destroy_xml(gpointer data);
44
46static inline const char *
47crm_xml_add_boolean(xmlNode *node, const char *name, gboolean value)
48{
49 return crm_xml_add(node, name, (value? "true" : "false"));
50}
51
52#ifdef __cplusplus
53}
54#endif
55
56#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:323
Wrappers for and extensions to libxml2.
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:1643
void crm_destroy_xml(gpointer data)
Definition: xml.c:3147
xmlNode * find_entity(xmlNode *parent, const char *node_name, const char *id)
Definition: xml.c:3140