pacemaker 2.1.4-dc6eb4362e
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
31xmlNode *find_entity(xmlNode *parent, const char *node_name, const char *id);
32
34gboolean apply_xml_diff(xmlNode *old_xml, xmlNode *diff, xmlNode **new_xml);
35
37static inline const char *
38crm_xml_add_boolean(xmlNode *node, const char *name, gboolean value)
39{
40 return crm_xml_add(node, name, (value? "true" : "false"));
41}
42
43#ifdef __cplusplus
44}
45#endif
46
47#endif // PCMK__CRM_COMMON_XML_COMPAT__H
const char * parent
Definition: cib.c:25
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:323
Wrappers for and extensions to libxml2.
gboolean apply_xml_diff(xmlNode *old_xml, xmlNode *diff, xmlNode **new_xml)
Definition: patchset.c:1651
xmlNode * find_entity(xmlNode *parent, const char *node_name, const char *id)
Definition: xml.c:2988