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
|
// ==============================================================
// This file is part of Glest Shared Library (www.glest.org)
//
// Copyright (C) 2001-2008 Martio Figueroa
//
// You can redistribute this code and/or modify it under
// the terms of the GNU General Public License as published
// by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version
// ==============================================================
#ifndef _SHARED_XML_XMLPARSER_H_
#define _SHARED_XML_XMLPARSER_H_
#include <string>
#include <vector>
#include <xercesc/util/XercesDefs.hpp>
using std::string;
using std::vector;
namespace XERCES_CPP_NAMESPACE{
class DOMImplementation;
class DOMDocument;
class DOMNode;
class DOMElement;
}
namespace Shared{ namespace Xml{
const int strSize= 256;
class XmlIo;
class XmlTree;
class XmlNode;
class XmlAttribute;
// =====================================================
// class XmlIo
//
/// Wrapper for Xerces C++
// =====================================================
class XmlIo{
private:
static bool initialized;
XERCES_CPP_NAMESPACE::DOMImplementation *implementation;
private:
XmlIo();
public:
static XmlIo &getInstance();
~XmlIo();
XmlNode *load(const string &path);
void save(const string &path, const XmlNode *node);
};
// =====================================================
// class XmlTree
// =====================================================
class XmlTree{
private:
XmlNode *rootNode;
private:
XmlTree(XmlTree&);
void operator =(XmlTree&);
public:
XmlTree();
~XmlTree();
void init(const string &name);
void load(const string &path);
void save(const string &path);
XmlNode *getRootNode() const {return rootNode;}
};
// =====================================================
// class XmlNode
// =====================================================
class XmlNode{
private:
string name;
vector<XmlNode*> children;
vector<XmlAttribute*> attributes;
private:
XmlNode(XmlNode&);
void operator =(XmlNode&);
public:
XmlNode(XERCES_CPP_NAMESPACE::DOMNode *node);
XmlNode(const string &name);
~XmlNode();
const string &getName() const {return name;}
int getChildCount() const {return children.size();}
int getAttributeCount() const {return attributes.size();}
XmlAttribute *getAttribute(int i) const;
XmlAttribute *getAttribute(const string &name) const;
XmlNode *getChild(int i) const;
XmlNode *getChild(const string &childName, int childIndex=0) const;
XmlNode *getParent() const;
XmlNode *addChild(const string &name);
XmlAttribute *addAttribute(const string &name, const string &value);
XERCES_CPP_NAMESPACE::DOMElement *buildElement(XERCES_CPP_NAMESPACE::DOMDocument *document) const;
private:
string getTreeString() const;
};
// =====================================================
// class XmlAttribute
// =====================================================
class XmlAttribute{
private:
string value;
string name;
private:
XmlAttribute(XmlAttribute&);
void operator =(XmlAttribute&);
public:
XmlAttribute(XERCES_CPP_NAMESPACE::DOMNode *attribute);
XmlAttribute(const string &name, const string &value);
public:
const string &getName() const {return name;}
const string &getValue() const {return value;}
bool getBoolValue() const;
int getIntValue() const;
int getIntValue(int min, int max) const;
float getFloatValue() const;
float getFloatValue(float min, float max) const;
const string &getRestrictedValue() const;
};
}}//end namespace
#endif
|