| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: xml.h |
| 3 | // Purpose: wxXmlDocument - XML parser & data holder class |
| 4 | // Author: Vaclav Slavik |
| 5 | // Created: 2000/03/05 |
| 6 | // RCS-ID: $Id$ |
| 7 | // Copyright: (c) 2000 Vaclav Slavik |
| 8 | // Licence: wxWindows licence |
| 9 | ///////////////////////////////////////////////////////////////////////////// |
| 10 | |
| 11 | |
| 12 | #ifndef _WX_XML_H_ |
| 13 | #define _WX_XML_H_ |
| 14 | |
| 15 | #include "wx/defs.h" |
| 16 | |
| 17 | #if wxUSE_XML |
| 18 | |
| 19 | #include "wx/string.h" |
| 20 | #include "wx/object.h" |
| 21 | #include "wx/list.h" |
| 22 | |
| 23 | #ifdef WXMAKINGDLL_XML |
| 24 | #define WXDLLIMPEXP_XML WXEXPORT |
| 25 | #elif defined(WXUSINGDLL) |
| 26 | #define WXDLLIMPEXP_XML WXIMPORT |
| 27 | #else // not making nor using DLL |
| 28 | #define WXDLLIMPEXP_XML |
| 29 | #endif |
| 30 | |
| 31 | class WXDLLIMPEXP_FWD_XML wxXmlNode; |
| 32 | class WXDLLIMPEXP_FWD_XML wxXmlAttribute; |
| 33 | class WXDLLIMPEXP_FWD_XML wxXmlDocument; |
| 34 | class WXDLLIMPEXP_FWD_XML wxXmlIOHandler; |
| 35 | class WXDLLIMPEXP_FWD_BASE wxInputStream; |
| 36 | class WXDLLIMPEXP_FWD_BASE wxOutputStream; |
| 37 | |
| 38 | |
| 39 | // Represents XML node type. |
| 40 | enum wxXmlNodeType |
| 41 | { |
| 42 | // note: values are synchronized with xmlElementType from libxml |
| 43 | wxXML_ELEMENT_NODE = 1, |
| 44 | wxXML_ATTRIBUTE_NODE = 2, |
| 45 | wxXML_TEXT_NODE = 3, |
| 46 | wxXML_CDATA_SECTION_NODE = 4, |
| 47 | wxXML_ENTITY_REF_NODE = 5, |
| 48 | wxXML_ENTITY_NODE = 6, |
| 49 | wxXML_PI_NODE = 7, |
| 50 | wxXML_COMMENT_NODE = 8, |
| 51 | wxXML_DOCUMENT_NODE = 9, |
| 52 | wxXML_DOCUMENT_TYPE_NODE = 10, |
| 53 | wxXML_DOCUMENT_FRAG_NODE = 11, |
| 54 | wxXML_NOTATION_NODE = 12, |
| 55 | wxXML_HTML_DOCUMENT_NODE = 13 |
| 56 | }; |
| 57 | |
| 58 | |
| 59 | // Represents node property(ies). |
| 60 | // Example: in <img src="hello.gif" id="3"/> "src" is property with value |
| 61 | // "hello.gif" and "id" is prop. with value "3". |
| 62 | |
| 63 | class WXDLLIMPEXP_XML wxXmlAttribute |
| 64 | { |
| 65 | public: |
| 66 | wxXmlAttribute() : m_next(NULL) {} |
| 67 | wxXmlAttribute(const wxString& name, const wxString& value, |
| 68 | wxXmlAttribute *next = NULL) |
| 69 | : m_name(name), m_value(value), m_next(next) {} |
| 70 | virtual ~wxXmlAttribute() {} |
| 71 | |
| 72 | wxString GetName() const { return m_name; } |
| 73 | wxString GetValue() const { return m_value; } |
| 74 | wxXmlAttribute *GetNext() const { return m_next; } |
| 75 | |
| 76 | void SetName(const wxString& name) { m_name = name; } |
| 77 | void SetValue(const wxString& value) { m_value = value; } |
| 78 | void SetNext(wxXmlAttribute *next) { m_next = next; } |
| 79 | |
| 80 | private: |
| 81 | wxString m_name; |
| 82 | wxString m_value; |
| 83 | wxXmlAttribute *m_next; |
| 84 | }; |
| 85 | |
| 86 | #if WXWIN_COMPATIBILITY_2_8 |
| 87 | // NB: #define is used instead of typedef so that forward declarations |
| 88 | // continue to work |
| 89 | #define wxXmlProperty wxXmlAttribute |
| 90 | #endif |
| 91 | |
| 92 | |
| 93 | // Represents node in XML document. Node has name and may have content and |
| 94 | // attributes. Most common node types are wxXML_TEXT_NODE (name and attributes |
| 95 | // are irrelevant) and wxXML_ELEMENT_NODE (e.g. in <title>hi</title> there is |
| 96 | // element with name="title", irrelevant content and one child (wxXML_TEXT_NODE |
| 97 | // with content="hi"). |
| 98 | // |
| 99 | // If wxUSE_UNICODE is 0, all strings are encoded in the encoding given to Load |
| 100 | // (default is UTF-8). |
| 101 | |
| 102 | class WXDLLIMPEXP_XML wxXmlNode |
| 103 | { |
| 104 | public: |
| 105 | wxXmlNode() |
| 106 | : m_attrs(NULL), m_parent(NULL), m_children(NULL), m_next(NULL), |
| 107 | m_lineNo(-1) |
| 108 | { |
| 109 | } |
| 110 | |
| 111 | wxXmlNode(wxXmlNode *parent, wxXmlNodeType type, |
| 112 | const wxString& name, const wxString& content = wxEmptyString, |
| 113 | wxXmlAttribute *attrs = NULL, wxXmlNode *next = NULL, |
| 114 | int lineNo = -1); |
| 115 | |
| 116 | virtual ~wxXmlNode(); |
| 117 | |
| 118 | // copy ctor & operator=. Note that this does NOT copy syblings |
| 119 | // and parent pointer, i.e. m_parent and m_next will be NULL |
| 120 | // after using copy ctor and are never unmodified by operator=. |
| 121 | // On the other hand, it DOES copy children and attributes. |
| 122 | wxXmlNode(const wxXmlNode& node); |
| 123 | wxXmlNode& operator=(const wxXmlNode& node); |
| 124 | |
| 125 | // user-friendly creation: |
| 126 | wxXmlNode(wxXmlNodeType type, const wxString& name, |
| 127 | const wxString& content = wxEmptyString, |
| 128 | int lineNo = -1); |
| 129 | virtual void AddChild(wxXmlNode *child); |
| 130 | virtual bool InsertChild(wxXmlNode *child, wxXmlNode *followingNode); |
| 131 | virtual bool InsertChildAfter(wxXmlNode *child, wxXmlNode *precedingNode); |
| 132 | virtual bool RemoveChild(wxXmlNode *child); |
| 133 | virtual void AddAttribute(const wxString& name, const wxString& value); |
| 134 | virtual bool DeleteAttribute(const wxString& name); |
| 135 | |
| 136 | // access methods: |
| 137 | wxXmlNodeType GetType() const { return m_type; } |
| 138 | const wxString& GetName() const { return m_name; } |
| 139 | const wxString& GetContent() const { return m_content; } |
| 140 | |
| 141 | bool IsWhitespaceOnly() const; |
| 142 | int GetDepth(wxXmlNode *grandparent = NULL) const; |
| 143 | |
| 144 | // Gets node content from wxXML_ENTITY_NODE |
| 145 | // The problem is, <tag>content<tag> is represented as |
| 146 | // wxXML_ENTITY_NODE name="tag", content="" |
| 147 | // |-- wxXML_TEXT_NODE or |
| 148 | // wxXML_CDATA_SECTION_NODE name="" content="content" |
| 149 | wxString GetNodeContent() const; |
| 150 | |
| 151 | wxXmlNode *GetParent() const { return m_parent; } |
| 152 | wxXmlNode *GetNext() const { return m_next; } |
| 153 | wxXmlNode *GetChildren() const { return m_children; } |
| 154 | |
| 155 | wxXmlAttribute *GetAttributes() const { return m_attrs; } |
| 156 | bool GetAttribute(const wxString& attrName, wxString *value) const; |
| 157 | wxString GetAttribute(const wxString& attrName, |
| 158 | const wxString& defaultVal = wxEmptyString) const; |
| 159 | bool HasAttribute(const wxString& attrName) const; |
| 160 | |
| 161 | int GetLineNumber() const { return m_lineNo; } |
| 162 | |
| 163 | void SetType(wxXmlNodeType type) { m_type = type; } |
| 164 | void SetName(const wxString& name) { m_name = name; } |
| 165 | void SetContent(const wxString& con) { m_content = con; } |
| 166 | |
| 167 | void SetParent(wxXmlNode *parent) { m_parent = parent; } |
| 168 | void SetNext(wxXmlNode *next) { m_next = next; } |
| 169 | void SetChildren(wxXmlNode *child) { m_children = child; } |
| 170 | |
| 171 | void SetAttributes(wxXmlAttribute *attr) { m_attrs = attr; } |
| 172 | virtual void AddAttribute(wxXmlAttribute *attr); |
| 173 | |
| 174 | #if WXWIN_COMPATIBILITY_2_8 |
| 175 | wxDEPRECATED( inline wxXmlAttribute *GetProperties() const ); |
| 176 | wxDEPRECATED( inline bool GetPropVal(const wxString& propName, |
| 177 | wxString *value) const ); |
| 178 | wxDEPRECATED( inline wxString GetPropVal(const wxString& propName, |
| 179 | const wxString& defaultVal) const ); |
| 180 | wxDEPRECATED( inline bool HasProp(const wxString& propName) const ); |
| 181 | |
| 182 | wxDEPRECATED( inline void SetProperties(wxXmlAttribute *prop) ); |
| 183 | #endif // WXWIN_COMPATIBILITY_2_8 |
| 184 | |
| 185 | // The following three functions are backward compatibility, but because |
| 186 | // they were virtual, we must make it possible to override them. This |
| 187 | // is done by calling e.g. AddProperty() from AddAttribute(), so we have |
| 188 | // to keep AddProperty() even if 2.8 compatibility is off. To prevent |
| 189 | // old code from compiling in that case, we make them private and |
| 190 | // non-virtual. (This can be removed when WXWIN_COMPATIBILITY_2_8 is |
| 191 | // removed, we'll have just *Attribute versions then.) |
| 192 | #if WXWIN_COMPATIBILITY_2_8 |
| 193 | wxDEPRECATED_BUT_USED_INTERNALLY( |
| 194 | virtual void AddProperty(const wxString& name, const wxString& value) ); |
| 195 | wxDEPRECATED_BUT_USED_INTERNALLY( |
| 196 | virtual bool DeleteProperty(const wxString& name) ); |
| 197 | wxDEPRECATED_BUT_USED_INTERNALLY( |
| 198 | virtual void AddProperty(wxXmlAttribute *attr) ); |
| 199 | #else |
| 200 | private: |
| 201 | void AddProperty(const wxString& name, const wxString& value); |
| 202 | bool DeleteProperty(const wxString& name); |
| 203 | void AddProperty(wxXmlAttribute *attr); |
| 204 | #endif // WXWIN_COMPATIBILITY_2_8/!WXWIN_COMPATIBILITY_2_8 |
| 205 | |
| 206 | private: |
| 207 | wxXmlNodeType m_type; |
| 208 | wxString m_name; |
| 209 | wxString m_content; |
| 210 | wxXmlAttribute *m_attrs; |
| 211 | wxXmlNode *m_parent, *m_children, *m_next; |
| 212 | int m_lineNo; // line number in original file, or -1 |
| 213 | |
| 214 | void DoCopy(const wxXmlNode& node); |
| 215 | }; |
| 216 | |
| 217 | #if WXWIN_COMPATIBILITY_2_8 |
| 218 | inline wxXmlAttribute *wxXmlNode::GetProperties() const |
| 219 | { return GetAttributes(); } |
| 220 | inline bool wxXmlNode::GetPropVal(const wxString& propName, |
| 221 | wxString *value) const |
| 222 | { return GetAttribute(propName, value); } |
| 223 | inline wxString wxXmlNode::GetPropVal(const wxString& propName, |
| 224 | const wxString& defaultVal) const |
| 225 | { return GetAttribute(propName, defaultVal); } |
| 226 | inline bool wxXmlNode::HasProp(const wxString& propName) const |
| 227 | { return HasAttribute(propName); } |
| 228 | inline void wxXmlNode::SetProperties(wxXmlAttribute *prop) |
| 229 | { SetAttributes(prop); } |
| 230 | #endif // WXWIN_COMPATIBILITY_2_8 |
| 231 | |
| 232 | |
| 233 | |
| 234 | // special indentation value for wxXmlDocument::Save |
| 235 | #define wxXML_NO_INDENTATION (-1) |
| 236 | |
| 237 | // flags for wxXmlDocument::Load |
| 238 | enum wxXmlDocumentLoadFlag |
| 239 | { |
| 240 | wxXMLDOC_NONE = 0, |
| 241 | wxXMLDOC_KEEP_WHITESPACE_NODES = 1 |
| 242 | }; |
| 243 | |
| 244 | |
| 245 | // This class holds XML data/document as parsed by XML parser. |
| 246 | |
| 247 | class WXDLLIMPEXP_XML wxXmlDocument : public wxObject |
| 248 | { |
| 249 | public: |
| 250 | wxXmlDocument(); |
| 251 | wxXmlDocument(const wxString& filename, |
| 252 | const wxString& encoding = wxT("UTF-8")); |
| 253 | wxXmlDocument(wxInputStream& stream, |
| 254 | const wxString& encoding = wxT("UTF-8")); |
| 255 | virtual ~wxXmlDocument() { wxDELETE(m_root); } |
| 256 | |
| 257 | wxXmlDocument(const wxXmlDocument& doc); |
| 258 | wxXmlDocument& operator=(const wxXmlDocument& doc); |
| 259 | |
| 260 | // Parses .xml file and loads data. Returns TRUE on success, FALSE |
| 261 | // otherwise. |
| 262 | virtual bool Load(const wxString& filename, |
| 263 | const wxString& encoding = wxT("UTF-8"), int flags = wxXMLDOC_NONE); |
| 264 | virtual bool Load(wxInputStream& stream, |
| 265 | const wxString& encoding = wxT("UTF-8"), int flags = wxXMLDOC_NONE); |
| 266 | |
| 267 | // Saves document as .xml file. |
| 268 | virtual bool Save(const wxString& filename, int indentstep = 1) const; |
| 269 | virtual bool Save(wxOutputStream& stream, int indentstep = 1) const; |
| 270 | |
| 271 | bool IsOk() const { return m_root != NULL; } |
| 272 | |
| 273 | // Returns root node of the document. |
| 274 | wxXmlNode *GetRoot() const { return m_root; } |
| 275 | |
| 276 | // Returns version of document (may be empty). |
| 277 | const wxString& GetVersion() const { return m_version; } |
| 278 | // Returns encoding of document (may be empty). |
| 279 | // Note: this is the encoding original file was saved in, *not* the |
| 280 | // encoding of in-memory representation! |
| 281 | const wxString& GetFileEncoding() const { return m_fileEncoding; } |
| 282 | |
| 283 | // Write-access methods: |
| 284 | wxXmlNode *DetachRoot() { wxXmlNode *old=m_root; m_root=NULL; return old; } |
| 285 | void SetRoot(wxXmlNode *node) { wxDELETE(m_root); m_root = node; } |
| 286 | void SetVersion(const wxString& version) { m_version = version; } |
| 287 | void SetFileEncoding(const wxString& encoding) { m_fileEncoding = encoding; } |
| 288 | |
| 289 | #if !wxUSE_UNICODE |
| 290 | // Returns encoding of in-memory representation of the document |
| 291 | // (same as passed to Load or ctor, defaults to UTF-8). |
| 292 | // NB: this is meaningless in Unicode build where data are stored as wchar_t* |
| 293 | wxString GetEncoding() const { return m_encoding; } |
| 294 | void SetEncoding(const wxString& enc) { m_encoding = enc; } |
| 295 | #endif |
| 296 | |
| 297 | private: |
| 298 | wxString m_version; |
| 299 | wxString m_fileEncoding; |
| 300 | #if !wxUSE_UNICODE |
| 301 | wxString m_encoding; |
| 302 | #endif |
| 303 | wxXmlNode *m_root; |
| 304 | |
| 305 | void DoCopy(const wxXmlDocument& doc); |
| 306 | |
| 307 | DECLARE_CLASS(wxXmlDocument) |
| 308 | }; |
| 309 | |
| 310 | #endif // wxUSE_XML |
| 311 | |
| 312 | #endif // _WX_XML_H_ |