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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
|
/*****************************************************************
|
| Neptune - Xml Support
|
| Copyright (c) 2002-2008, Axiomatic Systems, LLC.
| All rights reserved.
|
| Redistribution and use in source and binary forms, with or without
| modification, are permitted provided that the following conditions are met:
| * Redistributions of source code must retain the above copyright
| notice, this list of conditions and the following disclaimer.
| * Redistributions in binary form must reproduce the above copyright
| notice, this list of conditions and the following disclaimer in the
| documentation and/or other materials provided with the distribution.
| * Neither the name of Axiomatic Systems nor the
| names of its contributors may be used to endorse or promote products
| derived from this software without specific prior written permission.
|
| THIS SOFTWARE IS PROVIDED BY AXIOMATIC SYSTEMS ''AS IS'' AND ANY
| EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
| WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
| DISCLAIMED. IN NO EVENT SHALL AXIOMATIC SYSTEMS BE LIABLE FOR ANY
| DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
| (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
| LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
| ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
| SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
****************************************************************/
#ifndef _NPT_XML_H_
#define _NPT_XML_H_
/*----------------------------------------------------------------------
| includes
+---------------------------------------------------------------------*/
#include "NptTypes.h"
#include "NptList.h"
#include "NptStrings.h"
#include "NptStreams.h"
/*----------------------------------------------------------------------
| constants
+---------------------------------------------------------------------*/
const int NPT_ERROR_XML_INVALID_NESTING = NPT_ERROR_BASE_XML - 0;
const int NPT_ERROR_XML_TAG_MISMATCH = NPT_ERROR_BASE_XML - 1;
const int NPT_ERROR_XML_NO_ROOT = NPT_ERROR_BASE_XML - 2;
const int NPT_ERROR_XML_MULTIPLE_ROOTS = NPT_ERROR_BASE_XML - 3;
#define NPT_XML_ANY_NAMESPACE "*"
#define NPT_XML_NO_NAMESPACE NULL
/*----------------------------------------------------------------------
| forward declarations
+---------------------------------------------------------------------*/
class NPT_XmlProcessor;
/*----------------------------------------------------------------------
| NPT_XmlAttribute
+---------------------------------------------------------------------*/
class NPT_XmlAttribute
{
public:
// methods
NPT_XmlAttribute(const char* name, const char* value);
NPT_XmlAttribute(const char* prefix, const char* name, const char* value) :
m_Prefix(prefix), m_Name(name), m_Value(value) {}
const NPT_String& GetPrefix() const { return m_Prefix; }
const NPT_String& GetName() const { return m_Name; }
const NPT_String& GetValue() const { return m_Value; }
void SetValue(const char* value) { m_Value = value; }
private:
// members
NPT_String m_Prefix;
NPT_String m_Name;
NPT_String m_Value;
NPT_XmlAttribute(const NPT_XmlAttribute& attribute) :
m_Prefix(attribute.m_Prefix),
m_Name(attribute.m_Name),
m_Value(attribute.m_Value) {}
NPT_XmlAttribute& operator=(const NPT_XmlAttribute& a);
// friends
friend class NPT_XmlAttributeFinder;
friend class NPT_XmlAttributeFinderWithPrefix;
};
/*----------------------------------------------------------------------
| NPT_XmlNamespaceMap
+---------------------------------------------------------------------*/
class NPT_XmlNamespaceMap
{
public:
// destructor
~NPT_XmlNamespaceMap();
// methods
NPT_Result SetNamespaceUri(const char* prefix, const char* uri);
const NPT_String* GetNamespaceUri(const char* prefix);
const NPT_String* GetNamespacePrefix(const char* uri);
private:
// types
class Entry {
public:
// constructor
Entry(const char* prefix, const char* uri) :
m_Prefix(prefix), m_Uri(uri) {}
// members
NPT_String m_Prefix;
NPT_String m_Uri;
};
// members
NPT_List<Entry*> m_Entries;
// friends
friend class NPT_XmlWriter;
friend class NPT_XmlNodeWriter;
friend class NPT_XmlNodeCanonicalWriter;
};
/*----------------------------------------------------------------------
| NPT_XmlNode
+---------------------------------------------------------------------*/
class NPT_XmlElementNode;
class NPT_XmlTextNode;
class NPT_XmlNode
{
public:
// types
typedef enum {
DOCUMENT,
ELEMENT,
TEXT
} Type;
// methods
NPT_XmlNode(Type type) : m_Type(type), m_Parent(NULL) {}
virtual ~NPT_XmlNode() {}
Type GetType() const { return m_Type; }
NPT_XmlNode* GetParent() const { return m_Parent; }
// type casting
virtual NPT_XmlElementNode* AsElementNode() { return NULL; }
virtual const NPT_XmlElementNode* AsElementNode() const { return NULL; }
virtual NPT_XmlTextNode* AsTextNode() { return NULL; }
virtual const NPT_XmlTextNode* AsTextNode() const { return NULL; }
protected:
// methods
virtual void SetParent(NPT_XmlNode* parent) { m_Parent = parent; }
// members
Type m_Type;
NPT_XmlNode* m_Parent;
// friends
friend class NPT_XmlNodeFinder;
friend class NPT_XmlSerializer;
friend class NPT_XmlWriter;
friend class NPT_XmlElementNode; // to allow access to SetParent()
};
/*----------------------------------------------------------------------
| NPT_XmlElementNode
+---------------------------------------------------------------------*/
class NPT_XmlElementNode : public NPT_XmlNode
{
public:
// methods
NPT_XmlElementNode(const char* tag);
NPT_XmlElementNode(const char* prefix, const char* tag);
virtual ~NPT_XmlElementNode();
NPT_List<NPT_XmlNode*>& GetChildren() { return m_Children; }
const NPT_List<NPT_XmlNode*>&
GetChildren() const { return m_Children; }
NPT_XmlElementNode* GetChild(const char* tag,
const char* namespc = NPT_XML_NO_NAMESPACE,
NPT_Ordinal n=0) const;
NPT_Result AddChild(NPT_XmlNode* child);
NPT_Result SetAttribute(const char* prefix,
const char* name,
const char* value);
NPT_Result SetAttribute(const char* name,
const char* value);
NPT_Result AddText(const char* text);
NPT_List<NPT_XmlAttribute*>&
GetAttributes() { return m_Attributes; }
const NPT_List<NPT_XmlAttribute*>&
GetAttributes() const { return m_Attributes; }
const NPT_String* GetAttribute(const char* name,
const char* namespc = NPT_XML_NO_NAMESPACE) const;
const NPT_String& GetPrefix() const { return m_Prefix; }
const NPT_String& GetTag() const { return m_Tag; }
const NPT_String* GetText(NPT_Ordinal n=0) const;
// bring all the namespace definitions used in this element of one of its descendants
// into the namespace map of this element so that it may be serialized as a
// standalone element without any prefixes with undefined namespace uris
NPT_Result MakeStandalone();
// namespace methods
const NPT_String* GetNamespace() const;
NPT_Result SetNamespaceUri(const char* prefix, const char* uri);
const NPT_String* GetNamespaceUri(const char* prefix) const;
const NPT_String* GetNamespacePrefix(const char* uri) const;
// type casting
NPT_XmlElementNode* AsElementNode() { return this; }
const NPT_XmlElementNode* AsElementNode() const { return this; }
protected:
// methods
void SetParent(NPT_XmlNode* parent);
void SetNamespaceParent(NPT_XmlElementNode* parent);
void RelinkNamespaceMaps();
NPT_Result AddAttribute(const char* name, const char* value);
// members
NPT_String m_Prefix;
NPT_String m_Tag;
NPT_List<NPT_XmlNode*> m_Children;
NPT_List<NPT_XmlAttribute*> m_Attributes;
NPT_XmlNamespaceMap* m_NamespaceMap;
NPT_XmlElementNode* m_NamespaceParent;
// friends
friend class NPT_XmlTagFinder;
friend class NPT_XmlSerializer;
friend class NPT_XmlWriter;
friend class NPT_XmlNodeWriter;
friend class NPT_XmlNodeCanonicalWriter;
friend class NPT_XmlParser;
friend class NPT_XmlProcessor;
friend class NPT_XmlNamespaceCollapser;
};
/*----------------------------------------------------------------------
| NPT_XmlTextNode
+---------------------------------------------------------------------*/
class NPT_XmlTextNode : public NPT_XmlNode
{
public:
// types
typedef enum {
CHARACTER_DATA,
IGNORABLE_WHITESPACE,
CDATA_SECTION,
ENTITY_REFERENCE,
COMMENT
} TokenType;
// constructor
NPT_XmlTextNode(TokenType token_type, const char* text);
// methods
const NPT_String& GetString() const { return m_Text; }
// type casting
NPT_XmlTextNode* AsTextNode() { return this; }
const NPT_XmlTextNode* AsTextNode() const { return this; }
private:
// members
// TokenType m_TokenType;
NPT_String m_Text;
};
/*----------------------------------------------------------------------
| NPT_XmlParser
+---------------------------------------------------------------------*/
class NPT_XmlParser
{
public:
// methods
NPT_XmlParser(bool keep_whitespace = true);
virtual ~NPT_XmlParser();
virtual NPT_Result Parse(const char* xml,
NPT_XmlNode*& tree,
bool incremental=false);
virtual NPT_Result Parse(const char* xml,
NPT_Size size,
NPT_XmlNode*& tree,
bool incremental=false);
virtual NPT_Result Parse(NPT_InputStream& stream,
NPT_XmlNode*& tree,
bool incremental=false);
virtual NPT_Result Parse(NPT_InputStream& stream,
NPT_Size& size,
NPT_XmlNode*& tree,
bool incremental=false);
protected:
// NPT_XmlHandler methods
NPT_Result OnStartElement(const char* name);
NPT_Result OnElementAttribute(const char* name, const char* value);
NPT_Result OnEndElement(const char* name);
NPT_Result OnCharacterData(const char* data, NPT_Size size);
void RemoveIgnorableWhitespace();
// members
NPT_XmlProcessor* m_Processor;
NPT_XmlElementNode* m_Root;
NPT_XmlElementNode* m_CurrentElement;
bool m_KeepWhitespace;
private:
void Reset();
// friends
friend class NPT_XmlProcessor;
};
/*----------------------------------------------------------------------
| NPT_XmlSerializer
+---------------------------------------------------------------------*/
class NPT_XmlSerializer
{
public:
// methods
NPT_XmlSerializer(NPT_OutputStream* output,
NPT_Cardinal indentation = 0,
bool shrink_empty_elements = true,
bool add_xml_decl = false);
virtual ~NPT_XmlSerializer();
virtual NPT_Result StartDocument();
virtual NPT_Result EndDocument();
virtual NPT_Result StartElement(const char* prefix, const char* name);
virtual NPT_Result EndElement(const char* prefix, const char* name);
virtual NPT_Result Attribute(const char* prefix, const char* name, const char* value);
virtual NPT_Result Text(const char* text);
virtual NPT_Result CdataSection(const char* data);
virtual NPT_Result Comment(const char* comment);
protected:
// methods
void EscapeChar(unsigned char c, char* text);
NPT_Result ProcessPending();
NPT_Result OutputEscapedString(const char* text, bool attribute);
void OutputIndentation(bool start);
// members
NPT_OutputStream* m_Output;
bool m_ElementPending;
NPT_Cardinal m_Depth;
NPT_Cardinal m_Indentation;
NPT_String m_IndentationPrefix;
bool m_ElementHasText;
bool m_ShrinkEmptyElements;
bool m_AddXmlDecl;
};
/*----------------------------------------------------------------------
| NPT_XmlWriter
+---------------------------------------------------------------------*/
class NPT_XmlWriter
{
public:
// constructor
explicit NPT_XmlWriter(NPT_Cardinal indentation = 0) : m_Indentation(indentation) {}
// methods
NPT_Result Serialize(NPT_XmlNode& node,
NPT_OutputStream& stream,
bool add_xml_decl = false);
private:
// members
NPT_Cardinal m_Indentation;
};
/*----------------------------------------------------------------------
| NPT_XmlCanonicalizer
+---------------------------------------------------------------------*/
class NPT_XmlCanonicalizer
{
public:
// methods
NPT_Result Serialize(NPT_XmlNode& node,
NPT_OutputStream& stream,
bool add_xml_decl = false);
};
#endif // _NPT_XML_H_
|