1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
6 * Created on: Apr 17, 2014
10 #ifndef CONFIG_COMMON_H_
11 #define CONFIG_COMMON_H_
13 #include "Config_def.h"
19 //>> Forward declaration of xmlNodePtr.
20 typedef struct _xmlNode xmlNode;
21 typedef xmlNode *xmlNodePtr;
25 //>> Forward declaration of xmlDocPtr.
26 typedef struct _xmlDoc xmlDoc;
27 typedef xmlDoc *xmlDocPtr;
32 * Returns true if theNode is XML ELEMENT node (not a "text" node ie).
34 CONFIG_EXPORT bool isElementNode(xmlNodePtr theNode);
37 * Returns true if theNode is XML node with a given name.
39 * Please note that this function should be called with NULL last argument.
40 * In example: isNode(aNode, "type1", ["type2", ...], NULL);
41 * ", NULL" is required to use unlimited number of arguments.
42 * TODO(sbh): find a way to simplify calling this method.
44 CONFIG_EXPORT bool isNode(xmlNodePtr theNode, const char* theNodeName, ...);
46 //#define isNode(p) _isNode(p, NULL)
49 * Checks if the given node is attribute node.
50 * Attribute node represents a widget, that is able to store/restore
51 * values from the model. Actually it's every widget, displayed
52 * in the XGUI_PropertyPanel, except paged containers (toolbox, switch/case).
54 CONFIG_EXPORT bool isAttributeNode(xmlNodePtr theNode);
57 * Checks if the given node is widget node.
58 * Widget nodes are attribute node + paged containers nodes.
60 CONFIG_EXPORT bool isWidgetNode(xmlNodePtr theNode);
62 CONFIG_EXPORT bool isCaseNode(xmlNodePtr theNode);
65 * Every xml node has child. Even if there is no explicit
66 * child nodes libxml gives the "Text node" as child.
68 * This method checks if real child nodes exist in the
71 CONFIG_EXPORT bool hasChild(xmlNodePtr theNode);
75 * Checks if the given node has a valid parent.
77 CONFIG_EXPORT bool hasParent(xmlNodePtr theNode);
80 * Checks if the given node has a valid parent with any of the given node names.
82 CONFIG_EXPORT bool hasParent(xmlNodePtr theNode, const char* theNodeName, ...);
85 * Checks if the given node has any valid parent in hierarchy with any of the given node names.
87 CONFIG_EXPORT bool hasParentRecursive(xmlNodePtr theNode, const char* theNodeName, ...);
91 * Returns named property for an id node as std::string and the parameters of the node.
93 CONFIG_EXPORT bool getParametersInfo(xmlNodePtr theNode, std::string& outPropertyId,
94 std::list<std::string>& outValidatorParameters);
97 \brief Convert the given parameter to the platform-specific library name.
99 The function appends platform-specific prefix (lib) and suffix (.dll/.so)
100 to the library file name.
101 For example, if \a str = "mylib", "libmylib.so" is returned for Linux and
102 mylib.dll for Windows.
104 \param str short library name
105 \return full library name
107 CONFIG_EXPORT std::string library(const std::string& theLibName);
110 * Returns named property for a given node as std::string.
112 CONFIG_EXPORT std::string getProperty(xmlNodePtr theNode, const char* thePropName);
115 * Returns normalized (lower case) named property for a given node as std::string.
117 std::string getNormalizedProperty(xmlNodePtr theNode, const char* thePropName);
120 * Checks if the given XML node has the given attribute,
121 * if yes - returns it's bool value, if no, or if the value can not
122 * be converted to bool - returns theDefault value.
123 * \param theAttributeName attribute to check
124 * \param theDefault default value on bad data
125 * \return the boolean result
127 CONFIG_EXPORT bool getBooleanAttribute(xmlNodePtr theNode,
128 const char* theAttributeName,
132 * Returns normalized (lower case) version of string.
133 * Should be used for case insensitive string matching.
135 CONFIG_EXPORT std::string normalize(const char* theString);
137 * Returns normalized (lower case) version of string.
138 * Should be used for case insensitive string matching.
140 CONFIG_EXPORT std::string normalize(const std::string& theString);