]>
Commit | Line | Data |
---|---|---|
27b0c286 VS |
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 | |
65571936 | 8 | // Licence: wxWindows licence |
27b0c286 VS |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | ||
27b0c286 VS |
12 | #ifndef _WX_XML_H_ |
13 | #define _WX_XML_H_ | |
14 | ||
27b0c286 VS |
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 | ||
b5dbe15d | 31 | class WXDLLIMPEXP_FWD_XML wxXmlNode; |
288b6107 | 32 | class WXDLLIMPEXP_FWD_XML wxXmlAttribute; |
b5dbe15d VS |
33 | class WXDLLIMPEXP_FWD_XML wxXmlDocument; |
34 | class WXDLLIMPEXP_FWD_XML wxXmlIOHandler; | |
35 | class WXDLLIMPEXP_FWD_BASE wxInputStream; | |
36 | class WXDLLIMPEXP_FWD_BASE wxOutputStream; | |
27b0c286 VS |
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 | ||
288b6107 | 63 | class WXDLLIMPEXP_XML wxXmlAttribute |
27b0c286 VS |
64 | { |
65 | public: | |
288b6107 VS |
66 | wxXmlAttribute() : m_next(NULL) {} |
67 | wxXmlAttribute(const wxString& name, const wxString& value, | |
68 | wxXmlAttribute *next = NULL) | |
27b0c286 | 69 | : m_name(name), m_value(value), m_next(next) {} |
288b6107 | 70 | virtual ~wxXmlAttribute() {} |
27b0c286 VS |
71 | |
72 | wxString GetName() const { return m_name; } | |
73 | wxString GetValue() const { return m_value; } | |
288b6107 | 74 | wxXmlAttribute *GetNext() const { return m_next; } |
27b0c286 VS |
75 | |
76 | void SetName(const wxString& name) { m_name = name; } | |
77 | void SetValue(const wxString& value) { m_value = value; } | |
288b6107 | 78 | void SetNext(wxXmlAttribute *next) { m_next = next; } |
27b0c286 VS |
79 | |
80 | private: | |
81 | wxString m_name; | |
82 | wxString m_value; | |
288b6107 | 83 | wxXmlAttribute *m_next; |
27b0c286 VS |
84 | }; |
85 | ||
288b6107 VS |
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 | |
27b0c286 VS |
91 | |
92 | ||
288b6107 VS |
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 | |
27b0c286 VS |
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: | |
288b6107 | 105 | wxXmlNode() |
6e26d6b7 VS |
106 | : m_attrs(NULL), m_parent(NULL), m_children(NULL), m_next(NULL), |
107 | m_lineNo(-1) | |
108 | { | |
109 | } | |
110 | ||
4c43dd90 JS |
111 | wxXmlNode(wxXmlNode *parent, wxXmlNodeType type, |
112 | const wxString& name, const wxString& content = wxEmptyString, | |
6e26d6b7 VS |
113 | wxXmlAttribute *attrs = NULL, wxXmlNode *next = NULL, |
114 | int lineNo = -1); | |
115 | ||
4c43dd90 | 116 | virtual ~wxXmlNode(); |
27b0c286 VS |
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=. | |
288b6107 | 121 | // On the other hand, it DOES copy children and attributes. |
27b0c286 VS |
122 | wxXmlNode(const wxXmlNode& node); |
123 | wxXmlNode& operator=(const wxXmlNode& node); | |
124 | ||
125 | // user-friendly creation: | |
126 | wxXmlNode(wxXmlNodeType type, const wxString& name, | |
6e26d6b7 VS |
127 | const wxString& content = wxEmptyString, |
128 | int lineNo = -1); | |
4c43dd90 | 129 | virtual void AddChild(wxXmlNode *child); |
fa6a8373 | 130 | virtual bool InsertChild(wxXmlNode *child, wxXmlNode *before_node); |
4c43dd90 | 131 | virtual bool RemoveChild(wxXmlNode *child); |
e13ce4a3 VZ |
132 | virtual void AddAttribute(const wxString& name, const wxString& value); |
133 | virtual bool DeleteAttribute(const wxString& name); | |
27b0c286 VS |
134 | |
135 | // access methods: | |
136 | wxXmlNodeType GetType() const { return m_type; } | |
12058e0c VS |
137 | const wxString& GetName() const { return m_name; } |
138 | const wxString& GetContent() const { return m_content; } | |
27b0c286 | 139 | |
538f3830 VS |
140 | bool IsWhitespaceOnly() const; |
141 | int GetDepth(wxXmlNode *grandparent = NULL) const; | |
142 | ||
4c43dd90 JS |
143 | // Gets node content from wxXML_ENTITY_NODE |
144 | // The problem is, <tag>content<tag> is represented as | |
145 | // wxXML_ENTITY_NODE name="tag", content="" | |
146 | // |-- wxXML_TEXT_NODE or | |
147 | // wxXML_CDATA_SECTION_NODE name="" content="content" | |
148 | wxString GetNodeContent() const; | |
149 | ||
27b0c286 VS |
150 | wxXmlNode *GetParent() const { return m_parent; } |
151 | wxXmlNode *GetNext() const { return m_next; } | |
152 | wxXmlNode *GetChildren() const { return m_children; } | |
153 | ||
288b6107 VS |
154 | wxXmlAttribute *GetAttributes() const { return m_attrs; } |
155 | bool GetAttribute(const wxString& attrName, wxString *value) const; | |
156 | wxString GetAttribute(const wxString& attrName, | |
157 | const wxString& defaultVal) const; | |
158 | bool HasAttribute(const wxString& attrName) const; | |
27b0c286 | 159 | |
6e26d6b7 VS |
160 | int GetLineNumber() const { return m_lineNo; } |
161 | ||
27b0c286 VS |
162 | void SetType(wxXmlNodeType type) { m_type = type; } |
163 | void SetName(const wxString& name) { m_name = name; } | |
164 | void SetContent(const wxString& con) { m_content = con; } | |
165 | ||
166 | void SetParent(wxXmlNode *parent) { m_parent = parent; } | |
167 | void SetNext(wxXmlNode *next) { m_next = next; } | |
168 | void SetChildren(wxXmlNode *child) { m_children = child; } | |
169 | ||
288b6107 | 170 | void SetAttributes(wxXmlAttribute *attr) { m_attrs = attr; } |
e13ce4a3 | 171 | virtual void AddAttribute(wxXmlAttribute *attr); |
288b6107 VS |
172 | |
173 | #if WXWIN_COMPATIBILITY_2_8 | |
174 | wxDEPRECATED( inline wxXmlAttribute *GetProperties() const ); | |
175 | wxDEPRECATED( inline bool GetPropVal(const wxString& propName, | |
176 | wxString *value) const ); | |
177 | wxDEPRECATED( inline wxString GetPropVal(const wxString& propName, | |
178 | const wxString& defaultVal) const ); | |
179 | wxDEPRECATED( inline bool HasProp(const wxString& propName) const ); | |
180 | ||
181 | wxDEPRECATED( inline void SetProperties(wxXmlAttribute *prop) ); | |
182 | #endif // WXWIN_COMPATIBILITY_2_8 | |
183 | ||
184 | // The following three functions are backward compatibility, but because | |
185 | // they were virtual, we must make it possible to override them. This | |
186 | // is done by calling e.g. AddProperty() from AddAttribute(), so we have | |
187 | // to keep AddProperty() even if 2.8 compatibility is off. To prevent | |
188 | // old code from compiling in that case, we make them private and | |
189 | // non-virtual. (This can be removed when WXWIN_COMPATIBILITY_2_8 is | |
190 | // removed, we'll have just *Attribute versions then.) | |
191 | #if WXWIN_COMPATIBILITY_2_8 | |
192 | wxDEPRECATED_BUT_USED_INTERNALLY( | |
193 | virtual void AddProperty(const wxString& name, const wxString& value) ); | |
194 | wxDEPRECATED_BUT_USED_INTERNALLY( | |
195 | virtual bool DeleteProperty(const wxString& name) ); | |
196 | wxDEPRECATED_BUT_USED_INTERNALLY( | |
197 | virtual void AddProperty(wxXmlAttribute *attr) ); | |
198 | #else | |
199 | private: | |
200 | void AddProperty(const wxString& name, const wxString& value); | |
201 | bool DeleteProperty(const wxString& name); | |
202 | void AddProperty(wxXmlAttribute *attr); | |
203 | #endif // WXWIN_COMPATIBILITY_2_8/!WXWIN_COMPATIBILITY_2_8 | |
27b0c286 VS |
204 | |
205 | private: | |
206 | wxXmlNodeType m_type; | |
207 | wxString m_name; | |
208 | wxString m_content; | |
288b6107 | 209 | wxXmlAttribute *m_attrs; |
27b0c286 | 210 | wxXmlNode *m_parent, *m_children, *m_next; |
6e26d6b7 | 211 | int m_lineNo; // line number in original file, or -1 |
27b0c286 VS |
212 | |
213 | void DoCopy(const wxXmlNode& node); | |
214 | }; | |
215 | ||
288b6107 VS |
216 | #if WXWIN_COMPATIBILITY_2_8 |
217 | inline wxXmlAttribute *wxXmlNode::GetProperties() const | |
218 | { return GetAttributes(); } | |
219 | inline bool wxXmlNode::GetPropVal(const wxString& propName, | |
220 | wxString *value) const | |
221 | { return GetAttribute(propName, value); } | |
222 | inline wxString wxXmlNode::GetPropVal(const wxString& propName, | |
223 | const wxString& defaultVal) const | |
224 | { return GetAttribute(propName, defaultVal); } | |
225 | inline bool wxXmlNode::HasProp(const wxString& propName) const | |
226 | { return HasAttribute(propName); } | |
227 | inline void wxXmlNode::SetProperties(wxXmlAttribute *prop) | |
228 | { SetAttributes(prop); } | |
229 | #endif // WXWIN_COMPATIBILITY_2_8 | |
230 | ||
27b0c286 VS |
231 | |
232 | ||
538f3830 VS |
233 | // special indentation value for wxXmlDocument::Save |
234 | #define wxXML_NO_INDENTATION (-1) | |
27b0c286 | 235 | |
538f3830 VS |
236 | // flags for wxXmlDocument::Load |
237 | enum wxXmlDocumentLoadFlag | |
238 | { | |
239 | wxXMLDOC_NONE = 0, | |
240 | wxXMLDOC_KEEP_WHITESPACE_NODES = 1 | |
241 | }; | |
27b0c286 VS |
242 | |
243 | ||
244 | // This class holds XML data/document as parsed by XML parser. | |
245 | ||
246 | class WXDLLIMPEXP_XML wxXmlDocument : public wxObject | |
247 | { | |
248 | public: | |
249 | wxXmlDocument(); | |
250 | wxXmlDocument(const wxString& filename, | |
251 | const wxString& encoding = wxT("UTF-8")); | |
252 | wxXmlDocument(wxInputStream& stream, | |
253 | const wxString& encoding = wxT("UTF-8")); | |
4c43dd90 | 254 | virtual ~wxXmlDocument() { wxDELETE(m_root); } |
27b0c286 VS |
255 | |
256 | wxXmlDocument(const wxXmlDocument& doc); | |
257 | wxXmlDocument& operator=(const wxXmlDocument& doc); | |
258 | ||
259 | // Parses .xml file and loads data. Returns TRUE on success, FALSE | |
260 | // otherwise. | |
4c43dd90 | 261 | virtual bool Load(const wxString& filename, |
538f3830 | 262 | const wxString& encoding = wxT("UTF-8"), int flags = wxXMLDOC_NONE); |
4c43dd90 | 263 | virtual bool Load(wxInputStream& stream, |
538f3830 | 264 | const wxString& encoding = wxT("UTF-8"), int flags = wxXMLDOC_NONE); |
27b0c286 VS |
265 | |
266 | // Saves document as .xml file. | |
538f3830 VS |
267 | virtual bool Save(const wxString& filename, int indentstep = 1) const; |
268 | virtual bool Save(wxOutputStream& stream, int indentstep = 1) const; | |
27b0c286 VS |
269 | |
270 | bool IsOk() const { return m_root != NULL; } | |
271 | ||
272 | // Returns root node of the document. | |
273 | wxXmlNode *GetRoot() const { return m_root; } | |
274 | ||
275 | // Returns version of document (may be empty). | |
12058e0c | 276 | const wxString& GetVersion() const { return m_version; } |
27b0c286 VS |
277 | // Returns encoding of document (may be empty). |
278 | // Note: this is the encoding original file was saved in, *not* the | |
279 | // encoding of in-memory representation! | |
12058e0c | 280 | const wxString& GetFileEncoding() const { return m_fileEncoding; } |
27b0c286 VS |
281 | |
282 | // Write-access methods: | |
a124f99a | 283 | wxXmlNode *DetachRoot() { wxXmlNode *old=m_root; m_root=NULL; return old; } |
4c43dd90 | 284 | void SetRoot(wxXmlNode *node) { wxDELETE(m_root); m_root = node; } |
27b0c286 VS |
285 | void SetVersion(const wxString& version) { m_version = version; } |
286 | void SetFileEncoding(const wxString& encoding) { m_fileEncoding = encoding; } | |
287 | ||
288 | #if !wxUSE_UNICODE | |
289 | // Returns encoding of in-memory representation of the document | |
290 | // (same as passed to Load or ctor, defaults to UTF-8). | |
291 | // NB: this is meaningless in Unicode build where data are stored as wchar_t* | |
292 | wxString GetEncoding() const { return m_encoding; } | |
293 | void SetEncoding(const wxString& enc) { m_encoding = enc; } | |
294 | #endif | |
295 | ||
296 | private: | |
297 | wxString m_version; | |
298 | wxString m_fileEncoding; | |
299 | #if !wxUSE_UNICODE | |
300 | wxString m_encoding; | |
301 | #endif | |
302 | wxXmlNode *m_root; | |
303 | ||
304 | void DoCopy(const wxXmlDocument& doc); | |
4c43dd90 JS |
305 | |
306 | DECLARE_CLASS(wxXmlDocument) | |
27b0c286 VS |
307 | }; |
308 | ||
309 | #endif // wxUSE_XML | |
310 | ||
311 | #endif // _WX_XML_H_ |