]>
Commit | Line | Data |
---|---|---|
341287bf | 1 | ///////////////////////////////////////////////////////////////////////////// |
43f06cfd | 2 | // Name: src/common/variant.cpp |
341287bf JS |
3 | // Purpose: wxVariant class, container for any type |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 10/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) | |
65571936 | 9 | // Licence: wxWindows licence |
341287bf JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
341287bf JS |
12 | // For compilers that support precompilation, includes "wx/wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
3f4a0c5b | 16 | #pragma hdrstop |
341287bf JS |
17 | #endif |
18 | ||
df91131c WS |
19 | #include "wx/variant.h" |
20 | ||
d5dc103f VZ |
21 | #if wxUSE_VARIANT |
22 | ||
df91131c WS |
23 | #ifndef WX_PRECOMP |
24 | #include "wx/string.h" | |
18680f86 | 25 | #include "wx/math.h" |
0bf751e7 | 26 | #include "wx/crt.h" |
530ecef0 WS |
27 | #if wxUSE_STREAMS |
28 | #include "wx/stream.h" | |
29 | #endif | |
df91131c WS |
30 | #endif |
31 | ||
be087207 RR |
32 | #if wxUSE_STD_IOSTREAM |
33 | #if wxUSE_IOSTREAMH | |
34 | #include <fstream.h> | |
35 | #else | |
36 | #include <fstream> | |
37 | #endif | |
fbc535ff | 38 | #endif |
341287bf | 39 | |
31907d03 | 40 | #if defined(__MWERKS__) && __MSL__ >= 0x6000 |
52cbcda3 | 41 | namespace std {} |
31907d03 SC |
42 | using namespace std ; |
43 | #endif | |
44 | ||
fae05df5 | 45 | #if wxUSE_STREAMS |
530ecef0 | 46 | #include "wx/txtstrm.h" |
fae05df5 GL |
47 | #endif |
48 | ||
341287bf | 49 | #include "wx/string.h" |
fb42d7c3 VZ |
50 | #include "wx/tokenzr.h" |
51 | ||
fd242375 | 52 | wxVariant WXDLLIMPEXP_BASE wxNullVariant; |
341287bf | 53 | |
2562c823 | 54 | |
7e6b4780 | 55 | #include "wx/listimpl.cpp" |
43ea4e37 | 56 | WX_DEFINE_LIST(wxVariantList) |
7e6b4780 | 57 | |
341287bf | 58 | /* |
2562c823 | 59 | * wxVariant |
341287bf JS |
60 | */ |
61 | ||
2562c823 | 62 | IMPLEMENT_DYNAMIC_CLASS(wxVariant, wxObject) |
341287bf | 63 | |
2562c823 | 64 | wxVariant::wxVariant() |
341287bf | 65 | { |
2562c823 | 66 | m_data = (wxVariantData*) NULL; |
341287bf JS |
67 | } |
68 | ||
2562c823 | 69 | bool wxVariant::IsNull() const |
341287bf | 70 | { |
2562c823 | 71 | return (m_data == (wxVariantData*) NULL); |
341287bf JS |
72 | } |
73 | ||
2562c823 | 74 | void wxVariant::MakeNull() |
341287bf | 75 | { |
2562c823 | 76 | UnRef(); |
341287bf JS |
77 | } |
78 | ||
2562c823 | 79 | void wxVariant::Clear() |
341287bf | 80 | { |
2562c823 | 81 | m_name = wxEmptyString; |
341287bf JS |
82 | } |
83 | ||
2562c823 RR |
84 | wxVariant::wxVariant(const wxVariant& variant) |
85 | : wxObject() | |
341287bf | 86 | { |
2562c823 | 87 | m_data = (wxVariantData*) NULL; |
341287bf | 88 | |
2562c823 RR |
89 | if (!variant.IsNull()) |
90 | Ref(variant); | |
341287bf | 91 | |
2562c823 | 92 | m_name = variant.m_name; |
341287bf JS |
93 | } |
94 | ||
2562c823 | 95 | wxVariant::wxVariant(wxVariantData* data, const wxString& name) // User-defined data |
341287bf | 96 | { |
2562c823 RR |
97 | m_data = data; |
98 | m_name = name; | |
341287bf JS |
99 | } |
100 | ||
2562c823 | 101 | wxVariant::~wxVariant() |
341287bf | 102 | { |
2562c823 | 103 | UnRef(); |
341287bf JS |
104 | } |
105 | ||
2562c823 RR |
106 | // Assignment |
107 | void wxVariant::operator= (const wxVariant& variant) | |
341287bf | 108 | { |
2562c823 RR |
109 | Ref(variant); |
110 | m_name = variant.m_name; | |
341287bf JS |
111 | } |
112 | ||
2562c823 RR |
113 | // myVariant = new wxStringVariantData("hello") |
114 | void wxVariant::operator= (wxVariantData* variantData) | |
341287bf | 115 | { |
2562c823 RR |
116 | UnRef(); |
117 | m_data = variantData; | |
341287bf JS |
118 | } |
119 | ||
2562c823 | 120 | bool wxVariant::operator== (const wxVariant& variant) const |
341287bf | 121 | { |
2562c823 RR |
122 | if (IsNull() || variant.IsNull()) |
123 | return (IsNull() == variant.IsNull()); | |
341287bf | 124 | |
af4d7484 RR |
125 | if (GetType() != variant.GetType()) |
126 | return false; | |
127 | ||
2562c823 RR |
128 | return (GetData()->Eq(* variant.GetData())); |
129 | } | |
341287bf | 130 | |
2562c823 | 131 | bool wxVariant::operator!= (const wxVariant& variant) const |
341287bf | 132 | { |
2562c823 RR |
133 | return (!(*this == variant)); |
134 | } | |
341287bf | 135 | |
2562c823 | 136 | wxString wxVariant::MakeString() const |
341287bf | 137 | { |
2562c823 RR |
138 | if (!IsNull()) |
139 | { | |
140 | wxString str; | |
141 | if (GetData()->Write(str)) | |
142 | return str; | |
143 | } | |
144 | return wxEmptyString; | |
341287bf JS |
145 | } |
146 | ||
2562c823 | 147 | void wxVariant::SetData(wxVariantData* data) |
341287bf | 148 | { |
2562c823 RR |
149 | UnRef(); |
150 | m_data = data; | |
341287bf JS |
151 | } |
152 | ||
2562c823 | 153 | void wxVariant::Ref(const wxVariant& clone) |
341287bf | 154 | { |
2562c823 RR |
155 | // nothing to be done |
156 | if (m_data == clone.m_data) | |
157 | return; | |
341287bf | 158 | |
2562c823 RR |
159 | // delete reference to old data |
160 | UnRef(); | |
161 | ||
162 | // reference new data | |
163 | if ( clone.m_data ) | |
341287bf | 164 | { |
2562c823 RR |
165 | m_data = clone.m_data; |
166 | m_data->m_count++; | |
341287bf | 167 | } |
341287bf JS |
168 | } |
169 | ||
341287bf | 170 | |
2562c823 | 171 | void wxVariant::UnRef() |
341287bf | 172 | { |
2562c823 | 173 | if ( m_data ) |
341287bf | 174 | { |
2562c823 RR |
175 | wxASSERT_MSG( m_data->m_count > 0, _T("invalid ref data count") ); |
176 | ||
177 | m_data->DecRef(); | |
178 | m_data = NULL; | |
341287bf | 179 | } |
2562c823 | 180 | } |
341287bf | 181 | |
c8058a09 JS |
182 | bool wxVariant::Unshare() |
183 | { | |
184 | if ( m_data && m_data->GetRefCount() > 1 ) | |
185 | { | |
186 | // note that ref is not going to be destroyed in this case... | |
187 | const wxVariantData* ref = m_data; | |
188 | UnRef(); | |
189 | ||
190 | // ... so we can still access it | |
191 | m_data = ref->Clone(); | |
192 | ||
193 | wxASSERT_MSG( (m_data && m_data->GetRefCount() == 1), | |
194 | _T("wxVariant::AllocExclusive() failed.") ); | |
195 | ||
196 | if (!m_data || m_data->GetRefCount() != 1) | |
197 | return false; | |
198 | else | |
199 | return true; | |
200 | } | |
201 | //else: data is null or ref count is 1, so we are exclusive owners of m_refData anyhow | |
202 | else | |
203 | return true; | |
204 | } | |
205 | ||
2562c823 RR |
206 | |
207 | // Returns a string representing the type of the variant, | |
208 | // e.g. "string", "bool", "list", "double", "long" | |
209 | wxString wxVariant::GetType() const | |
210 | { | |
211 | if (IsNull()) | |
212 | return wxString(wxT("null")); | |
213 | else | |
214 | return GetData()->GetType(); | |
341287bf JS |
215 | } |
216 | ||
2562c823 RR |
217 | |
218 | bool wxVariant::IsType(const wxString& type) const | |
341287bf | 219 | { |
2562c823 | 220 | return (GetType() == type); |
341287bf JS |
221 | } |
222 | ||
2562c823 | 223 | bool wxVariant::IsValueKindOf(const wxClassInfo* type) const |
341287bf | 224 | { |
2562c823 RR |
225 | wxClassInfo* info=GetData()->GetValueClassInfo(); |
226 | return info ? info->IsKindOf(type) : false ; | |
341287bf JS |
227 | } |
228 | ||
2c3a1064 | 229 | |
2562c823 RR |
230 | // ----------------------------------------------------------------- |
231 | // wxVariantDataLong | |
232 | // ----------------------------------------------------------------- | |
341287bf | 233 | |
fd242375 | 234 | class WXDLLIMPEXP_BASE wxVariantDataLong: public wxVariantData |
341287bf | 235 | { |
341287bf JS |
236 | public: |
237 | wxVariantDataLong() { m_value = 0; } | |
238 | wxVariantDataLong(long value) { m_value = value; } | |
239 | ||
240 | inline long GetValue() const { return m_value; } | |
241 | inline void SetValue(long value) { m_value = value; } | |
242 | ||
341287bf | 243 | virtual bool Eq(wxVariantData& data) const; |
1ccbb61a VZ |
244 | |
245 | virtual bool Read(wxString& str); | |
341287bf | 246 | virtual bool Write(wxString& str) const; |
38830220 | 247 | #if wxUSE_STD_IOSTREAM |
dd107c50 VZ |
248 | virtual bool Read(wxSTD istream& str); |
249 | virtual bool Write(wxSTD ostream& str) const; | |
38830220 | 250 | #endif |
e02afc7a | 251 | #if wxUSE_STREAMS |
75ed1d15 | 252 | virtual bool Read(wxInputStream& str); |
1ccbb61a | 253 | virtual bool Write(wxOutputStream &str) const; |
e02afc7a | 254 | #endif // wxUSE_STREAMS |
1ccbb61a | 255 | |
c8058a09 JS |
256 | wxVariantData* Clone() const { return new wxVariantDataLong(m_value); } |
257 | ||
47b378bd | 258 | virtual wxString GetType() const { return wxT("long"); } |
341287bf JS |
259 | |
260 | protected: | |
261 | long m_value; | |
262 | }; | |
263 | ||
341287bf JS |
264 | bool wxVariantDataLong::Eq(wxVariantData& data) const |
265 | { | |
223d09f6 | 266 | wxASSERT_MSG( (data.GetType() == wxT("long")), wxT("wxVariantDataLong::Eq: argument mismatch") ); |
341287bf JS |
267 | |
268 | wxVariantDataLong& otherData = (wxVariantDataLong&) data; | |
269 | ||
270 | return (otherData.m_value == m_value); | |
271 | } | |
272 | ||
38830220 | 273 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 274 | bool wxVariantDataLong::Write(wxSTD ostream& str) const |
341287bf JS |
275 | { |
276 | wxString s; | |
277 | Write(s); | |
783b6cfd | 278 | str << (const char*) s.mb_str(); |
cab1a605 | 279 | return true; |
341287bf | 280 | } |
38830220 | 281 | #endif |
341287bf JS |
282 | |
283 | bool wxVariantDataLong::Write(wxString& str) const | |
284 | { | |
223d09f6 | 285 | str.Printf(wxT("%ld"), m_value); |
cab1a605 | 286 | return true; |
341287bf JS |
287 | } |
288 | ||
38830220 | 289 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 290 | bool wxVariantDataLong::Read(wxSTD istream& str) |
341287bf JS |
291 | { |
292 | str >> m_value; | |
cab1a605 | 293 | return true; |
341287bf | 294 | } |
38830220 | 295 | #endif |
341287bf | 296 | |
e02afc7a | 297 | #if wxUSE_STREAMS |
1ccbb61a VZ |
298 | bool wxVariantDataLong::Write(wxOutputStream& str) const |
299 | { | |
fae05df5 GL |
300 | wxTextOutputStream s(str); |
301 | ||
479cd5de | 302 | s.Write32((size_t)m_value); |
cab1a605 | 303 | return true; |
1ccbb61a VZ |
304 | } |
305 | ||
75ed1d15 GL |
306 | bool wxVariantDataLong::Read(wxInputStream& str) |
307 | { | |
fae05df5 GL |
308 | wxTextInputStream s(str); |
309 | m_value = s.Read32(); | |
cab1a605 | 310 | return true; |
75ed1d15 | 311 | } |
e02afc7a | 312 | #endif // wxUSE_STREAMS |
75ed1d15 | 313 | |
341287bf JS |
314 | bool wxVariantDataLong::Read(wxString& str) |
315 | { | |
52de37c7 | 316 | m_value = wxAtol(str); |
cab1a605 | 317 | return true; |
341287bf JS |
318 | } |
319 | ||
07502d73 | 320 | // wxVariant |
341287bf | 321 | |
2562c823 | 322 | wxVariant::wxVariant(long val, const wxString& name) |
341287bf | 323 | { |
2562c823 RR |
324 | m_data = new wxVariantDataLong(val); |
325 | m_name = name; | |
326 | } | |
341287bf | 327 | |
2562c823 RR |
328 | wxVariant::wxVariant(int val, const wxString& name) |
329 | { | |
330 | m_data = new wxVariantDataLong((long)val); | |
331 | m_name = name; | |
332 | } | |
333 | ||
334 | wxVariant::wxVariant(short val, const wxString& name) | |
335 | { | |
336 | m_data = new wxVariantDataLong((long)val); | |
337 | m_name = name; | |
338 | } | |
339 | ||
340 | bool wxVariant::operator== (long value) const | |
341 | { | |
342 | long thisValue; | |
343 | if (!Convert(&thisValue)) | |
344 | return false; | |
345 | else | |
346 | return (value == thisValue); | |
347 | } | |
348 | ||
349 | bool wxVariant::operator!= (long value) const | |
350 | { | |
351 | return (!((*this) == value)); | |
352 | } | |
353 | ||
354 | void wxVariant::operator= (long value) | |
355 | { | |
356 | if (GetType() == wxT("long") && | |
357 | m_data->GetRefCount() == 1) | |
358 | { | |
359 | ((wxVariantDataLong*)GetData())->SetValue(value); | |
360 | } | |
361 | else | |
362 | { | |
363 | UnRef(); | |
364 | m_data = new wxVariantDataLong(value); | |
365 | } | |
366 | } | |
367 | ||
368 | long wxVariant::GetLong() const | |
369 | { | |
370 | long value; | |
371 | if (Convert(& value)) | |
372 | return value; | |
373 | else | |
374 | { | |
375 | wxFAIL_MSG(wxT("Could not convert to a long")); | |
376 | return 0; | |
377 | } | |
378 | } | |
379 | ||
380 | // ----------------------------------------------------------------- | |
381 | // wxVariantDoubleData | |
382 | // ----------------------------------------------------------------- | |
383 | ||
384 | class WXDLLIMPEXP_BASE wxVariantDoubleData: public wxVariantData | |
385 | { | |
2562c823 RR |
386 | public: |
387 | wxVariantDoubleData() { m_value = 0.0; } | |
388 | wxVariantDoubleData(double value) { m_value = value; } | |
389 | ||
390 | inline double GetValue() const { return m_value; } | |
391 | inline void SetValue(double value) { m_value = value; } | |
341287bf | 392 | |
341287bf | 393 | virtual bool Eq(wxVariantData& data) const; |
1ccbb61a | 394 | virtual bool Read(wxString& str); |
38830220 | 395 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 396 | virtual bool Write(wxSTD ostream& str) const; |
38830220 | 397 | #endif |
341287bf | 398 | virtual bool Write(wxString& str) const; |
38830220 | 399 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 400 | virtual bool Read(wxSTD istream& str); |
38830220 | 401 | #endif |
e02afc7a | 402 | #if wxUSE_STREAMS |
75ed1d15 | 403 | virtual bool Read(wxInputStream& str); |
1ccbb61a | 404 | virtual bool Write(wxOutputStream &str) const; |
e02afc7a | 405 | #endif // wxUSE_STREAMS |
47b378bd | 406 | virtual wxString GetType() const { return wxT("double"); } |
341287bf | 407 | |
c8058a09 | 408 | wxVariantData* Clone() const { return new wxVariantDoubleData(m_value); } |
341287bf JS |
409 | protected: |
410 | double m_value; | |
411 | }; | |
412 | ||
2562c823 | 413 | bool wxVariantDoubleData::Eq(wxVariantData& data) const |
341287bf | 414 | { |
2562c823 | 415 | wxASSERT_MSG( (data.GetType() == wxT("double")), wxT("wxVariantDoubleData::Eq: argument mismatch") ); |
341287bf | 416 | |
2562c823 | 417 | wxVariantDoubleData& otherData = (wxVariantDoubleData&) data; |
341287bf | 418 | |
bc14c8b2 | 419 | return wxIsSameDouble(otherData.m_value, m_value); |
341287bf JS |
420 | } |
421 | ||
38830220 | 422 | #if wxUSE_STD_IOSTREAM |
2562c823 | 423 | bool wxVariantDoubleData::Write(wxSTD ostream& str) const |
341287bf JS |
424 | { |
425 | wxString s; | |
426 | Write(s); | |
783b6cfd | 427 | str << (const char*) s.mb_str(); |
cab1a605 | 428 | return true; |
341287bf | 429 | } |
38830220 | 430 | #endif |
341287bf | 431 | |
2562c823 | 432 | bool wxVariantDoubleData::Write(wxString& str) const |
341287bf | 433 | { |
654056ee | 434 | str.Printf(wxT("%.14g"), m_value); |
cab1a605 | 435 | return true; |
341287bf JS |
436 | } |
437 | ||
38830220 | 438 | #if wxUSE_STD_IOSTREAM |
2562c823 | 439 | bool wxVariantDoubleData::Read(wxSTD istream& str) |
341287bf JS |
440 | { |
441 | str >> m_value; | |
cab1a605 | 442 | return true; |
341287bf | 443 | } |
38830220 | 444 | #endif |
341287bf | 445 | |
e02afc7a | 446 | #if wxUSE_STREAMS |
2562c823 | 447 | bool wxVariantDoubleData::Write(wxOutputStream& str) const |
1ccbb61a | 448 | { |
fae05df5 GL |
449 | wxTextOutputStream s(str); |
450 | s.WriteDouble((double)m_value); | |
cab1a605 | 451 | return true; |
1ccbb61a VZ |
452 | } |
453 | ||
2562c823 | 454 | bool wxVariantDoubleData::Read(wxInputStream& str) |
75ed1d15 | 455 | { |
fae05df5 GL |
456 | wxTextInputStream s(str); |
457 | m_value = (float)s.ReadDouble(); | |
cab1a605 | 458 | return true; |
75ed1d15 | 459 | } |
e02afc7a | 460 | #endif // wxUSE_STREAMS |
75ed1d15 | 461 | |
2562c823 | 462 | bool wxVariantDoubleData::Read(wxString& str) |
341287bf | 463 | { |
52de37c7 | 464 | m_value = wxAtof(str); |
cab1a605 | 465 | return true; |
341287bf JS |
466 | } |
467 | ||
2562c823 RR |
468 | // wxVariant double code |
469 | ||
470 | wxVariant::wxVariant(double val, const wxString& name) | |
471 | { | |
472 | m_data = new wxVariantDoubleData(val); | |
473 | m_name = name; | |
474 | } | |
475 | ||
476 | bool wxVariant::operator== (double value) const | |
477 | { | |
478 | double thisValue; | |
479 | if (!Convert(&thisValue)) | |
480 | return false; | |
481 | ||
482 | return wxIsSameDouble(value, thisValue); | |
483 | } | |
484 | ||
485 | bool wxVariant::operator!= (double value) const | |
486 | { | |
487 | return (!((*this) == value)); | |
488 | } | |
489 | ||
490 | void wxVariant::operator= (double value) | |
491 | { | |
492 | if (GetType() == wxT("double") && | |
493 | m_data->GetRefCount() == 1) | |
494 | { | |
495 | ((wxVariantDoubleData*)GetData())->SetValue(value); | |
496 | } | |
497 | else | |
498 | { | |
499 | UnRef(); | |
500 | m_data = new wxVariantDoubleData(value); | |
501 | } | |
502 | } | |
503 | ||
504 | double wxVariant::GetDouble() const | |
505 | { | |
506 | double value; | |
507 | if (Convert(& value)) | |
508 | return value; | |
509 | else | |
510 | { | |
511 | wxFAIL_MSG(wxT("Could not convert to a double number")); | |
512 | return 0.0; | |
513 | } | |
514 | } | |
515 | ||
516 | // ----------------------------------------------------------------- | |
517 | // wxVariantBoolData | |
518 | // ----------------------------------------------------------------- | |
519 | ||
fd242375 | 520 | class WXDLLIMPEXP_BASE wxVariantDataBool: public wxVariantData |
341287bf | 521 | { |
341287bf JS |
522 | public: |
523 | wxVariantDataBool() { m_value = 0; } | |
524 | wxVariantDataBool(bool value) { m_value = value; } | |
525 | ||
526 | inline bool GetValue() const { return m_value; } | |
527 | inline void SetValue(bool value) { m_value = value; } | |
528 | ||
341287bf | 529 | virtual bool Eq(wxVariantData& data) const; |
38830220 | 530 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 531 | virtual bool Write(wxSTD ostream& str) const; |
38830220 | 532 | #endif |
341287bf | 533 | virtual bool Write(wxString& str) const; |
1ccbb61a | 534 | virtual bool Read(wxString& str); |
38830220 | 535 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 536 | virtual bool Read(wxSTD istream& str); |
38830220 | 537 | #endif |
e02afc7a | 538 | #if wxUSE_STREAMS |
75ed1d15 | 539 | virtual bool Read(wxInputStream& str); |
1ccbb61a | 540 | virtual bool Write(wxOutputStream& str) const; |
e02afc7a | 541 | #endif // wxUSE_STREAMS |
47b378bd | 542 | virtual wxString GetType() const { return wxT("bool"); } |
341287bf | 543 | |
c8058a09 | 544 | wxVariantData* Clone() const { return new wxVariantDataBool(m_value); } |
341287bf JS |
545 | protected: |
546 | bool m_value; | |
547 | }; | |
548 | ||
341287bf JS |
549 | bool wxVariantDataBool::Eq(wxVariantData& data) const |
550 | { | |
223d09f6 | 551 | wxASSERT_MSG( (data.GetType() == wxT("bool")), wxT("wxVariantDataBool::Eq: argument mismatch") ); |
341287bf JS |
552 | |
553 | wxVariantDataBool& otherData = (wxVariantDataBool&) data; | |
554 | ||
555 | return (otherData.m_value == m_value); | |
556 | } | |
557 | ||
38830220 | 558 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 559 | bool wxVariantDataBool::Write(wxSTD ostream& str) const |
341287bf JS |
560 | { |
561 | wxString s; | |
562 | Write(s); | |
783b6cfd | 563 | str << (const char*) s.mb_str(); |
cab1a605 | 564 | return true; |
341287bf | 565 | } |
38830220 | 566 | #endif |
341287bf JS |
567 | |
568 | bool wxVariantDataBool::Write(wxString& str) const | |
569 | { | |
223d09f6 | 570 | str.Printf(wxT("%d"), (int) m_value); |
cab1a605 | 571 | return true; |
341287bf JS |
572 | } |
573 | ||
38830220 | 574 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 575 | bool wxVariantDataBool::Read(wxSTD istream& WXUNUSED(str)) |
341287bf | 576 | { |
223d09f6 | 577 | wxFAIL_MSG(wxT("Unimplemented")); |
341287bf | 578 | // str >> (long) m_value; |
cab1a605 | 579 | return false; |
341287bf | 580 | } |
38830220 | 581 | #endif |
341287bf | 582 | |
e02afc7a | 583 | #if wxUSE_STREAMS |
1ccbb61a VZ |
584 | bool wxVariantDataBool::Write(wxOutputStream& str) const |
585 | { | |
fae05df5 GL |
586 | wxTextOutputStream s(str); |
587 | ||
2b004197 | 588 | s.Write8(m_value); |
cab1a605 | 589 | return true; |
1ccbb61a VZ |
590 | } |
591 | ||
75ed1d15 GL |
592 | bool wxVariantDataBool::Read(wxInputStream& str) |
593 | { | |
fae05df5 GL |
594 | wxTextInputStream s(str); |
595 | ||
a1b82138 | 596 | m_value = s.Read8() != 0; |
cab1a605 | 597 | return true; |
75ed1d15 | 598 | } |
e02afc7a | 599 | #endif // wxUSE_STREAMS |
75ed1d15 | 600 | |
341287bf JS |
601 | bool wxVariantDataBool::Read(wxString& str) |
602 | { | |
52de37c7 | 603 | m_value = (wxAtol(str) != 0); |
cab1a605 | 604 | return true; |
341287bf | 605 | } |
2562c823 RR |
606 | |
607 | // wxVariant **** | |
608 | ||
609 | wxVariant::wxVariant(bool val, const wxString& name) | |
610 | { | |
611 | m_data = new wxVariantDataBool(val); | |
612 | m_name = name; | |
613 | } | |
614 | ||
615 | bool wxVariant::operator== (bool value) const | |
616 | { | |
617 | bool thisValue; | |
618 | if (!Convert(&thisValue)) | |
619 | return false; | |
620 | else | |
621 | return (value == thisValue); | |
622 | } | |
623 | ||
624 | bool wxVariant::operator!= (bool value) const | |
625 | { | |
626 | return (!((*this) == value)); | |
627 | } | |
628 | ||
629 | void wxVariant::operator= (bool value) | |
630 | { | |
631 | if (GetType() == wxT("bool") && | |
632 | m_data->GetRefCount() == 1) | |
633 | { | |
634 | ((wxVariantDataBool*)GetData())->SetValue(value); | |
635 | } | |
636 | else | |
637 | { | |
638 | UnRef(); | |
639 | m_data = new wxVariantDataBool(value); | |
640 | } | |
641 | } | |
642 | ||
643 | bool wxVariant::GetBool() const | |
644 | { | |
645 | bool value; | |
646 | if (Convert(& value)) | |
647 | return value; | |
648 | else | |
649 | { | |
650 | wxFAIL_MSG(wxT("Could not convert to a bool")); | |
651 | return 0; | |
652 | } | |
653 | } | |
654 | ||
2562c823 RR |
655 | // ----------------------------------------------------------------- |
656 | // wxVariantDataChar | |
657 | // ----------------------------------------------------------------- | |
341287bf | 658 | |
fd242375 | 659 | class WXDLLIMPEXP_BASE wxVariantDataChar: public wxVariantData |
341287bf | 660 | { |
341287bf JS |
661 | public: |
662 | wxVariantDataChar() { m_value = 0; } | |
af717fa8 | 663 | wxVariantDataChar(const wxUniChar& value) { m_value = value; } |
341287bf | 664 | |
af717fa8 VS |
665 | inline wxUniChar GetValue() const { return m_value; } |
666 | inline void SetValue(const wxUniChar& value) { m_value = value; } | |
341287bf | 667 | |
341287bf | 668 | virtual bool Eq(wxVariantData& data) const; |
38830220 | 669 | #if wxUSE_STD_IOSTREAM |
dd107c50 VZ |
670 | virtual bool Read(wxSTD istream& str); |
671 | virtual bool Write(wxSTD ostream& str) const; | |
38830220 | 672 | #endif |
1ccbb61a | 673 | virtual bool Read(wxString& str); |
341287bf | 674 | virtual bool Write(wxString& str) const; |
e02afc7a | 675 | #if wxUSE_STREAMS |
75ed1d15 | 676 | virtual bool Read(wxInputStream& str); |
1ccbb61a | 677 | virtual bool Write(wxOutputStream& str) const; |
e02afc7a | 678 | #endif // wxUSE_STREAMS |
47b378bd | 679 | virtual wxString GetType() const { return wxT("char"); } |
c8058a09 | 680 | wxVariantData* Clone() const { return new wxVariantDataChar(m_value); } |
341287bf JS |
681 | |
682 | protected: | |
af717fa8 | 683 | wxUniChar m_value; |
341287bf JS |
684 | }; |
685 | ||
341287bf JS |
686 | bool wxVariantDataChar::Eq(wxVariantData& data) const |
687 | { | |
223d09f6 | 688 | wxASSERT_MSG( (data.GetType() == wxT("char")), wxT("wxVariantDataChar::Eq: argument mismatch") ); |
341287bf JS |
689 | |
690 | wxVariantDataChar& otherData = (wxVariantDataChar&) data; | |
691 | ||
692 | return (otherData.m_value == m_value); | |
693 | } | |
694 | ||
38830220 | 695 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 696 | bool wxVariantDataChar::Write(wxSTD ostream& str) const |
341287bf | 697 | { |
af717fa8 | 698 | str << wxString(m_value); |
cab1a605 | 699 | return true; |
341287bf | 700 | } |
38830220 | 701 | #endif |
341287bf JS |
702 | |
703 | bool wxVariantDataChar::Write(wxString& str) const | |
704 | { | |
af717fa8 | 705 | str = m_value; |
cab1a605 | 706 | return true; |
341287bf JS |
707 | } |
708 | ||
38830220 | 709 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 710 | bool wxVariantDataChar::Read(wxSTD istream& WXUNUSED(str)) |
341287bf | 711 | { |
223d09f6 | 712 | wxFAIL_MSG(wxT("Unimplemented")); |
07502d73 | 713 | |
cab1a605 | 714 | return false; |
341287bf | 715 | } |
38830220 | 716 | #endif |
341287bf | 717 | |
e02afc7a | 718 | #if wxUSE_STREAMS |
1ccbb61a VZ |
719 | bool wxVariantDataChar::Write(wxOutputStream& str) const |
720 | { | |
fae05df5 GL |
721 | wxTextOutputStream s(str); |
722 | ||
af717fa8 VS |
723 | // FIXME-UTF8: this should be just "s << m_value;" after removal of |
724 | // ANSI build and addition of wxUniChar to wxTextOutputStream: | |
725 | s << (wxChar)m_value; | |
07502d73 | 726 | |
cab1a605 | 727 | return true; |
1ccbb61a VZ |
728 | } |
729 | ||
75ed1d15 GL |
730 | bool wxVariantDataChar::Read(wxInputStream& str) |
731 | { | |
fae05df5 GL |
732 | wxTextInputStream s(str); |
733 | ||
af717fa8 VS |
734 | // FIXME-UTF8: this should be just "s >> m_value;" after removal of |
735 | // ANSI build and addition of wxUniChar to wxTextInputStream: | |
736 | wxChar ch; | |
737 | s >> ch; | |
738 | m_value = ch; | |
71520754 | 739 | |
cab1a605 | 740 | return true; |
75ed1d15 | 741 | } |
e02afc7a | 742 | #endif // wxUSE_STREAMS |
75ed1d15 | 743 | |
341287bf JS |
744 | bool wxVariantDataChar::Read(wxString& str) |
745 | { | |
af717fa8 | 746 | m_value = str[0u]; |
cab1a605 | 747 | return true; |
341287bf JS |
748 | } |
749 | ||
af717fa8 | 750 | wxVariant::wxVariant(const wxUniChar& val, const wxString& name) |
2562c823 RR |
751 | { |
752 | m_data = new wxVariantDataChar(val); | |
753 | m_name = name; | |
754 | } | |
755 | ||
af717fa8 | 756 | wxVariant::wxVariant(char val, const wxString& name) |
2562c823 | 757 | { |
af717fa8 VS |
758 | m_data = new wxVariantDataChar(val); |
759 | m_name = name; | |
760 | } | |
761 | ||
762 | wxVariant::wxVariant(wchar_t val, const wxString& name) | |
763 | { | |
764 | m_data = new wxVariantDataChar(val); | |
765 | m_name = name; | |
766 | } | |
767 | ||
768 | bool wxVariant::operator==(const wxUniChar& value) const | |
769 | { | |
770 | wxUniChar thisValue; | |
2562c823 RR |
771 | if (!Convert(&thisValue)) |
772 | return false; | |
773 | else | |
774 | return (value == thisValue); | |
775 | } | |
776 | ||
af717fa8 | 777 | wxVariant& wxVariant::operator=(const wxUniChar& value) |
2562c823 RR |
778 | { |
779 | if (GetType() == wxT("char") && | |
780 | m_data->GetRefCount() == 1) | |
781 | { | |
782 | ((wxVariantDataChar*)GetData())->SetValue(value); | |
783 | } | |
784 | else | |
785 | { | |
786 | UnRef(); | |
787 | m_data = new wxVariantDataChar(value); | |
788 | } | |
af717fa8 VS |
789 | |
790 | return *this; | |
2562c823 RR |
791 | } |
792 | ||
af717fa8 | 793 | wxUniChar wxVariant::GetChar() const |
2562c823 | 794 | { |
af717fa8 | 795 | wxUniChar value; |
2562c823 RR |
796 | if (Convert(& value)) |
797 | return value; | |
798 | else | |
799 | { | |
800 | wxFAIL_MSG(wxT("Could not convert to a char")); | |
af717fa8 | 801 | return wxUniChar(0); |
2562c823 RR |
802 | } |
803 | } | |
804 | ||
805 | // ---------------------------------------------------------------------------- | |
806 | // wxVariantDataString | |
807 | // ---------------------------------------------------------------------------- | |
341287bf | 808 | |
fd242375 | 809 | class WXDLLIMPEXP_BASE wxVariantDataString: public wxVariantData |
341287bf | 810 | { |
341287bf JS |
811 | public: |
812 | wxVariantDataString() { } | |
813 | wxVariantDataString(const wxString& value) { m_value = value; } | |
814 | ||
815 | inline wxString GetValue() const { return m_value; } | |
816 | inline void SetValue(const wxString& value) { m_value = value; } | |
817 | ||
341287bf | 818 | virtual bool Eq(wxVariantData& data) const; |
38830220 | 819 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 820 | virtual bool Write(wxSTD ostream& str) const; |
38830220 | 821 | #endif |
1ccbb61a | 822 | virtual bool Read(wxString& str); |
341287bf | 823 | virtual bool Write(wxString& str) const; |
38830220 | 824 | #if wxUSE_STD_IOSTREAM |
47b378bd | 825 | virtual bool Read(wxSTD istream& WXUNUSED(str)) { return false; } |
38830220 | 826 | #endif |
e02afc7a | 827 | #if wxUSE_STREAMS |
75ed1d15 | 828 | virtual bool Read(wxInputStream& str); |
1ccbb61a | 829 | virtual bool Write(wxOutputStream& str) const; |
e02afc7a | 830 | #endif // wxUSE_STREAMS |
47b378bd | 831 | virtual wxString GetType() const { return wxT("string"); } |
c8058a09 | 832 | wxVariantData* Clone() const { return new wxVariantDataString(m_value); } |
341287bf JS |
833 | |
834 | protected: | |
835 | wxString m_value; | |
836 | }; | |
837 | ||
341287bf JS |
838 | bool wxVariantDataString::Eq(wxVariantData& data) const |
839 | { | |
223d09f6 | 840 | wxASSERT_MSG( (data.GetType() == wxT("string")), wxT("wxVariantDataString::Eq: argument mismatch") ); |
341287bf JS |
841 | |
842 | wxVariantDataString& otherData = (wxVariantDataString&) data; | |
843 | ||
844 | return (otherData.m_value == m_value); | |
845 | } | |
846 | ||
38830220 | 847 | #if wxUSE_STD_IOSTREAM |
dd107c50 | 848 | bool wxVariantDataString::Write(wxSTD ostream& str) const |
341287bf | 849 | { |
783b6cfd | 850 | str << (const char*) m_value.mb_str(); |
cab1a605 | 851 | return true; |
341287bf | 852 | } |
38830220 | 853 | #endif |
341287bf JS |
854 | |
855 | bool wxVariantDataString::Write(wxString& str) const | |
856 | { | |
857 | str = m_value; | |
cab1a605 | 858 | return true; |
341287bf JS |
859 | } |
860 | ||
e02afc7a | 861 | #if wxUSE_STREAMS |
1ccbb61a VZ |
862 | bool wxVariantDataString::Write(wxOutputStream& str) const |
863 | { | |
783b6cfd | 864 | // why doesn't wxOutputStream::operator<< take "const wxString&" |
fae05df5 GL |
865 | wxTextOutputStream s(str); |
866 | s.WriteString(m_value); | |
cab1a605 | 867 | return true; |
1ccbb61a VZ |
868 | } |
869 | ||
75ed1d15 GL |
870 | bool wxVariantDataString::Read(wxInputStream& str) |
871 | { | |
fae05df5 GL |
872 | wxTextInputStream s(str); |
873 | ||
40ff126a | 874 | m_value = s.ReadLine(); |
cab1a605 | 875 | return true; |
75ed1d15 | 876 | } |
e02afc7a | 877 | #endif // wxUSE_STREAMS |
75ed1d15 | 878 | |
341287bf JS |
879 | bool wxVariantDataString::Read(wxString& str) |
880 | { | |
881 | m_value = str; | |
cab1a605 | 882 | return true; |
341287bf JS |
883 | } |
884 | ||
2562c823 | 885 | // wxVariant **** |
07502d73 | 886 | |
2562c823 | 887 | wxVariant::wxVariant(const wxString& val, const wxString& name) |
a0a302dc | 888 | { |
2562c823 RR |
889 | m_data = new wxVariantDataString(val); |
890 | m_name = name; | |
891 | } | |
a0a302dc | 892 | |
af717fa8 VS |
893 | wxVariant::wxVariant(const char* val, const wxString& name) |
894 | { | |
895 | m_data = new wxVariantDataString(wxString(val)); | |
896 | m_name = name; | |
897 | } | |
898 | ||
899 | wxVariant::wxVariant(const wchar_t* val, const wxString& name) | |
900 | { | |
901 | m_data = new wxVariantDataString(wxString(val)); | |
902 | m_name = name; | |
903 | } | |
904 | ||
905 | wxVariant::wxVariant(const wxCStrData& val, const wxString& name) | |
906 | { | |
907 | m_data = new wxVariantDataString(val.AsString()); | |
908 | m_name = name; | |
909 | } | |
910 | ||
911 | wxVariant::wxVariant(const wxCharBuffer& val, const wxString& name) | |
912 | { | |
913 | m_data = new wxVariantDataString(wxString(val)); | |
914 | m_name = name; | |
915 | } | |
916 | ||
917 | wxVariant::wxVariant(const wxWCharBuffer& val, const wxString& name) | |
a0a302dc | 918 | { |
2562c823 RR |
919 | m_data = new wxVariantDataString(wxString(val)); |
920 | m_name = name; | |
921 | } | |
a0a302dc | 922 | |
2562c823 RR |
923 | bool wxVariant::operator== (const wxString& value) const |
924 | { | |
925 | wxString thisValue; | |
926 | if (!Convert(&thisValue)) | |
927 | return false; | |
a0a302dc | 928 | |
2562c823 | 929 | return value == thisValue; |
a0a302dc JS |
930 | } |
931 | ||
2562c823 | 932 | bool wxVariant::operator!= (const wxString& value) const |
a0a302dc | 933 | { |
2562c823 | 934 | return (!((*this) == value)); |
a0a302dc JS |
935 | } |
936 | ||
af717fa8 | 937 | wxVariant& wxVariant::operator= (const wxString& value) |
a0a302dc | 938 | { |
2562c823 RR |
939 | if (GetType() == wxT("string") && |
940 | m_data->GetRefCount() == 1) | |
941 | { | |
942 | ((wxVariantDataString*)GetData())->SetValue(value); | |
943 | } | |
944 | else | |
945 | { | |
946 | UnRef(); | |
947 | m_data = new wxVariantDataString(value); | |
948 | } | |
af717fa8 | 949 | return *this; |
a0a302dc JS |
950 | } |
951 | ||
2562c823 | 952 | wxString wxVariant::GetString() const |
a0a302dc | 953 | { |
2562c823 RR |
954 | wxString value; |
955 | if (!Convert(& value)) | |
956 | { | |
957 | wxFAIL_MSG(wxT("Could not convert to a string")); | |
958 | } | |
a0a302dc | 959 | |
2562c823 | 960 | return value; |
a0a302dc JS |
961 | } |
962 | ||
2562c823 RR |
963 | // ---------------------------------------------------------------------------- |
964 | // wxVariantDataWxObjectPtr | |
965 | // ---------------------------------------------------------------------------- | |
cf6ae290 RG |
966 | |
967 | class wxVariantDataWxObjectPtr: public wxVariantData | |
968 | { | |
cf6ae290 RG |
969 | public: |
970 | wxVariantDataWxObjectPtr() { } | |
971 | wxVariantDataWxObjectPtr(wxObject* value) { m_value = value; } | |
972 | ||
973 | inline wxObject* GetValue() const { return m_value; } | |
974 | inline void SetValue(wxObject* value) { m_value = value; } | |
975 | ||
cf6ae290 RG |
976 | virtual bool Eq(wxVariantData& data) const; |
977 | #if wxUSE_STD_IOSTREAM | |
978 | virtual bool Write(wxSTD ostream& str) const; | |
979 | #endif | |
980 | virtual bool Write(wxString& str) const; | |
981 | #if wxUSE_STD_IOSTREAM | |
982 | virtual bool Read(wxSTD istream& str); | |
983 | #endif | |
984 | virtual bool Read(wxString& str); | |
985 | virtual wxString GetType() const ; | |
c8058a09 | 986 | virtual wxVariantData* Clone() const { return new wxVariantDataWxObjectPtr(m_value); } |
cf6ae290 | 987 | |
3586d10f | 988 | virtual wxClassInfo* GetValueClassInfo(); |
c8058a09 | 989 | |
cf6ae290 RG |
990 | protected: |
991 | wxObject* m_value; | |
cf6ae290 RG |
992 | }; |
993 | ||
cf6ae290 RG |
994 | bool wxVariantDataWxObjectPtr::Eq(wxVariantData& data) const |
995 | { | |
3586d10f | 996 | wxASSERT_MSG( data.GetType() == GetType(), wxT("wxVariantDataWxObjectPtr::Eq: argument mismatch") ); |
cf6ae290 RG |
997 | |
998 | wxVariantDataWxObjectPtr& otherData = (wxVariantDataWxObjectPtr&) data; | |
999 | ||
1000 | return (otherData.m_value == m_value); | |
1001 | } | |
1002 | ||
1003 | wxString wxVariantDataWxObjectPtr::GetType() const | |
1004 | { | |
3586d10f | 1005 | wxString returnVal(wxT("wxObject*")); |
c8058a09 | 1006 | |
3586d10f RR |
1007 | if (m_value) |
1008 | { | |
cf6ae290 | 1009 | returnVal = m_value->GetClassInfo()->GetClassName(); |
3586d10f | 1010 | returnVal += wxT("*"); |
cf6ae290 | 1011 | } |
c8058a09 | 1012 | |
cf6ae290 RG |
1013 | return returnVal; |
1014 | } | |
1015 | ||
1016 | wxClassInfo* wxVariantDataWxObjectPtr::GetValueClassInfo() | |
1017 | { | |
1018 | wxClassInfo* returnVal=NULL; | |
cab1a605 WS |
1019 | |
1020 | if (m_value) returnVal = m_value->GetClassInfo(); | |
cf6ae290 RG |
1021 | |
1022 | return returnVal; | |
1023 | } | |
1024 | ||
1025 | #if wxUSE_STD_IOSTREAM | |
1026 | bool wxVariantDataWxObjectPtr::Write(wxSTD ostream& str) const | |
1027 | { | |
1028 | wxString s; | |
1029 | Write(s); | |
1030 | str << (const char*) s.mb_str(); | |
cab1a605 | 1031 | return true; |
cf6ae290 RG |
1032 | } |
1033 | #endif | |
1034 | ||
1035 | bool wxVariantDataWxObjectPtr::Write(wxString& str) const | |
1036 | { | |
5c33522f | 1037 | str.Printf(wxT("%s(%p)"), GetType().c_str(), static_cast<void*>(m_value)); |
cab1a605 | 1038 | return true; |
cf6ae290 RG |
1039 | } |
1040 | ||
1041 | #if wxUSE_STD_IOSTREAM | |
1042 | bool wxVariantDataWxObjectPtr::Read(wxSTD istream& WXUNUSED(str)) | |
1043 | { | |
1044 | // Not implemented | |
cab1a605 | 1045 | return false; |
cf6ae290 RG |
1046 | } |
1047 | #endif | |
1048 | ||
1049 | bool wxVariantDataWxObjectPtr::Read(wxString& WXUNUSED(str)) | |
1050 | { | |
1051 | // Not implemented | |
cab1a605 | 1052 | return false; |
cf6ae290 RG |
1053 | } |
1054 | ||
2562c823 | 1055 | // wxVariant |
cf6ae290 | 1056 | |
2562c823 RR |
1057 | wxVariant::wxVariant( wxObject* val, const wxString& name) |
1058 | { | |
1059 | m_data = new wxVariantDataWxObjectPtr(val); | |
1060 | m_name = name; | |
1061 | } | |
edca7a82 | 1062 | |
2562c823 RR |
1063 | bool wxVariant::operator== (wxObject* value) const |
1064 | { | |
1065 | return (value == ((wxVariantDataWxObjectPtr*)GetData())->GetValue()); | |
1066 | } | |
e2b87f38 | 1067 | |
2562c823 | 1068 | bool wxVariant::operator!= (wxObject* value) const |
edca7a82 | 1069 | { |
2562c823 RR |
1070 | return (!((*this) == (wxObject*) value)); |
1071 | } | |
1072 | ||
1073 | void wxVariant::operator= (wxObject* value) | |
1074 | { | |
1075 | UnRef(); | |
1076 | m_data = new wxVariantDataWxObjectPtr(value); | |
1077 | } | |
edca7a82 | 1078 | |
2562c823 RR |
1079 | wxObject* wxVariant::GetWxObjectPtr() const |
1080 | { | |
2562c823 RR |
1081 | return (wxObject*) ((wxVariantDataWxObjectPtr*) m_data)->GetValue(); |
1082 | } | |
1083 | ||
1084 | // ---------------------------------------------------------------------------- | |
1085 | // wxVariantDataVoidPtr | |
1086 | // ---------------------------------------------------------------------------- | |
1087 | ||
1088 | class wxVariantDataVoidPtr: public wxVariantData | |
1089 | { | |
edca7a82 | 1090 | public: |
2562c823 RR |
1091 | wxVariantDataVoidPtr() { } |
1092 | wxVariantDataVoidPtr(void* value) { m_value = value; } | |
edca7a82 | 1093 | |
2562c823 RR |
1094 | inline void* GetValue() const { return m_value; } |
1095 | inline void SetValue(void* value) { m_value = value; } | |
edca7a82 | 1096 | |
edca7a82 GT |
1097 | virtual bool Eq(wxVariantData& data) const; |
1098 | #if wxUSE_STD_IOSTREAM | |
2b004197 | 1099 | virtual bool Write(wxSTD ostream& str) const; |
edca7a82 GT |
1100 | #endif |
1101 | virtual bool Write(wxString& str) const; | |
1102 | #if wxUSE_STD_IOSTREAM | |
2b004197 | 1103 | virtual bool Read(wxSTD istream& str); |
edca7a82 GT |
1104 | #endif |
1105 | virtual bool Read(wxString& str); | |
47b378bd | 1106 | virtual wxString GetType() const { return wxT("void*"); } |
c8058a09 | 1107 | virtual wxVariantData* Clone() const { return new wxVariantDataVoidPtr(m_value); } |
edca7a82 GT |
1108 | |
1109 | protected: | |
2562c823 | 1110 | void* m_value; |
2562c823 | 1111 | }; |
edca7a82 | 1112 | |
2562c823 | 1113 | bool wxVariantDataVoidPtr::Eq(wxVariantData& data) const |
edca7a82 | 1114 | { |
3586d10f | 1115 | wxASSERT_MSG( data.GetType() == wxT("void*"), wxT("wxVariantDataVoidPtr::Eq: argument mismatch") ); |
edca7a82 | 1116 | |
2562c823 | 1117 | wxVariantDataVoidPtr& otherData = (wxVariantDataVoidPtr&) data; |
edca7a82 | 1118 | |
2562c823 | 1119 | return (otherData.m_value == m_value); |
edca7a82 GT |
1120 | } |
1121 | ||
2562c823 RR |
1122 | #if wxUSE_STD_IOSTREAM |
1123 | bool wxVariantDataVoidPtr::Write(wxSTD ostream& str) const | |
edca7a82 | 1124 | { |
2562c823 RR |
1125 | wxString s; |
1126 | Write(s); | |
1127 | str << (const char*) s.mb_str(); | |
1128 | return true; | |
edca7a82 | 1129 | } |
2562c823 | 1130 | #endif |
edca7a82 | 1131 | |
2562c823 RR |
1132 | bool wxVariantDataVoidPtr::Write(wxString& str) const |
1133 | { | |
1134 | str.Printf(wxT("%p"), m_value); | |
1135 | return true; | |
1136 | } | |
edca7a82 GT |
1137 | |
1138 | #if wxUSE_STD_IOSTREAM | |
2562c823 | 1139 | bool wxVariantDataVoidPtr::Read(wxSTD istream& WXUNUSED(str)) |
edca7a82 GT |
1140 | { |
1141 | // Not implemented | |
cab1a605 | 1142 | return false; |
edca7a82 GT |
1143 | } |
1144 | #endif | |
1145 | ||
2562c823 | 1146 | bool wxVariantDataVoidPtr::Read(wxString& WXUNUSED(str)) |
edca7a82 | 1147 | { |
2562c823 RR |
1148 | // Not implemented |
1149 | return false; | |
edca7a82 GT |
1150 | } |
1151 | ||
2562c823 | 1152 | // wxVariant |
edca7a82 | 1153 | |
2562c823 | 1154 | wxVariant::wxVariant( void* val, const wxString& name) |
edca7a82 | 1155 | { |
2562c823 RR |
1156 | m_data = new wxVariantDataVoidPtr(val); |
1157 | m_name = name; | |
1158 | } | |
1159 | ||
1160 | bool wxVariant::operator== (void* value) const | |
1161 | { | |
1162 | return (value == ((wxVariantDataVoidPtr*)GetData())->GetValue()); | |
edca7a82 | 1163 | } |
edca7a82 | 1164 | |
2562c823 RR |
1165 | bool wxVariant::operator!= (void* value) const |
1166 | { | |
1167 | return (!((*this) == (void*) value)); | |
1168 | } | |
edca7a82 | 1169 | |
2562c823 | 1170 | void wxVariant::operator= (void* value) |
edca7a82 | 1171 | { |
3586d10f | 1172 | if (GetType() == wxT("void*") && (m_data->GetRefCount() == 1)) |
2562c823 RR |
1173 | { |
1174 | ((wxVariantDataVoidPtr*)GetData())->SetValue(value); | |
1175 | } | |
1176 | else | |
1177 | { | |
1178 | UnRef(); | |
1179 | m_data = new wxVariantDataVoidPtr(value); | |
1180 | } | |
edca7a82 GT |
1181 | } |
1182 | ||
2562c823 RR |
1183 | void* wxVariant::GetVoidPtr() const |
1184 | { | |
1185 | wxASSERT( (GetType() == wxT("void*")) ); | |
1186 | ||
1187 | return (void*) ((wxVariantDataVoidPtr*) m_data)->GetValue(); | |
1188 | } | |
e2b87f38 | 1189 | |
fb42d7c3 | 1190 | // ---------------------------------------------------------------------------- |
2562c823 | 1191 | // wxVariantDataDateTime |
fb42d7c3 VZ |
1192 | // ---------------------------------------------------------------------------- |
1193 | ||
2562c823 RR |
1194 | #if wxUSE_DATETIME |
1195 | ||
1196 | class wxVariantDataDateTime: public wxVariantData | |
fb42d7c3 VZ |
1197 | { |
1198 | public: | |
2562c823 RR |
1199 | wxVariantDataDateTime() { } |
1200 | wxVariantDataDateTime(const wxDateTime& value) { m_value = value; } | |
fb42d7c3 | 1201 | |
2562c823 RR |
1202 | inline wxDateTime GetValue() const { return m_value; } |
1203 | inline void SetValue(const wxDateTime& value) { m_value = value; } | |
fb42d7c3 | 1204 | |
fb42d7c3 VZ |
1205 | virtual bool Eq(wxVariantData& data) const; |
1206 | #if wxUSE_STD_IOSTREAM | |
1207 | virtual bool Write(wxSTD ostream& str) const; | |
1208 | #endif | |
1209 | virtual bool Write(wxString& str) const; | |
1210 | #if wxUSE_STD_IOSTREAM | |
1211 | virtual bool Read(wxSTD istream& str); | |
1212 | #endif | |
1213 | virtual bool Read(wxString& str); | |
47b378bd | 1214 | virtual wxString GetType() const { return wxT("datetime"); } |
c8058a09 | 1215 | virtual wxVariantData* Clone() const { return new wxVariantDataDateTime(m_value); } |
fb42d7c3 VZ |
1216 | |
1217 | protected: | |
2562c823 | 1218 | wxDateTime m_value; |
fb42d7c3 VZ |
1219 | }; |
1220 | ||
fb42d7c3 | 1221 | |
2562c823 | 1222 | bool wxVariantDataDateTime::Eq(wxVariantData& data) const |
fb42d7c3 | 1223 | { |
2562c823 | 1224 | wxASSERT_MSG( (data.GetType() == wxT("datetime")), wxT("wxVariantDataDateTime::Eq: argument mismatch") ); |
fb42d7c3 | 1225 | |
2562c823 | 1226 | wxVariantDataDateTime& otherData = (wxVariantDataDateTime&) data; |
fb42d7c3 | 1227 | |
2562c823 | 1228 | return (otherData.m_value == m_value); |
fb42d7c3 VZ |
1229 | } |
1230 | ||
1231 | ||
1232 | #if wxUSE_STD_IOSTREAM | |
2562c823 | 1233 | bool wxVariantDataDateTime::Write(wxSTD ostream& str) const |
fb42d7c3 | 1234 | { |
2562c823 RR |
1235 | wxString value; |
1236 | Write( value ); | |
1237 | str << value.c_str(); | |
1238 | return true; | |
fb42d7c3 VZ |
1239 | } |
1240 | #endif | |
1241 | ||
1242 | ||
2562c823 | 1243 | bool wxVariantDataDateTime::Write(wxString& str) const |
fb42d7c3 | 1244 | { |
2562c823 | 1245 | str = m_value.Format(); |
cab1a605 | 1246 | return true; |
fb42d7c3 VZ |
1247 | } |
1248 | ||
1249 | ||
1250 | #if wxUSE_STD_IOSTREAM | |
2562c823 | 1251 | bool wxVariantDataDateTime::Read(wxSTD istream& WXUNUSED(str)) |
fb42d7c3 VZ |
1252 | { |
1253 | // Not implemented | |
cab1a605 | 1254 | return false; |
fb42d7c3 VZ |
1255 | } |
1256 | #endif | |
1257 | ||
1258 | ||
2562c823 | 1259 | bool wxVariantDataDateTime::Read(wxString& str) |
fb42d7c3 | 1260 | { |
52de37c7 | 1261 | if(! m_value.ParseDateTime(str.c_str()/*FIXME-UTF8*/)) |
2562c823 | 1262 | return false; |
cab1a605 | 1263 | return true; |
fb42d7c3 VZ |
1264 | } |
1265 | ||
2562c823 | 1266 | // wxVariant |
fb42d7c3 | 1267 | |
ff818ab8 RG |
1268 | wxVariant::wxVariant(const wxDateTime& val, const wxString& name) // Date |
1269 | { | |
cab1a605 WS |
1270 | m_data = new wxVariantDataDateTime(val); |
1271 | m_name = name; | |
ff818ab8 | 1272 | } |
ff818ab8 | 1273 | |
2562c823 | 1274 | bool wxVariant::operator== (const wxDateTime& value) const |
fb42d7c3 | 1275 | { |
2562c823 RR |
1276 | wxDateTime thisValue; |
1277 | if (!Convert(&thisValue)) | |
1278 | return false; | |
1279 | ||
1280 | return value.IsEqualTo(thisValue); | |
fb42d7c3 | 1281 | } |
edca7a82 | 1282 | |
2562c823 | 1283 | bool wxVariant::operator!= (const wxDateTime& value) const |
341287bf | 1284 | { |
2562c823 RR |
1285 | return (!((*this) == value)); |
1286 | } | |
1287 | ||
1288 | void wxVariant::operator= (const wxDateTime& value) | |
1289 | { | |
1290 | if (GetType() == wxT("datetime") && | |
1291 | m_data->GetRefCount() == 1) | |
341287bf | 1292 | { |
2562c823 | 1293 | ((wxVariantDataDateTime*)GetData())->SetValue(value); |
341287bf | 1294 | } |
4fabb575 | 1295 | else |
2562c823 RR |
1296 | { |
1297 | UnRef(); | |
1298 | m_data = new wxVariantDataDateTime(value); | |
1299 | } | |
341287bf JS |
1300 | } |
1301 | ||
2562c823 RR |
1302 | wxDateTime wxVariant::GetDateTime() const |
1303 | { | |
1304 | wxDateTime value; | |
1305 | if (!Convert(& value)) | |
341287bf | 1306 | { |
2562c823 | 1307 | wxFAIL_MSG(wxT("Could not convert to a datetime")); |
341287bf | 1308 | } |
3d8daa0f | 1309 | |
2562c823 | 1310 | return value; |
341287bf JS |
1311 | } |
1312 | ||
2562c823 | 1313 | #endif // wxUSE_DATETIME |
341287bf | 1314 | |
2562c823 RR |
1315 | // ---------------------------------------------------------------------------- |
1316 | // wxVariantDataArrayString | |
1317 | // ---------------------------------------------------------------------------- | |
1318 | ||
1319 | class wxVariantDataArrayString: public wxVariantData | |
341287bf | 1320 | { |
2562c823 RR |
1321 | public: |
1322 | wxVariantDataArrayString() { } | |
1323 | wxVariantDataArrayString(const wxArrayString& value) { m_value = value; } | |
341287bf | 1324 | |
2562c823 RR |
1325 | wxArrayString GetValue() const { return m_value; } |
1326 | void SetValue(const wxArrayString& value) { m_value = value; } | |
341287bf | 1327 | |
2562c823 RR |
1328 | virtual bool Eq(wxVariantData& data) const; |
1329 | #if wxUSE_STD_IOSTREAM | |
1330 | virtual bool Write(wxSTD ostream& str) const; | |
1331 | #endif | |
1332 | virtual bool Write(wxString& str) const; | |
1333 | #if wxUSE_STD_IOSTREAM | |
1334 | virtual bool Read(wxSTD istream& str); | |
1335 | #endif | |
1336 | virtual bool Read(wxString& str); | |
47b378bd | 1337 | virtual wxString GetType() const { return wxT("arrstring"); } |
c8058a09 | 1338 | virtual wxVariantData* Clone() const { return new wxVariantDataArrayString(m_value); } |
341287bf | 1339 | |
2562c823 RR |
1340 | protected: |
1341 | wxArrayString m_value; | |
2562c823 | 1342 | }; |
bc14c8b2 | 1343 | |
2562c823 | 1344 | bool wxVariantDataArrayString::Eq(wxVariantData& data) const |
341287bf | 1345 | { |
2562c823 | 1346 | wxASSERT_MSG( data.GetType() == GetType(), wxT("wxVariantDataArrayString::Eq: argument mismatch") ); |
341287bf | 1347 | |
2562c823 | 1348 | wxVariantDataArrayString& otherData = (wxVariantDataArrayString&) data; |
341287bf | 1349 | |
2562c823 | 1350 | return otherData.m_value == m_value; |
341287bf JS |
1351 | } |
1352 | ||
2562c823 RR |
1353 | #if wxUSE_STD_IOSTREAM |
1354 | bool wxVariantDataArrayString::Write(wxSTD ostream& WXUNUSED(str)) const | |
341287bf | 1355 | { |
2562c823 RR |
1356 | // Not implemented |
1357 | return false; | |
341287bf | 1358 | } |
2562c823 | 1359 | #endif |
341287bf | 1360 | |
2562c823 | 1361 | bool wxVariantDataArrayString::Write(wxString& str) const |
341287bf | 1362 | { |
2562c823 RR |
1363 | size_t count = m_value.GetCount(); |
1364 | for ( size_t n = 0; n < count; n++ ) | |
341287bf | 1365 | { |
2562c823 RR |
1366 | if ( n ) |
1367 | str += _T(';'); | |
1368 | ||
1369 | str += m_value[n]; | |
341287bf | 1370 | } |
341287bf | 1371 | |
2562c823 | 1372 | return true; |
341287bf JS |
1373 | } |
1374 | ||
2562c823 RR |
1375 | |
1376 | #if wxUSE_STD_IOSTREAM | |
1377 | bool wxVariantDataArrayString::Read(wxSTD istream& WXUNUSED(str)) | |
341287bf | 1378 | { |
2562c823 RR |
1379 | // Not implemented |
1380 | return false; | |
341287bf | 1381 | } |
2562c823 | 1382 | #endif |
341287bf | 1383 | |
2562c823 RR |
1384 | |
1385 | bool wxVariantDataArrayString::Read(wxString& str) | |
341287bf | 1386 | { |
2562c823 RR |
1387 | wxStringTokenizer tk(str, _T(";")); |
1388 | while ( tk.HasMoreTokens() ) | |
341287bf | 1389 | { |
2562c823 | 1390 | m_value.Add(tk.GetNextToken()); |
341287bf | 1391 | } |
341287bf | 1392 | |
2562c823 | 1393 | return true; |
341287bf JS |
1394 | } |
1395 | ||
2562c823 RR |
1396 | // wxVariant |
1397 | ||
1398 | wxVariant::wxVariant(const wxArrayString& val, const wxString& name) // Strings | |
1399 | { | |
1400 | m_data = new wxVariantDataArrayString(val); | |
1401 | m_name = name; | |
341287bf JS |
1402 | } |
1403 | ||
2562c823 | 1404 | bool wxVariant::operator==(const wxArrayString& WXUNUSED(value)) const |
341287bf | 1405 | { |
2562c823 | 1406 | wxFAIL_MSG( _T("TODO") ); |
f6bcfd97 | 1407 | |
2562c823 | 1408 | return false; |
341287bf JS |
1409 | } |
1410 | ||
2562c823 | 1411 | bool wxVariant::operator!=(const wxArrayString& value) const |
341287bf | 1412 | { |
2562c823 | 1413 | return !(*this == value); |
341287bf JS |
1414 | } |
1415 | ||
2562c823 | 1416 | void wxVariant::operator=(const wxArrayString& value) |
341287bf | 1417 | { |
2562c823 RR |
1418 | if (GetType() == wxT("arrstring") && |
1419 | m_data->GetRefCount() == 1) | |
341287bf | 1420 | { |
2562c823 | 1421 | ((wxVariantDataArrayString *)GetData())->SetValue(value); |
341287bf JS |
1422 | } |
1423 | else | |
1424 | { | |
2562c823 RR |
1425 | UnRef(); |
1426 | m_data = new wxVariantDataArrayString(value); | |
341287bf JS |
1427 | } |
1428 | } | |
1429 | ||
2562c823 | 1430 | wxArrayString wxVariant::GetArrayString() const |
341287bf | 1431 | { |
2562c823 RR |
1432 | if ( GetType() == wxT("arrstring") ) |
1433 | return ((wxVariantDataArrayString *)GetData())->GetValue(); | |
1434 | ||
1435 | return wxArrayString(); | |
341287bf JS |
1436 | } |
1437 | ||
2562c823 RR |
1438 | // ---------------------------------------------------------------------------- |
1439 | // wxVariantDataList | |
1440 | // ---------------------------------------------------------------------------- | |
2c3a1064 | 1441 | |
2562c823 | 1442 | class WXDLLIMPEXP_BASE wxVariantDataList: public wxVariantData |
341287bf | 1443 | { |
2562c823 RR |
1444 | public: |
1445 | wxVariantDataList() {} | |
9a0a58f5 | 1446 | wxVariantDataList(const wxVariantList& list); |
2562c823 | 1447 | virtual ~wxVariantDataList(); |
341287bf | 1448 | |
9a0a58f5 RR |
1449 | wxVariantList& GetValue() { return m_value; } |
1450 | void SetValue(const wxVariantList& value) ; | |
341287bf | 1451 | |
2562c823 RR |
1452 | virtual bool Eq(wxVariantData& data) const; |
1453 | #if wxUSE_STD_IOSTREAM | |
1454 | virtual bool Write(wxSTD ostream& str) const; | |
1455 | #endif | |
1456 | virtual bool Write(wxString& str) const; | |
1457 | #if wxUSE_STD_IOSTREAM | |
1458 | virtual bool Read(wxSTD istream& str); | |
1459 | #endif | |
1460 | virtual bool Read(wxString& str); | |
47b378bd | 1461 | virtual wxString GetType() const { return wxT("list"); } |
52e81242 | 1462 | |
2562c823 | 1463 | void Clear(); |
341287bf | 1464 | |
c8058a09 | 1465 | wxVariantData* Clone() const { return new wxVariantDataList(m_value); } |
2562c823 | 1466 | protected: |
9a0a58f5 | 1467 | wxVariantList m_value; |
2562c823 | 1468 | }; |
341287bf | 1469 | |
9a0a58f5 | 1470 | wxVariantDataList::wxVariantDataList(const wxVariantList& list) |
341287bf | 1471 | { |
2562c823 | 1472 | SetValue(list); |
341287bf JS |
1473 | } |
1474 | ||
2562c823 | 1475 | wxVariantDataList::~wxVariantDataList() |
341287bf | 1476 | { |
2562c823 | 1477 | Clear(); |
341287bf JS |
1478 | } |
1479 | ||
9a0a58f5 | 1480 | void wxVariantDataList::SetValue(const wxVariantList& value) |
341287bf | 1481 | { |
2562c823 | 1482 | Clear(); |
9a0a58f5 | 1483 | wxVariantList::compatibility_iterator node = value.GetFirst(); |
2562c823 | 1484 | while (node) |
341287bf | 1485 | { |
9a0a58f5 | 1486 | wxVariant* var = node->GetData(); |
2562c823 RR |
1487 | m_value.Append(new wxVariant(*var)); |
1488 | node = node->GetNext(); | |
341287bf | 1489 | } |
2562c823 RR |
1490 | } |
1491 | ||
1492 | void wxVariantDataList::Clear() | |
1493 | { | |
9a0a58f5 | 1494 | wxVariantList::compatibility_iterator node = m_value.GetFirst(); |
2562c823 | 1495 | while (node) |
341287bf | 1496 | { |
9a0a58f5 | 1497 | wxVariant* var = node->GetData(); |
2562c823 RR |
1498 | delete var; |
1499 | node = node->GetNext(); | |
341287bf | 1500 | } |
2562c823 | 1501 | m_value.Clear(); |
341287bf JS |
1502 | } |
1503 | ||
2562c823 | 1504 | bool wxVariantDataList::Eq(wxVariantData& data) const |
a0a302dc | 1505 | { |
2562c823 RR |
1506 | wxASSERT_MSG( (data.GetType() == wxT("list")), wxT("wxVariantDataList::Eq: argument mismatch") ); |
1507 | ||
1508 | wxVariantDataList& listData = (wxVariantDataList&) data; | |
9a0a58f5 RR |
1509 | wxVariantList::compatibility_iterator node1 = m_value.GetFirst(); |
1510 | wxVariantList::compatibility_iterator node2 = listData.GetValue().GetFirst(); | |
2562c823 RR |
1511 | while (node1 && node2) |
1512 | { | |
9a0a58f5 RR |
1513 | wxVariant* var1 = node1->GetData(); |
1514 | wxVariant* var2 = node2->GetData(); | |
2562c823 RR |
1515 | if ((*var1) != (*var2)) |
1516 | return false; | |
1517 | node1 = node1->GetNext(); | |
1518 | node2 = node2->GetNext(); | |
1519 | } | |
1520 | if (node1 || node2) return false; | |
1521 | return true; | |
a0a302dc JS |
1522 | } |
1523 | ||
2562c823 RR |
1524 | #if wxUSE_STD_IOSTREAM |
1525 | bool wxVariantDataList::Write(wxSTD ostream& str) const | |
a0a302dc | 1526 | { |
2562c823 RR |
1527 | wxString s; |
1528 | Write(s); | |
1529 | str << (const char*) s.mb_str(); | |
1530 | return true; | |
a0a302dc | 1531 | } |
2562c823 | 1532 | #endif |
a0a302dc | 1533 | |
2562c823 | 1534 | bool wxVariantDataList::Write(wxString& str) const |
a0a302dc | 1535 | { |
2562c823 | 1536 | str = wxEmptyString; |
9a0a58f5 | 1537 | wxVariantList::compatibility_iterator node = m_value.GetFirst(); |
2562c823 | 1538 | while (node) |
a0a302dc | 1539 | { |
9a0a58f5 | 1540 | wxVariant* var = node->GetData(); |
2562c823 RR |
1541 | if (node != m_value.GetFirst()) |
1542 | str += wxT(" "); | |
1543 | wxString str1; | |
1544 | str += var->MakeString(); | |
1545 | node = node->GetNext(); | |
a0a302dc | 1546 | } |
2562c823 RR |
1547 | |
1548 | return true; | |
a0a302dc | 1549 | } |
2f620946 | 1550 | |
2562c823 RR |
1551 | #if wxUSE_STD_IOSTREAM |
1552 | bool wxVariantDataList::Read(wxSTD istream& WXUNUSED(str)) | |
2f620946 | 1553 | { |
2562c823 RR |
1554 | wxFAIL_MSG(wxT("Unimplemented")); |
1555 | // TODO | |
1556 | return false; | |
2f620946 | 1557 | } |
2562c823 | 1558 | #endif |
2f620946 | 1559 | |
2562c823 | 1560 | bool wxVariantDataList::Read(wxString& WXUNUSED(str)) |
2f620946 | 1561 | { |
2562c823 RR |
1562 | wxFAIL_MSG(wxT("Unimplemented")); |
1563 | // TODO | |
1564 | return false; | |
2f620946 RR |
1565 | } |
1566 | ||
2562c823 RR |
1567 | // wxVariant |
1568 | ||
9a0a58f5 | 1569 | wxVariant::wxVariant(const wxVariantList& val, const wxString& name) // List of variants |
2f620946 | 1570 | { |
2562c823 RR |
1571 | m_data = new wxVariantDataList(val); |
1572 | m_name = name; | |
2f620946 | 1573 | } |
341287bf | 1574 | |
9a0a58f5 | 1575 | bool wxVariant::operator== (const wxVariantList& value) const |
edca7a82 | 1576 | { |
2562c823 | 1577 | wxASSERT_MSG( (GetType() == wxT("list")), wxT("Invalid type for == operator") ); |
edca7a82 | 1578 | |
2562c823 RR |
1579 | wxVariantDataList other(value); |
1580 | return (GetData()->Eq(other)); | |
edca7a82 GT |
1581 | } |
1582 | ||
9a0a58f5 | 1583 | bool wxVariant::operator!= (const wxVariantList& value) const |
edca7a82 GT |
1584 | { |
1585 | return (!((*this) == value)); | |
1586 | } | |
1587 | ||
9a0a58f5 | 1588 | void wxVariant::operator= (const wxVariantList& value) |
edca7a82 | 1589 | { |
2562c823 RR |
1590 | if (GetType() == wxT("list") && |
1591 | m_data->GetRefCount() == 1) | |
edca7a82 | 1592 | { |
2562c823 | 1593 | ((wxVariantDataList*)GetData())->SetValue(value); |
edca7a82 GT |
1594 | } |
1595 | else | |
1596 | { | |
2562c823 RR |
1597 | UnRef(); |
1598 | m_data = new wxVariantDataList(value); | |
edca7a82 GT |
1599 | } |
1600 | } | |
1601 | ||
9a0a58f5 | 1602 | wxVariantList& wxVariant::GetList() const |
edca7a82 | 1603 | { |
2562c823 | 1604 | wxASSERT( (GetType() == wxT("list")) ); |
edca7a82 | 1605 | |
9a0a58f5 | 1606 | return (wxVariantList&) ((wxVariantDataList*) m_data)->GetValue(); |
2562c823 | 1607 | } |
edca7a82 | 1608 | |
2562c823 RR |
1609 | // Make empty list |
1610 | void wxVariant::NullList() | |
edca7a82 | 1611 | { |
2562c823 | 1612 | SetData(new wxVariantDataList()); |
edca7a82 GT |
1613 | } |
1614 | ||
2562c823 RR |
1615 | // Append to list |
1616 | void wxVariant::Append(const wxVariant& value) | |
edca7a82 | 1617 | { |
9a0a58f5 | 1618 | wxVariantList& list = GetList(); |
2562c823 RR |
1619 | |
1620 | list.Append(new wxVariant(value)); | |
edca7a82 GT |
1621 | } |
1622 | ||
2562c823 RR |
1623 | // Insert at front of list |
1624 | void wxVariant::Insert(const wxVariant& value) | |
1625 | { | |
9a0a58f5 | 1626 | wxVariantList& list = GetList(); |
fb42d7c3 | 1627 | |
2562c823 RR |
1628 | list.Insert(new wxVariant(value)); |
1629 | } | |
1630 | ||
1631 | // Returns true if the variant is a member of the list | |
1632 | bool wxVariant::Member(const wxVariant& value) const | |
fb42d7c3 | 1633 | { |
9a0a58f5 | 1634 | wxVariantList& list = GetList(); |
fb42d7c3 | 1635 | |
9a0a58f5 | 1636 | wxVariantList::compatibility_iterator node = list.GetFirst(); |
2562c823 RR |
1637 | while (node) |
1638 | { | |
9a0a58f5 | 1639 | wxVariant* other = node->GetData(); |
2562c823 RR |
1640 | if (value == *other) |
1641 | return true; | |
1642 | node = node->GetNext(); | |
1643 | } | |
cab1a605 | 1644 | return false; |
fb42d7c3 VZ |
1645 | } |
1646 | ||
2562c823 RR |
1647 | // Deletes the nth element of the list |
1648 | bool wxVariant::Delete(size_t item) | |
fb42d7c3 | 1649 | { |
9a0a58f5 | 1650 | wxVariantList& list = GetList(); |
2562c823 RR |
1651 | |
1652 | wxASSERT_MSG( (item < list.GetCount()), wxT("Invalid index to Delete") ); | |
9a0a58f5 RR |
1653 | wxVariantList::compatibility_iterator node = list.Item(item); |
1654 | wxVariant* variant = node->GetData(); | |
2562c823 RR |
1655 | delete variant; |
1656 | list.Erase(node); | |
1657 | return true; | |
fb42d7c3 VZ |
1658 | } |
1659 | ||
2562c823 RR |
1660 | // Clear list |
1661 | void wxVariant::ClearList() | |
fb42d7c3 | 1662 | { |
2562c823 | 1663 | if (!IsNull() && (GetType() == wxT("list"))) |
fb42d7c3 | 1664 | { |
2562c823 | 1665 | ((wxVariantDataList*) m_data)->Clear(); |
fb42d7c3 VZ |
1666 | } |
1667 | else | |
1668 | { | |
2562c823 RR |
1669 | if (!GetType().IsSameAs(wxT("list"))) |
1670 | UnRef(); | |
fb42d7c3 | 1671 | |
2562c823 RR |
1672 | m_data = new wxVariantDataList; |
1673 | } | |
fb42d7c3 VZ |
1674 | } |
1675 | ||
60acae80 RR |
1676 | // Treat a list variant as an array |
1677 | wxVariant wxVariant::operator[] (size_t idx) const | |
1678 | { | |
60acae80 | 1679 | wxASSERT_MSG( GetType() == wxT("list"), wxT("Invalid type for array operator") ); |
60acae80 RR |
1680 | |
1681 | if (GetType() == wxT("list")) | |
1682 | { | |
1683 | wxVariantDataList* data = (wxVariantDataList*) m_data; | |
1684 | wxASSERT_MSG( (idx < data->GetValue().GetCount()), wxT("Invalid index for array") ); | |
9a0a58f5 | 1685 | return *(data->GetValue().Item(idx)->GetData()); |
60acae80 | 1686 | } |
60acae80 RR |
1687 | return wxNullVariant; |
1688 | } | |
1689 | ||
1690 | wxVariant& wxVariant::operator[] (size_t idx) | |
1691 | { | |
1692 | // We can't return a reference to a variant for a string list, since the string | |
1693 | // is actually stored as a char*, not a variant. | |
1694 | ||
1695 | wxASSERT_MSG( (GetType() == wxT("list")), wxT("Invalid type for array operator") ); | |
1696 | ||
1697 | wxVariantDataList* data = (wxVariantDataList*) m_data; | |
1698 | wxASSERT_MSG( (idx < data->GetValue().GetCount()), wxT("Invalid index for array") ); | |
1699 | ||
9a0a58f5 | 1700 | return * (data->GetValue().Item(idx)->GetData()); |
60acae80 RR |
1701 | } |
1702 | ||
1703 | // Return the number of elements in a list | |
1704 | size_t wxVariant::GetCount() const | |
1705 | { | |
60acae80 | 1706 | wxASSERT_MSG( GetType() == wxT("list"), wxT("Invalid type for GetCount()") ); |
60acae80 RR |
1707 | |
1708 | if (GetType() == wxT("list")) | |
1709 | { | |
1710 | wxVariantDataList* data = (wxVariantDataList*) m_data; | |
1711 | return data->GetValue().GetCount(); | |
1712 | } | |
60acae80 RR |
1713 | return 0; |
1714 | } | |
1715 | ||
2562c823 | 1716 | // ---------------------------------------------------------------------------- |
341287bf | 1717 | // Type conversion |
2562c823 RR |
1718 | // ---------------------------------------------------------------------------- |
1719 | ||
341287bf JS |
1720 | bool wxVariant::Convert(long* value) const |
1721 | { | |
1722 | wxString type(GetType()); | |
223d09f6 | 1723 | if (type == wxT("double")) |
2562c823 | 1724 | *value = (long) (((wxVariantDoubleData*)GetData())->GetValue()); |
223d09f6 | 1725 | else if (type == wxT("long")) |
341287bf | 1726 | *value = ((wxVariantDataLong*)GetData())->GetValue(); |
223d09f6 | 1727 | else if (type == wxT("bool")) |
341287bf | 1728 | *value = (long) (((wxVariantDataBool*)GetData())->GetValue()); |
223d09f6 | 1729 | else if (type == wxT("string")) |
52de37c7 | 1730 | *value = wxAtol(((wxVariantDataString*)GetData())->GetValue()); |
341287bf | 1731 | else |
cab1a605 | 1732 | return false; |
341287bf | 1733 | |
cab1a605 | 1734 | return true; |
341287bf JS |
1735 | } |
1736 | ||
1737 | bool wxVariant::Convert(bool* value) const | |
1738 | { | |
1739 | wxString type(GetType()); | |
223d09f6 | 1740 | if (type == wxT("double")) |
2562c823 | 1741 | *value = ((int) (((wxVariantDoubleData*)GetData())->GetValue()) != 0); |
223d09f6 | 1742 | else if (type == wxT("long")) |
341287bf | 1743 | *value = (((wxVariantDataLong*)GetData())->GetValue() != 0); |
223d09f6 | 1744 | else if (type == wxT("bool")) |
341287bf | 1745 | *value = ((wxVariantDataBool*)GetData())->GetValue(); |
223d09f6 | 1746 | else if (type == wxT("string")) |
341287bf JS |
1747 | { |
1748 | wxString val(((wxVariantDataString*)GetData())->GetValue()); | |
1749 | val.MakeLower(); | |
b1638abf | 1750 | if (val == wxT("true") || val == wxT("yes") || val == wxT('1') ) |
cab1a605 | 1751 | *value = true; |
b1638abf | 1752 | else if (val == wxT("false") || val == wxT("no") || val == wxT('0') ) |
cab1a605 | 1753 | *value = false; |
341287bf | 1754 | else |
cab1a605 | 1755 | return false; |
341287bf JS |
1756 | } |
1757 | else | |
cab1a605 | 1758 | return false; |
341287bf | 1759 | |
cab1a605 | 1760 | return true; |
341287bf JS |
1761 | } |
1762 | ||
1763 | bool wxVariant::Convert(double* value) const | |
1764 | { | |
1765 | wxString type(GetType()); | |
223d09f6 | 1766 | if (type == wxT("double")) |
2562c823 | 1767 | *value = ((wxVariantDoubleData*)GetData())->GetValue(); |
223d09f6 | 1768 | else if (type == wxT("long")) |
341287bf | 1769 | *value = (double) (((wxVariantDataLong*)GetData())->GetValue()); |
223d09f6 | 1770 | else if (type == wxT("bool")) |
341287bf | 1771 | *value = (double) (((wxVariantDataBool*)GetData())->GetValue()); |
223d09f6 | 1772 | else if (type == wxT("string")) |
52de37c7 | 1773 | *value = (double) wxAtof(((wxVariantDataString*)GetData())->GetValue()); |
341287bf | 1774 | else |
cab1a605 | 1775 | return false; |
341287bf | 1776 | |
cab1a605 | 1777 | return true; |
341287bf JS |
1778 | } |
1779 | ||
af717fa8 | 1780 | bool wxVariant::Convert(wxUniChar* value) const |
341287bf JS |
1781 | { |
1782 | wxString type(GetType()); | |
223d09f6 | 1783 | if (type == wxT("char")) |
341287bf | 1784 | *value = ((wxVariantDataChar*)GetData())->GetValue(); |
223d09f6 | 1785 | else if (type == wxT("long")) |
341287bf | 1786 | *value = (char) (((wxVariantDataLong*)GetData())->GetValue()); |
223d09f6 | 1787 | else if (type == wxT("bool")) |
341287bf JS |
1788 | *value = (char) (((wxVariantDataBool*)GetData())->GetValue()); |
1789 | else | |
cab1a605 | 1790 | return false; |
341287bf | 1791 | |
cab1a605 | 1792 | return true; |
341287bf JS |
1793 | } |
1794 | ||
af717fa8 VS |
1795 | bool wxVariant::Convert(char* value) const |
1796 | { | |
1797 | wxUniChar ch; | |
1798 | if ( !Convert(&ch) ) | |
1799 | return false; | |
1800 | *value = ch; | |
1801 | return true; | |
1802 | } | |
1803 | ||
1804 | bool wxVariant::Convert(wchar_t* value) const | |
1805 | { | |
1806 | wxUniChar ch; | |
1807 | if ( !Convert(&ch) ) | |
1808 | return false; | |
1809 | *value = ch; | |
1810 | return true; | |
1811 | } | |
1812 | ||
341287bf JS |
1813 | bool wxVariant::Convert(wxString* value) const |
1814 | { | |
1815 | *value = MakeString(); | |
cab1a605 | 1816 | return true; |
341287bf JS |
1817 | } |
1818 | ||
e2b87f38 | 1819 | #if wxUSE_DATETIME |
edca7a82 GT |
1820 | bool wxVariant::Convert(wxDateTime* value) const |
1821 | { | |
1822 | wxString type(GetType()); | |
1823 | if (type == wxT("datetime")) | |
9708db20 | 1824 | { |
edca7a82 | 1825 | *value = ((wxVariantDataDateTime*)GetData())->GetValue(); |
cab1a605 | 1826 | return true; |
dc259b79 | 1827 | } |
9708db20 JS |
1828 | // Fallback to string conversion |
1829 | wxString val; | |
9a8a9e99 | 1830 | return Convert(&val) && |
52de37c7 VS |
1831 | (value->ParseDateTime(val.c_str()/*FIXME-UTF8*/) || |
1832 | value->ParseDate(val.c_str()/*FIXME-UTF8*/) || | |
1833 | value->ParseTime(val.c_str()/*FIXME-UTF8*/)); | |
edca7a82 | 1834 | } |
b1e343f2 | 1835 | #endif // wxUSE_DATETIME |
d5dc103f VZ |
1836 | |
1837 | #endif // wxUSE_VARIANT |