]>
Commit | Line | Data |
---|---|---|
27b0c286 | 1 | ///////////////////////////////////////////////////////////////////////////// |
40989e46 | 2 | // Name: src/xml/xml.cpp |
27b0c286 VS |
3 | // Purpose: wxXmlDocument - XML parser & data holder class |
4 | // Author: Vaclav Slavik | |
5 | // Created: 2000/03/05 | |
27b0c286 | 6 | // Copyright: (c) 2000 Vaclav Slavik |
65571936 | 7 | // Licence: wxWindows licence |
27b0c286 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
27b0c286 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
13 | #ifdef __BORLANDC__ | |
14 | #pragma hdrstop | |
15 | #endif | |
16 | ||
27b0c286 VS |
17 | #if wxUSE_XML |
18 | ||
40989e46 WS |
19 | #include "wx/xml/xml.h" |
20 | ||
88a7a4e1 WS |
21 | #ifndef WX_PRECOMP |
22 | #include "wx/intl.h" | |
e4db172a | 23 | #include "wx/log.h" |
670f9935 | 24 | #include "wx/app.h" |
88a7a4e1 WS |
25 | #endif |
26 | ||
27b0c286 VS |
27 | #include "wx/wfstream.h" |
28 | #include "wx/datstrm.h" | |
29 | #include "wx/zstream.h" | |
27b0c286 | 30 | #include "wx/strconv.h" |
664e1314 | 31 | #include "wx/scopedptr.h" |
ccec9093 | 32 | #include "wx/versioninfo.h" |
27b0c286 VS |
33 | |
34 | #include "expat.h" // from Expat | |
35 | ||
34fdf762 | 36 | // DLL options compatibility check: |
34fdf762 VS |
37 | WX_CHECK_BUILD_OPTIONS("wxXML") |
38 | ||
4c43dd90 JS |
39 | |
40 | IMPLEMENT_CLASS(wxXmlDocument, wxObject) | |
41 | ||
42 | ||
538f3830 | 43 | // a private utility used by wxXML |
352d9b89 | 44 | static bool wxIsWhiteOnly(const wxString& buf); |
538f3830 | 45 | |
4c43dd90 | 46 | |
27b0c286 VS |
47 | //----------------------------------------------------------------------------- |
48 | // wxXmlNode | |
49 | //----------------------------------------------------------------------------- | |
50 | ||
51 | wxXmlNode::wxXmlNode(wxXmlNode *parent,wxXmlNodeType type, | |
52 | const wxString& name, const wxString& content, | |
6e26d6b7 | 53 | wxXmlAttribute *attrs, wxXmlNode *next, int lineNo) |
27b0c286 | 54 | : m_type(type), m_name(name), m_content(content), |
288b6107 | 55 | m_attrs(attrs), m_parent(parent), |
6e26d6b7 | 56 | m_children(NULL), m_next(next), |
30f6914b JS |
57 | m_lineNo(lineNo), |
58 | m_noConversion(false) | |
27b0c286 | 59 | { |
527d2d2d VS |
60 | wxASSERT_MSG ( type != wxXML_ELEMENT_NODE || content.empty(), "element nodes can't have content" ); |
61 | ||
27b0c286 VS |
62 | if (m_parent) |
63 | { | |
64 | if (m_parent->m_children) | |
65 | { | |
66 | m_next = m_parent->m_children; | |
67 | m_parent->m_children = this; | |
68 | } | |
69 | else | |
70 | m_parent->m_children = this; | |
71 | } | |
72 | } | |
73 | ||
74 | wxXmlNode::wxXmlNode(wxXmlNodeType type, const wxString& name, | |
6e26d6b7 VS |
75 | const wxString& content, |
76 | int lineNo) | |
27b0c286 | 77 | : m_type(type), m_name(name), m_content(content), |
288b6107 | 78 | m_attrs(NULL), m_parent(NULL), |
6e26d6b7 | 79 | m_children(NULL), m_next(NULL), |
30f6914b | 80 | m_lineNo(lineNo), m_noConversion(false) |
527d2d2d VS |
81 | { |
82 | wxASSERT_MSG ( type != wxXML_ELEMENT_NODE || content.empty(), "element nodes can't have content" ); | |
83 | } | |
27b0c286 VS |
84 | |
85 | wxXmlNode::wxXmlNode(const wxXmlNode& node) | |
86 | { | |
87 | m_next = NULL; | |
88 | m_parent = NULL; | |
89 | DoCopy(node); | |
90 | } | |
91 | ||
92 | wxXmlNode::~wxXmlNode() | |
0b3e395a VZ |
93 | { |
94 | DoFree(); | |
95 | } | |
96 | ||
97 | wxXmlNode& wxXmlNode::operator=(const wxXmlNode& node) | |
98 | { | |
9b237f10 VZ |
99 | if ( &node != this ) |
100 | { | |
101 | DoFree(); | |
102 | DoCopy(node); | |
103 | } | |
104 | ||
0b3e395a VZ |
105 | return *this; |
106 | } | |
107 | ||
108 | void wxXmlNode::DoFree() | |
27b0c286 VS |
109 | { |
110 | wxXmlNode *c, *c2; | |
111 | for (c = m_children; c; c = c2) | |
112 | { | |
113 | c2 = c->m_next; | |
114 | delete c; | |
115 | } | |
116 | ||
288b6107 VS |
117 | wxXmlAttribute *p, *p2; |
118 | for (p = m_attrs; p; p = p2) | |
27b0c286 VS |
119 | { |
120 | p2 = p->GetNext(); | |
121 | delete p; | |
122 | } | |
123 | } | |
124 | ||
27b0c286 VS |
125 | void wxXmlNode::DoCopy(const wxXmlNode& node) |
126 | { | |
127 | m_type = node.m_type; | |
128 | m_name = node.m_name; | |
129 | m_content = node.m_content; | |
6e26d6b7 | 130 | m_lineNo = node.m_lineNo; |
30f6914b | 131 | m_noConversion = node.m_noConversion; |
27b0c286 VS |
132 | m_children = NULL; |
133 | ||
134 | wxXmlNode *n = node.m_children; | |
135 | while (n) | |
136 | { | |
137 | AddChild(new wxXmlNode(*n)); | |
138 | n = n->GetNext(); | |
139 | } | |
140 | ||
288b6107 VS |
141 | m_attrs = NULL; |
142 | wxXmlAttribute *p = node.m_attrs; | |
27b0c286 VS |
143 | while (p) |
144 | { | |
288b6107 | 145 | AddAttribute(p->GetName(), p->GetValue()); |
27b0c286 VS |
146 | p = p->GetNext(); |
147 | } | |
148 | } | |
149 | ||
288b6107 | 150 | bool wxXmlNode::HasAttribute(const wxString& attrName) const |
27b0c286 | 151 | { |
288b6107 | 152 | wxXmlAttribute *attr = GetAttributes(); |
27b0c286 | 153 | |
288b6107 | 154 | while (attr) |
27b0c286 | 155 | { |
288b6107 VS |
156 | if (attr->GetName() == attrName) return true; |
157 | attr = attr->GetNext(); | |
27b0c286 VS |
158 | } |
159 | ||
759f7272 | 160 | return false; |
27b0c286 VS |
161 | } |
162 | ||
288b6107 | 163 | bool wxXmlNode::GetAttribute(const wxString& attrName, wxString *value) const |
27b0c286 | 164 | { |
cc24bf91 VS |
165 | wxCHECK_MSG( value, false, "value argument must not be NULL" ); |
166 | ||
288b6107 | 167 | wxXmlAttribute *attr = GetAttributes(); |
27b0c286 | 168 | |
288b6107 | 169 | while (attr) |
27b0c286 | 170 | { |
288b6107 | 171 | if (attr->GetName() == attrName) |
27b0c286 | 172 | { |
288b6107 | 173 | *value = attr->GetValue(); |
759f7272 | 174 | return true; |
27b0c286 | 175 | } |
288b6107 | 176 | attr = attr->GetNext(); |
27b0c286 VS |
177 | } |
178 | ||
759f7272 | 179 | return false; |
27b0c286 VS |
180 | } |
181 | ||
288b6107 | 182 | wxString wxXmlNode::GetAttribute(const wxString& attrName, const wxString& defaultVal) const |
27b0c286 VS |
183 | { |
184 | wxString tmp; | |
288b6107 | 185 | if (GetAttribute(attrName, &tmp)) |
27b0c286 | 186 | return tmp; |
0e2710a6 DS |
187 | |
188 | return defaultVal; | |
27b0c286 VS |
189 | } |
190 | ||
191 | void wxXmlNode::AddChild(wxXmlNode *child) | |
192 | { | |
193 | if (m_children == NULL) | |
194 | m_children = child; | |
195 | else | |
196 | { | |
197 | wxXmlNode *ch = m_children; | |
198 | while (ch->m_next) ch = ch->m_next; | |
199 | ch->m_next = child; | |
200 | } | |
201 | child->m_next = NULL; | |
202 | child->m_parent = this; | |
203 | } | |
204 | ||
5e05df3c VS |
205 | // inserts a new node in front of 'followingNode' |
206 | bool wxXmlNode::InsertChild(wxXmlNode *child, wxXmlNode *followingNode) | |
27b0c286 | 207 | { |
5e05df3c VS |
208 | wxCHECK_MSG( child, false, "cannot insert a NULL node!" ); |
209 | wxCHECK_MSG( child->m_parent == NULL, false, "node already has a parent" ); | |
210 | wxCHECK_MSG( child->m_next == NULL, false, "node already has m_next" ); | |
211 | wxCHECK_MSG( followingNode == NULL || followingNode->GetParent() == this, | |
212 | false, | |
213 | "wxXmlNode::InsertChild - followingNode has incorrect parent" ); | |
214 | ||
215 | // this is for backward compatibility, NULL was allowed here thanks to | |
216 | // the confusion about followingNode's meaning | |
217 | if ( followingNode == NULL ) | |
218 | followingNode = m_children; | |
219 | ||
220 | if ( m_children == followingNode ) | |
fa6a8373 | 221 | { |
fa6a8373 RR |
222 | child->m_next = m_children; |
223 | m_children = child; | |
fa6a8373 | 224 | } |
27b0c286 VS |
225 | else |
226 | { | |
227 | wxXmlNode *ch = m_children; | |
5e05df3c VS |
228 | while ( ch && ch->m_next != followingNode ) |
229 | ch = ch->m_next; | |
230 | if ( !ch ) | |
231 | { | |
232 | wxFAIL_MSG( "followingNode has this node as parent, but couldn't be found among children" ); | |
233 | return false; | |
234 | } | |
235 | ||
236 | child->m_next = followingNode; | |
27b0c286 VS |
237 | ch->m_next = child; |
238 | } | |
239 | ||
240 | child->m_parent = this; | |
fa6a8373 | 241 | return true; |
27b0c286 VS |
242 | } |
243 | ||
43a302f2 VS |
244 | // inserts a new node right after 'precedingNode' |
245 | bool wxXmlNode::InsertChildAfter(wxXmlNode *child, wxXmlNode *precedingNode) | |
246 | { | |
247 | wxCHECK_MSG( child, false, "cannot insert a NULL node!" ); | |
248 | wxCHECK_MSG( child->m_parent == NULL, false, "node already has a parent" ); | |
249 | wxCHECK_MSG( child->m_next == NULL, false, "node already has m_next" ); | |
250 | wxCHECK_MSG( precedingNode == NULL || precedingNode->m_parent == this, false, | |
251 | "precedingNode has wrong parent" ); | |
252 | ||
253 | if ( precedingNode ) | |
254 | { | |
255 | child->m_next = precedingNode->m_next; | |
256 | precedingNode->m_next = child; | |
257 | } | |
258 | else // precedingNode == NULL | |
259 | { | |
260 | wxCHECK_MSG( m_children == NULL, false, | |
261 | "NULL precedingNode only makes sense when there are no children" ); | |
262 | ||
263 | child->m_next = m_children; | |
264 | m_children = child; | |
265 | } | |
266 | ||
267 | child->m_parent = this; | |
268 | return true; | |
269 | } | |
270 | ||
27b0c286 VS |
271 | bool wxXmlNode::RemoveChild(wxXmlNode *child) |
272 | { | |
273 | if (m_children == NULL) | |
759f7272 | 274 | return false; |
27b0c286 VS |
275 | else if (m_children == child) |
276 | { | |
277 | m_children = child->m_next; | |
278 | child->m_parent = NULL; | |
279 | child->m_next = NULL; | |
759f7272 | 280 | return true; |
27b0c286 VS |
281 | } |
282 | else | |
283 | { | |
284 | wxXmlNode *ch = m_children; | |
285 | while (ch->m_next) | |
286 | { | |
287 | if (ch->m_next == child) | |
288 | { | |
289 | ch->m_next = child->m_next; | |
290 | child->m_parent = NULL; | |
291 | child->m_next = NULL; | |
759f7272 | 292 | return true; |
27b0c286 VS |
293 | } |
294 | ch = ch->m_next; | |
295 | } | |
759f7272 | 296 | return false; |
27b0c286 VS |
297 | } |
298 | } | |
299 | ||
e13ce4a3 VZ |
300 | void wxXmlNode::AddAttribute(const wxString& name, const wxString& value) |
301 | { | |
302 | AddProperty(name, value); | |
303 | } | |
304 | ||
305 | void wxXmlNode::AddAttribute(wxXmlAttribute *attr) | |
306 | { | |
307 | AddProperty(attr); | |
308 | } | |
309 | ||
310 | bool wxXmlNode::DeleteAttribute(const wxString& name) | |
311 | { | |
312 | return DeleteProperty(name); | |
313 | } | |
314 | ||
27b0c286 VS |
315 | void wxXmlNode::AddProperty(const wxString& name, const wxString& value) |
316 | { | |
288b6107 | 317 | AddProperty(new wxXmlAttribute(name, value, NULL)); |
27b0c286 VS |
318 | } |
319 | ||
288b6107 | 320 | void wxXmlNode::AddProperty(wxXmlAttribute *attr) |
27b0c286 | 321 | { |
288b6107 VS |
322 | if (m_attrs == NULL) |
323 | m_attrs = attr; | |
27b0c286 VS |
324 | else |
325 | { | |
288b6107 | 326 | wxXmlAttribute *p = m_attrs; |
27b0c286 | 327 | while (p->GetNext()) p = p->GetNext(); |
288b6107 | 328 | p->SetNext(attr); |
27b0c286 VS |
329 | } |
330 | } | |
331 | ||
332 | bool wxXmlNode::DeleteProperty(const wxString& name) | |
333 | { | |
288b6107 | 334 | wxXmlAttribute *attr; |
27b0c286 | 335 | |
288b6107 | 336 | if (m_attrs == NULL) |
759f7272 | 337 | return false; |
27b0c286 | 338 | |
288b6107 | 339 | else if (m_attrs->GetName() == name) |
27b0c286 | 340 | { |
288b6107 VS |
341 | attr = m_attrs; |
342 | m_attrs = attr->GetNext(); | |
343 | attr->SetNext(NULL); | |
344 | delete attr; | |
759f7272 | 345 | return true; |
27b0c286 VS |
346 | } |
347 | ||
348 | else | |
349 | { | |
288b6107 | 350 | wxXmlAttribute *p = m_attrs; |
27b0c286 VS |
351 | while (p->GetNext()) |
352 | { | |
353 | if (p->GetNext()->GetName() == name) | |
354 | { | |
288b6107 VS |
355 | attr = p->GetNext(); |
356 | p->SetNext(attr->GetNext()); | |
357 | attr->SetNext(NULL); | |
358 | delete attr; | |
759f7272 | 359 | return true; |
27b0c286 VS |
360 | } |
361 | p = p->GetNext(); | |
362 | } | |
759f7272 | 363 | return false; |
27b0c286 VS |
364 | } |
365 | } | |
366 | ||
4c43dd90 JS |
367 | wxString wxXmlNode::GetNodeContent() const |
368 | { | |
369 | wxXmlNode *n = GetChildren(); | |
370 | ||
371 | while (n) | |
372 | { | |
373 | if (n->GetType() == wxXML_TEXT_NODE || | |
374 | n->GetType() == wxXML_CDATA_SECTION_NODE) | |
375 | return n->GetContent(); | |
376 | n = n->GetNext(); | |
377 | } | |
378 | return wxEmptyString; | |
379 | } | |
380 | ||
538f3830 VS |
381 | int wxXmlNode::GetDepth(wxXmlNode *grandparent) const |
382 | { | |
383 | const wxXmlNode *n = this; | |
384 | int ret = -1; | |
385 | ||
386 | do | |
387 | { | |
388 | ret++; | |
389 | n = n->GetParent(); | |
390 | if (n == grandparent) | |
391 | return ret; | |
392 | ||
393 | } while (n); | |
394 | ||
395 | return wxNOT_FOUND; | |
396 | } | |
397 | ||
398 | bool wxXmlNode::IsWhitespaceOnly() const | |
399 | { | |
400 | return wxIsWhiteOnly(m_content); | |
401 | } | |
402 | ||
27b0c286 VS |
403 | |
404 | ||
405 | //----------------------------------------------------------------------------- | |
406 | // wxXmlDocument | |
407 | //----------------------------------------------------------------------------- | |
408 | ||
409 | wxXmlDocument::wxXmlDocument() | |
cee8636e | 410 | : m_version(wxS("1.0")), m_fileEncoding(wxS("UTF-8")), m_docNode(NULL) |
27b0c286 VS |
411 | { |
412 | #if !wxUSE_UNICODE | |
e767076e | 413 | m_encoding = wxS("UTF-8"); |
27b0c286 VS |
414 | #endif |
415 | } | |
416 | ||
417 | wxXmlDocument::wxXmlDocument(const wxString& filename, const wxString& encoding) | |
cee8636e | 418 | :wxObject(), m_docNode(NULL) |
27b0c286 VS |
419 | { |
420 | if ( !Load(filename, encoding) ) | |
421 | { | |
cee8636e | 422 | wxDELETE(m_docNode); |
27b0c286 VS |
423 | } |
424 | } | |
425 | ||
426 | wxXmlDocument::wxXmlDocument(wxInputStream& stream, const wxString& encoding) | |
cee8636e | 427 | :wxObject(), m_docNode(NULL) |
27b0c286 VS |
428 | { |
429 | if ( !Load(stream, encoding) ) | |
430 | { | |
cee8636e | 431 | wxDELETE(m_docNode); |
27b0c286 VS |
432 | } |
433 | } | |
434 | ||
435 | wxXmlDocument::wxXmlDocument(const wxXmlDocument& doc) | |
d0468e8c | 436 | :wxObject() |
27b0c286 VS |
437 | { |
438 | DoCopy(doc); | |
439 | } | |
440 | ||
441 | wxXmlDocument& wxXmlDocument::operator=(const wxXmlDocument& doc) | |
442 | { | |
cee8636e | 443 | wxDELETE(m_docNode); |
27b0c286 VS |
444 | DoCopy(doc); |
445 | return *this; | |
446 | } | |
447 | ||
448 | void wxXmlDocument::DoCopy(const wxXmlDocument& doc) | |
449 | { | |
450 | m_version = doc.m_version; | |
451 | #if !wxUSE_UNICODE | |
452 | m_encoding = doc.m_encoding; | |
453 | #endif | |
454 | m_fileEncoding = doc.m_fileEncoding; | |
e8da6b7c | 455 | |
cee8636e VZ |
456 | if (doc.m_docNode) |
457 | m_docNode = new wxXmlNode(*doc.m_docNode); | |
e8da6b7c | 458 | else |
cee8636e | 459 | m_docNode = NULL; |
27b0c286 VS |
460 | } |
461 | ||
538f3830 | 462 | bool wxXmlDocument::Load(const wxString& filename, const wxString& encoding, int flags) |
27b0c286 VS |
463 | { |
464 | wxFileInputStream stream(filename); | |
a1b806b9 | 465 | if (!stream.IsOk()) |
97757cee | 466 | return false; |
538f3830 | 467 | return Load(stream, encoding, flags); |
27b0c286 VS |
468 | } |
469 | ||
538f3830 | 470 | bool wxXmlDocument::Save(const wxString& filename, int indentstep) const |
27b0c286 VS |
471 | { |
472 | wxFileOutputStream stream(filename); | |
a1b806b9 | 473 | if (!stream.IsOk()) |
97757cee | 474 | return false; |
538f3830 | 475 | return Save(stream, indentstep); |
27b0c286 VS |
476 | } |
477 | ||
cee8636e VZ |
478 | wxXmlNode *wxXmlDocument::GetRoot() const |
479 | { | |
480 | wxXmlNode *node = m_docNode; | |
481 | if (node) | |
482 | { | |
483 | node = m_docNode->GetChildren(); | |
484 | while (node != NULL && node->GetType() != wxXML_ELEMENT_NODE) | |
485 | node = node->GetNext(); | |
486 | } | |
487 | return node; | |
488 | } | |
489 | ||
490 | wxXmlNode *wxXmlDocument::DetachRoot() | |
491 | { | |
492 | wxXmlNode *node = m_docNode; | |
493 | if (node) | |
494 | { | |
495 | node = m_docNode->GetChildren(); | |
496 | wxXmlNode *prev = NULL; | |
497 | while (node != NULL && node->GetType() != wxXML_ELEMENT_NODE) | |
498 | { | |
499 | prev = node; | |
500 | node = node->GetNext(); | |
501 | } | |
502 | if (node) | |
503 | { | |
504 | if (node == m_docNode->GetChildren()) | |
505 | m_docNode->SetChildren(node->GetNext()); | |
506 | ||
507 | if (prev) | |
508 | prev->SetNext(node->GetNext()); | |
509 | ||
510 | node->SetParent(NULL); | |
511 | node->SetNext(NULL); | |
512 | } | |
513 | } | |
514 | return node; | |
515 | } | |
27b0c286 | 516 | |
cee8636e VZ |
517 | void wxXmlDocument::SetRoot(wxXmlNode *root) |
518 | { | |
6f24b817 VZ |
519 | if (root) |
520 | { | |
521 | wxASSERT_MSG( root->GetType() == wxXML_ELEMENT_NODE, | |
522 | "Can only set an element type node as root" ); | |
523 | } | |
524 | ||
cee8636e VZ |
525 | wxXmlNode *node = m_docNode; |
526 | if (node) | |
527 | { | |
528 | node = m_docNode->GetChildren(); | |
529 | wxXmlNode *prev = NULL; | |
530 | while (node != NULL && node->GetType() != wxXML_ELEMENT_NODE) | |
531 | { | |
532 | prev = node; | |
533 | node = node->GetNext(); | |
534 | } | |
6f24b817 | 535 | if (node && root) |
cee8636e VZ |
536 | { |
537 | root->SetNext( node->GetNext() ); | |
538 | wxDELETE(node); | |
539 | } | |
540 | if (prev) | |
541 | prev->SetNext(root); | |
542 | else | |
543 | m_docNode->SetChildren(root); | |
544 | } | |
545 | else | |
546 | { | |
547 | m_docNode = new wxXmlNode(wxXML_DOCUMENT_NODE, wxEmptyString); | |
6f24b817 | 548 | m_docNode->SetChildren(root); |
cee8636e | 549 | } |
6f24b817 VZ |
550 | if (root) |
551 | root->SetParent(m_docNode); | |
cee8636e VZ |
552 | } |
553 | ||
554 | void wxXmlDocument::AppendToProlog(wxXmlNode *node) | |
555 | { | |
556 | if (!m_docNode) | |
557 | m_docNode = new wxXmlNode(wxXML_DOCUMENT_NODE, wxEmptyString); | |
558 | if (IsOk()) | |
559 | m_docNode->InsertChild( node, GetRoot() ); | |
560 | else | |
561 | m_docNode->AddChild( node ); | |
562 | } | |
27b0c286 VS |
563 | |
564 | //----------------------------------------------------------------------------- | |
565 | // wxXmlDocument loading routines | |
566 | //----------------------------------------------------------------------------- | |
567 | ||
ddae497f VZ |
568 | // converts Expat-produced string in UTF-8 into wxString using the specified |
569 | // conv or keep in UTF-8 if conv is NULL | |
570 | static wxString CharToString(wxMBConv *conv, | |
b04edcaf | 571 | const char *s, size_t len = wxString::npos) |
27b0c286 | 572 | { |
b04edcaf | 573 | #if !wxUSE_UNICODE |
27b0c286 VS |
574 | if ( conv ) |
575 | { | |
ddae497f VZ |
576 | // there can be no embedded NULs in this string so we don't need the |
577 | // output length, it will be NUL-terminated | |
578 | const wxWCharBuffer wbuf( | |
6df6e35a | 579 | wxConvUTF8.cMB2WC(s, len == wxString::npos ? wxNO_LEN : len, NULL)); |
ddae497f | 580 | |
da452b9e | 581 | return wxString(wbuf, *conv); |
27b0c286 | 582 | } |
b04edcaf VS |
583 | // else: the string is wanted in UTF-8 |
584 | #endif // !wxUSE_UNICODE | |
585 | ||
586 | wxUnusedVar(conv); | |
cc209a51 | 587 | return wxString::FromUTF8Unchecked(s, len); |
27b0c286 VS |
588 | } |
589 | ||
538f3830 | 590 | // returns true if the given string contains only whitespaces |
352d9b89 | 591 | bool wxIsWhiteOnly(const wxString& buf) |
538f3830 | 592 | { |
352d9b89 VS |
593 | for ( wxString::const_iterator i = buf.begin(); i != buf.end(); ++i ) |
594 | { | |
595 | wxChar c = *i; | |
e767076e | 596 | if ( c != wxS(' ') && c != wxS('\t') && c != wxS('\n') && c != wxS('\r')) |
538f3830 | 597 | return false; |
352d9b89 | 598 | } |
538f3830 VS |
599 | return true; |
600 | } | |
601 | ||
602 | ||
27b0c286 VS |
603 | struct wxXmlParsingContext |
604 | { | |
43a302f2 VS |
605 | wxXmlParsingContext() |
606 | : conv(NULL), | |
43a302f2 VS |
607 | node(NULL), |
608 | lastChild(NULL), | |
609 | lastAsText(NULL), | |
610 | removeWhiteOnlyNodes(false) | |
611 | {} | |
612 | ||
6e26d6b7 | 613 | XML_Parser parser; |
27b0c286 | 614 | wxMBConv *conv; |
43a302f2 VS |
615 | wxXmlNode *node; // the node being parsed |
616 | wxXmlNode *lastChild; // the last child of "node" | |
617 | wxXmlNode *lastAsText; // the last _text_ child of "node" | |
27b0c286 VS |
618 | wxString encoding; |
619 | wxString version; | |
538f3830 | 620 | bool removeWhiteOnlyNodes; |
27b0c286 VS |
621 | }; |
622 | ||
43a302f2 VS |
623 | // checks that ctx->lastChild is in consistent state |
624 | #define ASSERT_LAST_CHILD_OK(ctx) \ | |
625 | wxASSERT( ctx->lastChild == NULL || \ | |
626 | ctx->lastChild->GetNext() == NULL ); \ | |
627 | wxASSERT( ctx->lastChild == NULL || \ | |
628 | ctx->lastChild->GetParent() == ctx->node ) | |
629 | ||
865bb325 | 630 | extern "C" { |
27b0c286 VS |
631 | static void StartElementHnd(void *userData, const char *name, const char **atts) |
632 | { | |
633 | wxXmlParsingContext *ctx = (wxXmlParsingContext*)userData; | |
6e26d6b7 VS |
634 | wxXmlNode *node = new wxXmlNode(wxXML_ELEMENT_NODE, |
635 | CharToString(ctx->conv, name), | |
636 | wxEmptyString, | |
637 | XML_GetCurrentLineNumber(ctx->parser)); | |
27b0c286 | 638 | const char **a = atts; |
6e26d6b7 | 639 | |
43a302f2 | 640 | // add node attributes |
27b0c286 VS |
641 | while (*a) |
642 | { | |
288b6107 | 643 | node->AddAttribute(CharToString(ctx->conv, a[0]), CharToString(ctx->conv, a[1])); |
27b0c286 VS |
644 | a += 2; |
645 | } | |
43a302f2 | 646 | |
cee8636e VZ |
647 | ASSERT_LAST_CHILD_OK(ctx); |
648 | ctx->node->InsertChildAfter(node, ctx->lastChild); | |
27b0c286 | 649 | ctx->lastAsText = NULL; |
43a302f2 VS |
650 | ctx->lastChild = NULL; // our new node "node" has no children yet |
651 | ||
652 | ctx->node = node; | |
27b0c286 VS |
653 | } |
654 | ||
655 | static void EndElementHnd(void *userData, const char* WXUNUSED(name)) | |
656 | { | |
657 | wxXmlParsingContext *ctx = (wxXmlParsingContext*)userData; | |
658 | ||
43a302f2 VS |
659 | // we're exiting the last children of ctx->node->GetParent() and going |
660 | // back one level up, so current value of ctx->node points to the last | |
661 | // child of ctx->node->GetParent() | |
662 | ctx->lastChild = ctx->node; | |
663 | ||
27b0c286 VS |
664 | ctx->node = ctx->node->GetParent(); |
665 | ctx->lastAsText = NULL; | |
666 | } | |
667 | ||
668 | static void TextHnd(void *userData, const char *s, int len) | |
669 | { | |
670 | wxXmlParsingContext *ctx = (wxXmlParsingContext*)userData; | |
538f3830 | 671 | wxString str = CharToString(ctx->conv, s, len); |
27b0c286 VS |
672 | |
673 | if (ctx->lastAsText) | |
674 | { | |
d6cb1287 | 675 | ctx->lastAsText->SetContent(ctx->lastAsText->GetContent() + str); |
27b0c286 VS |
676 | } |
677 | else | |
678 | { | |
538f3830 VS |
679 | bool whiteOnly = false; |
680 | if (ctx->removeWhiteOnlyNodes) | |
681 | whiteOnly = wxIsWhiteOnly(str); | |
682 | ||
27b0c286 VS |
683 | if (!whiteOnly) |
684 | { | |
43a302f2 | 685 | wxXmlNode *textnode = |
e767076e | 686 | new wxXmlNode(wxXML_TEXT_NODE, wxS("text"), str, |
6e26d6b7 | 687 | XML_GetCurrentLineNumber(ctx->parser)); |
43a302f2 VS |
688 | |
689 | ASSERT_LAST_CHILD_OK(ctx); | |
690 | ctx->node->InsertChildAfter(textnode, ctx->lastChild); | |
691 | ctx->lastChild= ctx->lastAsText = textnode; | |
27b0c286 VS |
692 | } |
693 | } | |
27b0c286 VS |
694 | } |
695 | ||
a01cbf0a RR |
696 | static void StartCdataHnd(void *userData) |
697 | { | |
698 | wxXmlParsingContext *ctx = (wxXmlParsingContext*)userData; | |
699 | ||
43a302f2 | 700 | wxXmlNode *textnode = |
e767076e | 701 | new wxXmlNode(wxXML_CDATA_SECTION_NODE, wxS("cdata"), wxS(""), |
6e26d6b7 | 702 | XML_GetCurrentLineNumber(ctx->parser)); |
43a302f2 VS |
703 | |
704 | ASSERT_LAST_CHILD_OK(ctx); | |
705 | ctx->node->InsertChildAfter(textnode, ctx->lastChild); | |
706 | ctx->lastChild= ctx->lastAsText = textnode; | |
a01cbf0a | 707 | } |
a01cbf0a | 708 | |
a6cf6bcf VZ |
709 | static void EndCdataHnd(void *userData) |
710 | { | |
711 | wxXmlParsingContext *ctx = (wxXmlParsingContext*)userData; | |
712 | ||
713 | // we need to reset this pointer so that subsequent text nodes don't append | |
714 | // their contents to this one but create new wxXML_TEXT_NODE objects (or | |
715 | // not create anything at all if only white space follows the CDATA section | |
716 | // and wxXMLDOC_KEEP_WHITESPACE_NODES is not used as is commonly the case) | |
717 | ctx->lastAsText = NULL; | |
718 | } | |
719 | ||
27b0c286 VS |
720 | static void CommentHnd(void *userData, const char *data) |
721 | { | |
722 | wxXmlParsingContext *ctx = (wxXmlParsingContext*)userData; | |
723 | ||
cee8636e VZ |
724 | wxXmlNode *commentnode = |
725 | new wxXmlNode(wxXML_COMMENT_NODE, | |
726 | wxS("comment"), CharToString(ctx->conv, data), | |
727 | XML_GetCurrentLineNumber(ctx->parser)); | |
43a302f2 | 728 | |
cee8636e VZ |
729 | ASSERT_LAST_CHILD_OK(ctx); |
730 | ctx->node->InsertChildAfter(commentnode, ctx->lastChild); | |
731 | ctx->lastChild = commentnode; | |
732 | ctx->lastAsText = NULL; | |
733 | } | |
734 | ||
735 | static void PIHnd(void *userData, const char *target, const char *data) | |
736 | { | |
737 | wxXmlParsingContext *ctx = (wxXmlParsingContext*)userData; | |
738 | ||
739 | wxXmlNode *pinode = | |
740 | new wxXmlNode(wxXML_PI_NODE, CharToString(ctx->conv, target), | |
741 | CharToString(ctx->conv, data), | |
742 | XML_GetCurrentLineNumber(ctx->parser)); | |
743 | ||
744 | ASSERT_LAST_CHILD_OK(ctx); | |
745 | ctx->node->InsertChildAfter(pinode, ctx->lastChild); | |
746 | ctx->lastChild = pinode; | |
27b0c286 VS |
747 | ctx->lastAsText = NULL; |
748 | } | |
749 | ||
750 | static void DefaultHnd(void *userData, const char *s, int len) | |
751 | { | |
752 | // XML header: | |
753 | if (len > 6 && memcmp(s, "<?xml ", 6) == 0) | |
754 | { | |
755 | wxXmlParsingContext *ctx = (wxXmlParsingContext*)userData; | |
756 | ||
757 | wxString buf = CharToString(ctx->conv, s, (size_t)len); | |
758 | int pos; | |
e767076e | 759 | pos = buf.Find(wxS("encoding=")); |
27b0c286 VS |
760 | if (pos != wxNOT_FOUND) |
761 | ctx->encoding = buf.Mid(pos + 10).BeforeFirst(buf[(size_t)pos+9]); | |
e767076e | 762 | pos = buf.Find(wxS("version=")); |
27b0c286 VS |
763 | if (pos != wxNOT_FOUND) |
764 | ctx->version = buf.Mid(pos + 9).BeforeFirst(buf[(size_t)pos+8]); | |
765 | } | |
766 | } | |
767 | ||
768 | static int UnknownEncodingHnd(void * WXUNUSED(encodingHandlerData), | |
769 | const XML_Char *name, XML_Encoding *info) | |
770 | { | |
771 | // We must build conversion table for expat. The easiest way to do so | |
772 | // is to let wxCSConv convert as string containing all characters to | |
773 | // wide character representation: | |
86501081 | 774 | wxCSConv conv(name); |
27b0c286 VS |
775 | char mbBuf[2]; |
776 | wchar_t wcBuf[10]; | |
777 | size_t i; | |
778 | ||
779 | mbBuf[1] = 0; | |
780 | info->map[0] = 0; | |
781 | for (i = 0; i < 255; i++) | |
782 | { | |
783 | mbBuf[0] = (char)(i+1); | |
784 | if (conv.MB2WC(wcBuf, mbBuf, 2) == (size_t)-1) | |
785 | { | |
786 | // invalid/undefined byte in the encoding: | |
787 | info->map[i+1] = -1; | |
788 | } | |
789 | info->map[i+1] = (int)wcBuf[0]; | |
790 | } | |
42841dfc | 791 | |
27b0c286 VS |
792 | info->data = NULL; |
793 | info->convert = NULL; | |
794 | info->release = NULL; | |
795 | ||
796 | return 1; | |
797 | } | |
26296ac9 VS |
798 | |
799 | } // extern "C" | |
27b0c286 | 800 | |
538f3830 | 801 | bool wxXmlDocument::Load(wxInputStream& stream, const wxString& encoding, int flags) |
27b0c286 VS |
802 | { |
803 | #if wxUSE_UNICODE | |
804 | (void)encoding; | |
805 | #else | |
806 | m_encoding = encoding; | |
807 | #endif | |
808 | ||
809 | const size_t BUFSIZE = 1024; | |
810 | char buf[BUFSIZE]; | |
811 | wxXmlParsingContext ctx; | |
812 | bool done; | |
813 | XML_Parser parser = XML_ParserCreate(NULL); | |
cee8636e | 814 | wxXmlNode *root = new wxXmlNode(wxXML_DOCUMENT_NODE, wxEmptyString); |
27b0c286 | 815 | |
e767076e | 816 | ctx.encoding = wxS("UTF-8"); // default in absence of encoding="" |
27b0c286 VS |
817 | ctx.conv = NULL; |
818 | #if !wxUSE_UNICODE | |
e767076e | 819 | if ( encoding.CmpNoCase(wxS("UTF-8")) != 0 ) |
27b0c286 VS |
820 | ctx.conv = new wxCSConv(encoding); |
821 | #endif | |
538f3830 | 822 | ctx.removeWhiteOnlyNodes = (flags & wxXMLDOC_KEEP_WHITESPACE_NODES) == 0; |
6e26d6b7 | 823 | ctx.parser = parser; |
cee8636e | 824 | ctx.node = root; |
27b0c286 VS |
825 | |
826 | XML_SetUserData(parser, (void*)&ctx); | |
827 | XML_SetElementHandler(parser, StartElementHnd, EndElementHnd); | |
828 | XML_SetCharacterDataHandler(parser, TextHnd); | |
a6cf6bcf | 829 | XML_SetCdataSectionHandler(parser, StartCdataHnd, EndCdataHnd);; |
27b0c286 | 830 | XML_SetCommentHandler(parser, CommentHnd); |
cee8636e | 831 | XML_SetProcessingInstructionHandler(parser, PIHnd); |
27b0c286 VS |
832 | XML_SetDefaultHandler(parser, DefaultHnd); |
833 | XML_SetUnknownEncodingHandler(parser, UnknownEncodingHnd, NULL); | |
834 | ||
835 | bool ok = true; | |
836 | do | |
837 | { | |
838 | size_t len = stream.Read(buf, BUFSIZE).LastRead(); | |
839 | done = (len < BUFSIZE); | |
840 | if (!XML_Parse(parser, buf, len, done)) | |
841 | { | |
6a8fb6bd VS |
842 | wxString error(XML_ErrorString(XML_GetErrorCode(parser)), |
843 | *wxConvCurrent); | |
27b0c286 | 844 | wxLogError(_("XML parsing error: '%s' at line %d"), |
6a8fb6bd | 845 | error.c_str(), |
936759a4 | 846 | (int)XML_GetCurrentLineNumber(parser)); |
27b0c286 VS |
847 | ok = false; |
848 | break; | |
849 | } | |
850 | } while (!done); | |
851 | ||
852 | if (ok) | |
853 | { | |
759f7272 | 854 | if (!ctx.version.empty()) |
6a8fb6bd | 855 | SetVersion(ctx.version); |
759f7272 | 856 | if (!ctx.encoding.empty()) |
6a8fb6bd | 857 | SetFileEncoding(ctx.encoding); |
cee8636e | 858 | SetDocumentNode(root); |
27b0c286 | 859 | } |
6a8fb6bd VS |
860 | else |
861 | { | |
cee8636e | 862 | delete root; |
6a8fb6bd | 863 | } |
27b0c286 VS |
864 | |
865 | XML_ParserFree(parser); | |
866 | #if !wxUSE_UNICODE | |
867 | if ( ctx.conv ) | |
868 | delete ctx.conv; | |
869 | #endif | |
870 | ||
871 | return ok; | |
872 | ||
873 | } | |
874 | ||
875 | ||
876 | ||
877 | //----------------------------------------------------------------------------- | |
878 | // wxXmlDocument saving routines | |
879 | //----------------------------------------------------------------------------- | |
880 | ||
e767076e VZ |
881 | // helpers for XML generation |
882 | namespace | |
883 | { | |
884 | ||
27b0c286 | 885 | // write string to output: |
e767076e VZ |
886 | bool OutputString(wxOutputStream& stream, |
887 | const wxString& str, | |
888 | wxMBConv *convMem, | |
889 | wxMBConv *convFile) | |
27b0c286 | 890 | { |
8dfd4fad | 891 | if (str.empty()) |
e767076e | 892 | return true; |
8dfd4fad | 893 | |
27b0c286 | 894 | #if wxUSE_UNICODE |
8dfd4fad | 895 | wxUnusedVar(convMem); |
a6ed2786 VZ |
896 | if ( !convFile ) |
897 | convFile = &wxConvUTF8; | |
f13d956e | 898 | |
a6ed2786 VZ |
899 | const wxScopedCharBuffer buf(str.mb_str(*convFile)); |
900 | if ( !buf.length() ) | |
901 | { | |
902 | // conversion failed, can't write this string in an XML file in this | |
903 | // (presumably non-UTF-8) encoding | |
e767076e | 904 | return false; |
a6ed2786 | 905 | } |
e767076e | 906 | |
a6ed2786 | 907 | stream.Write(buf, buf.length()); |
8dfd4fad VZ |
908 | #else // !wxUSE_UNICODE |
909 | if ( convFile && convMem ) | |
27b0c286 VS |
910 | { |
911 | wxString str2(str.wc_str(*convMem), *convFile); | |
e767076e | 912 | stream.Write(str2.mb_str(), str2.length()); |
27b0c286 | 913 | } |
8dfd4fad VZ |
914 | else // no conversions to do |
915 | { | |
e767076e | 916 | stream.Write(str.mb_str(), str.length()); |
8dfd4fad VZ |
917 | } |
918 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE | |
e767076e VZ |
919 | |
920 | return stream.IsOk(); | |
27b0c286 VS |
921 | } |
922 | ||
926649a9 | 923 | enum EscapingMode |
8dfd4fad | 924 | { |
926649a9 VS |
925 | Escape_Text, |
926 | Escape_Attribute | |
8dfd4fad VZ |
927 | }; |
928 | ||
27b0c286 | 929 | // Same as above, but create entities first. |
926649a9 VS |
930 | // Translates '<' to "<", '>' to ">" and so on, according to the spec: |
931 | // http://www.w3.org/TR/2000/WD-xml-c14n-20000119.html#charescaping | |
932 | bool OutputEscapedString(wxOutputStream& stream, | |
933 | const wxString& str, | |
934 | wxMBConv *convMem, | |
935 | wxMBConv *convFile, | |
936 | EscapingMode mode) | |
937 | { | |
938 | wxString escaped; | |
939 | escaped.reserve(str.length()); | |
e767076e | 940 | |
926649a9 VS |
941 | for ( wxString::const_iterator i = str.begin(); i != str.end(); ++i ) |
942 | { | |
943 | const wxChar c = *i; | |
e767076e | 944 | |
926649a9 VS |
945 | switch ( c ) |
946 | { | |
947 | case wxS('<'): | |
948 | escaped.append(wxS("<")); | |
949 | break; | |
950 | case wxS('>'): | |
951 | escaped.append(wxS(">")); | |
952 | break; | |
953 | case wxS('&'): | |
954 | escaped.append(wxS("&")); | |
955 | break; | |
956 | case wxS('\r'): | |
957 | escaped.append(wxS("
")); | |
958 | break; | |
959 | default: | |
960 | if ( mode == Escape_Attribute ) | |
961 | { | |
962 | switch ( c ) | |
963 | { | |
964 | case wxS('"'): | |
965 | escaped.append(wxS(""")); | |
966 | break; | |
967 | case wxS('\t'): | |
968 | escaped.append(wxS("	")); | |
969 | break; | |
970 | case wxS('\n'): | |
971 | escaped.append(wxS("
")); | |
972 | break; | |
973 | default: | |
974 | escaped.append(c); | |
975 | } | |
976 | ||
977 | } | |
978 | else | |
979 | { | |
980 | escaped.append(c); | |
981 | } | |
27b0c286 VS |
982 | } |
983 | } | |
e767076e | 984 | |
926649a9 | 985 | return OutputString(stream, escaped, convMem, convFile); |
27b0c286 VS |
986 | } |
987 | ||
e767076e VZ |
988 | bool OutputIndentation(wxOutputStream& stream, |
989 | int indent, | |
990 | wxMBConv *convMem, | |
991 | wxMBConv *convFile) | |
27b0c286 | 992 | { |
e767076e | 993 | wxString str(wxS("\n")); |
57cc93eb | 994 | str += wxString(indent, wxS(' ')); |
e767076e | 995 | return OutputString(stream, str, convMem, convFile); |
27b0c286 VS |
996 | } |
997 | ||
e767076e VZ |
998 | bool OutputNode(wxOutputStream& stream, |
999 | wxXmlNode *node, | |
1000 | int indent, | |
1001 | wxMBConv *convMem, | |
1002 | wxMBConv *convFile, | |
1003 | int indentstep) | |
27b0c286 | 1004 | { |
e767076e | 1005 | bool rc; |
27b0c286 VS |
1006 | switch (node->GetType()) |
1007 | { | |
eac789ff | 1008 | case wxXML_CDATA_SECTION_NODE: |
e767076e VZ |
1009 | rc = OutputString(stream, wxS("<![CDATA["), convMem, convFile) && |
1010 | OutputString(stream, node->GetContent(), convMem, convFile) && | |
1011 | OutputString(stream, wxS("]]>"), convMem, convFile); | |
eac789ff | 1012 | break; |
a01cbf0a | 1013 | |
27b0c286 | 1014 | case wxXML_TEXT_NODE: |
30f6914b JS |
1015 | if (node->GetNoConversion()) |
1016 | { | |
1017 | stream.Write(node->GetContent().c_str(), node->GetContent().Length()); | |
1018 | rc = true; | |
1019 | } | |
1020 | else | |
1021 | rc = OutputEscapedString(stream, node->GetContent(), | |
926649a9 VS |
1022 | convMem, convFile, |
1023 | Escape_Text); | |
27b0c286 VS |
1024 | break; |
1025 | ||
1026 | case wxXML_ELEMENT_NODE: | |
e767076e VZ |
1027 | rc = OutputString(stream, wxS("<"), convMem, convFile) && |
1028 | OutputString(stream, node->GetName(), convMem, convFile); | |
27b0c286 | 1029 | |
e767076e | 1030 | if ( rc ) |
27b0c286 | 1031 | { |
e767076e VZ |
1032 | for ( wxXmlAttribute *attr = node->GetAttributes(); |
1033 | attr && rc; | |
1034 | attr = attr->GetNext() ) | |
1035 | { | |
1036 | rc = OutputString(stream, | |
1037 | wxS(" ") + attr->GetName() + wxS("=\""), | |
1038 | convMem, convFile) && | |
926649a9 VS |
1039 | OutputEscapedString(stream, attr->GetValue(), |
1040 | convMem, convFile, | |
1041 | Escape_Attribute) && | |
e767076e VZ |
1042 | OutputString(stream, wxS("\""), convMem, convFile); |
1043 | } | |
27b0c286 VS |
1044 | } |
1045 | ||
e767076e | 1046 | if ( node->GetChildren() ) |
27b0c286 | 1047 | { |
e767076e VZ |
1048 | rc = OutputString(stream, wxS(">"), convMem, convFile); |
1049 | ||
1050 | wxXmlNode *prev = NULL; | |
1051 | for ( wxXmlNode *n = node->GetChildren(); | |
1052 | n && rc; | |
1053 | n = n->GetNext() ) | |
27b0c286 | 1054 | { |
e767076e VZ |
1055 | if ( indentstep >= 0 && n->GetType() != wxXML_TEXT_NODE ) |
1056 | { | |
1057 | rc = OutputIndentation(stream, indent + indentstep, | |
1058 | convMem, convFile); | |
1059 | } | |
1060 | ||
1061 | if ( rc ) | |
1062 | rc = OutputNode(stream, n, indent + indentstep, | |
1063 | convMem, convFile, indentstep); | |
1064 | ||
27b0c286 | 1065 | prev = n; |
27b0c286 | 1066 | } |
e767076e VZ |
1067 | |
1068 | if ( rc && indentstep >= 0 && | |
1069 | prev && prev->GetType() != wxXML_TEXT_NODE ) | |
1070 | { | |
1071 | rc = OutputIndentation(stream, indent, convMem, convFile); | |
1072 | } | |
1073 | ||
1074 | if ( rc ) | |
1075 | { | |
1076 | rc = OutputString(stream, wxS("</"), convMem, convFile) && | |
1077 | OutputString(stream, node->GetName(), | |
1078 | convMem, convFile) && | |
1079 | OutputString(stream, wxS(">"), convMem, convFile); | |
1080 | } | |
1081 | } | |
1082 | else // no children, output "<foo/>" | |
1083 | { | |
1084 | rc = OutputString(stream, wxS("/>"), convMem, convFile); | |
27b0c286 | 1085 | } |
27b0c286 VS |
1086 | break; |
1087 | ||
1088 | case wxXML_COMMENT_NODE: | |
e767076e VZ |
1089 | rc = OutputString(stream, wxS("<!--"), convMem, convFile) && |
1090 | OutputString(stream, node->GetContent(), convMem, convFile) && | |
1091 | OutputString(stream, wxS("-->"), convMem, convFile); | |
27b0c286 VS |
1092 | break; |
1093 | ||
cee8636e VZ |
1094 | case wxXML_PI_NODE: |
1095 | rc = OutputString(stream, wxT("<?"), convMem, convFile) && | |
1096 | OutputString(stream, node->GetName(), convMem, convFile) && | |
1097 | OutputString(stream, wxT(" "), convMem, convFile) && | |
1098 | OutputString(stream, node->GetContent(), convMem, convFile) && | |
1099 | OutputString(stream, wxT("?>"), convMem, convFile); | |
1100 | break; | |
1101 | ||
27b0c286 | 1102 | default: |
e767076e VZ |
1103 | wxFAIL_MSG("unsupported node type"); |
1104 | rc = false; | |
27b0c286 | 1105 | } |
e767076e VZ |
1106 | |
1107 | return rc; | |
27b0c286 VS |
1108 | } |
1109 | ||
e767076e VZ |
1110 | } // anonymous namespace |
1111 | ||
538f3830 | 1112 | bool wxXmlDocument::Save(wxOutputStream& stream, int indentstep) const |
27b0c286 VS |
1113 | { |
1114 | if ( !IsOk() ) | |
759f7272 | 1115 | return false; |
27b0c286 | 1116 | |
e767076e | 1117 | wxScopedPtr<wxMBConv> convMem, convFile; |
759f7272 | 1118 | |
27b0c286 | 1119 | #if wxUSE_UNICODE |
e767076e | 1120 | convFile.reset(new wxCSConv(GetFileEncoding())); |
27b0c286 | 1121 | #else |
8605f9c5 | 1122 | if ( GetFileEncoding().CmpNoCase(GetEncoding()) != 0 ) |
27b0c286 | 1123 | { |
e767076e VZ |
1124 | convFile.reset(new wxCSConv(GetFileEncoding())); |
1125 | convMem.reset(new wxCSConv(GetEncoding())); | |
8605f9c5 | 1126 | } |
e767076e | 1127 | //else: file and in-memory encodings are the same, no conversion needed |
27b0c286 VS |
1128 | #endif |
1129 | ||
cee8636e VZ |
1130 | wxString dec = wxString::Format( |
1131 | wxS("<?xml version=\"%s\" encoding=\"%s\"?>\n"), | |
1132 | GetVersion(), GetFileEncoding() | |
1133 | ); | |
1134 | bool rc = OutputString(stream, dec, convMem.get(), convFile.get()); | |
1135 | ||
1136 | wxXmlNode *node = GetDocumentNode(); | |
1137 | if ( node ) | |
1138 | node = node->GetChildren(); | |
1139 | ||
1140 | while( rc && node ) | |
1141 | { | |
1142 | rc = OutputNode(stream, node, 0, convMem.get(), | |
1143 | convFile.get(), indentstep) && | |
1144 | OutputString(stream, wxS("\n"), convMem.get(), convFile.get()); | |
1145 | node = node->GetNext(); | |
1146 | } | |
1147 | return rc; | |
27b0c286 VS |
1148 | } |
1149 | ||
ccec9093 VZ |
1150 | /*static*/ wxVersionInfo wxXmlDocument::GetLibraryVersionInfo() |
1151 | { | |
1152 | return wxVersionInfo("expat", | |
1153 | XML_MAJOR_VERSION, | |
1154 | XML_MINOR_VERSION, | |
1155 | XML_MICRO_VERSION); | |
1156 | } | |
1157 | ||
27b0c286 | 1158 | #endif // wxUSE_XML |