/usr/include/openturns/XMLToolbox.hxx is in libopenturns-dev 0.15-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | // -*- C++ -*-
/**
* @file XMLToolbox.hxx
* @brief This file provides basic XML functionalities
*
* (C) Copyright 2005-2011 EDF-EADS-Phimeca
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @author: $LastChangedBy: dutka $
* @date: $LastChangedDate: 2008-10-17 14:26:02 +0200 (Fri, 17 Oct 2008) $
* Id: $Id: WrapperFile.cxx 974 2008-10-17 12:26:02Z dutka $
*/
#ifndef OPENTURNS_XMLTOOLBOX_HXX
#define OPENTURNS_XMLTOOLBOX_HXX
#include <cstdarg>
#include "OTprivate.hxx"
#include "OTconfig.hxx"
#include "XMLchar_traits.hxx"
#if defined HAVE_LIBXML2
#include <libxml/parser.h>
#define XML_SUPPORTED
#endif
namespace OpenTURNS
{
#if defined HAVE_LIBXML2
/**
* @class XMLDoc
*
* This class stores a pointer to an XML document and manages its life cycle
*/
class XMLDoc {
xmlDocPtr doc_;
public:
XMLDoc();
XMLDoc( const XMLDoc & other );
XMLDoc( const FileName & pathToFile );
XMLDoc(const char * buffer, int size);
~XMLDoc() throw();
XMLDoc & operator =( const XMLDoc & other );
operator xmlDocPtr();
operator const xmlDocPtr() const;
void save( const FileName & fileName ) const;
String __repr__() const;
Bool hasDTD() const;
Bool validate() const;
Bool validate( const String & name, const FileName & dtd ) const;
};
/**
* @class XML
*
* This is a compound class to gather general methods
*/
class XML {
public:
typedef xmlNodePtr Node;
typedef std::basic_string<xmlChar> xmlString;
/** Convert XML string to basic string */
static String ToString( const xmlString & st );
/** Returns true if node 'elt' is an XML text node */
static Bool IsText( const Node & elt );
/** Returns true if node 'elt' is an XML Element node */
static Bool IsElement( const Node & elt );
/** Returns true if node 'elt' is an XML element node named 'name' */
static Bool IsElement( const Node & elt, const String & name );
/** Returns true if node 'elt' has a attribute named 'name' */
static Bool ElementHasAttribute( const Node & elt, const String & name );
/** Returns the value of the attribute named 'name' hold by 'node' */
static String GetAttributeByName( const Node & node, const String & name );
/** Set the attribute of a node */
static void SetAttribute( const Node & node, const String & attribute, const String & value );
/** Returns the child node named 'name' of node 'parent' */
static Node FindElementByName( const Node & parent, const String & name );
/** Returns the brother node named 'name' of node 'node' */
static Node FindNextElementByName( const Node & node, const String & name );
/** Returns the content of 'node' */
static String GetNodeValue( const Node & node );
/** Returns the name of 'node' */
static String GetNodeName( const Node & node );
/** Returns the line number where 'node' appears */
static UnsignedLong GetNodeLineNumber( const Node & node );
/** Create a new node */
static Node NewNode( const String & name );
static Node NewNode( const String & name, const String & value );
static Node NewTextNode( const String & value );
/** Link a child node to its parent */
static void AddChild( const Node & parent, const Node & child );
/** Get/Set the root node of an XML file */
static Node GetRootNode( const XMLDoc & doc );
static void SetRootNode( const XMLDoc & doc, const Node & root );
/** Node tree traversal */
static Node GetFirstChild( const Node & node );
static Node GetNextNode( const Node & node );
/** Set the DTD of the document */
static void SetDTD( const XMLDoc & doc, const String & name, const String & path );
/** An error handler to write out messages to Log */
static void WarningHandler( void * ptr, const char * format, ...);
static void ErrorHandler( void * ptr, const char * format, ...);
protected:
static char * MakeMessage(const char *fmt, va_list args);
}; /* end class XML */
std::ostream & operator <<(std::ostream & os, const xmlNodePtr & node);
#endif /* HAVE_LIBXML2 */
} /* namespace OpenTURNS */
#endif /* OPENTURNS_XMLTOOLBOX_HXX */
|