SAGA API  v9.8
metadata.cpp
Go to the documentation of this file.
1 
3 // //
4 // SAGA //
5 // //
6 // System for Automated Geoscientific Analyses //
7 // //
8 // Application Programming Interface //
9 // //
10 // Library: SAGA_API //
11 // //
12 //-------------------------------------------------------//
13 // //
14 // metadata.cpp //
15 // //
16 // Copyright (C) 2009 by Olaf Conrad //
17 // //
18 //-------------------------------------------------------//
19 // //
20 // This file is part of 'SAGA - System for Automated //
21 // Geoscientific Analyses'. //
22 // //
23 // This library is free software; you can redistribute //
24 // it and/or modify it under the terms of the GNU Lesser //
25 // General Public License as published by the Free //
26 // Software Foundation, either version 2.1 of the //
27 // License, or (at your option) any later version. //
28 // //
29 // This library is distributed in the hope that it will //
30 // be useful, but WITHOUT ANY WARRANTY; without even the //
31 // implied warranty of MERCHANTABILITY or FITNESS FOR A //
32 // PARTICULAR PURPOSE. See the GNU Lesser General Public //
33 // License for more details. //
34 // //
35 // You should have received a copy of the GNU Lesser //
36 // General Public License along with this program; if //
37 // not, see <http://www.gnu.org/licenses/>. //
38 // //
39 //-------------------------------------------------------//
40 // //
41 // contact: Olaf Conrad //
42 // Institute of Geography //
43 // University of Hamburg //
44 // Germany //
45 // //
46 // e-mail: oconrad@saga-gis.org //
47 // //
49 
50 //---------------------------------------------------------
51 #include <wx/xml/xml.h>
52 #include <wx/wfstream.h>
53 #include <wx/sstream.h>
54 #include <wx/mstream.h>
55 #include <wx/protocol/http.h>
56 
57 #include "metadata.h"
58 #include "table.h"
59 
60 
62 // //
63 // //
64 // //
66 
67 //---------------------------------------------------------
69 {
70  _On_Construction();
71 }
72 
74 {
75  return( true );
76 }
77 
78 //---------------------------------------------------------
80 {
81  _On_Construction();
82 
83  Create(MetaData);
84 }
85 
86 bool CSG_MetaData::Create(const CSG_MetaData &MetaData)
87 {
88  return( Assign(MetaData) );
89 }
90 
91 //---------------------------------------------------------
92 CSG_MetaData::CSG_MetaData(const CSG_String &File, const SG_Char *Extension)
93 {
94  _On_Construction();
95 
96  Create(File, Extension);
97 }
98 
99 bool CSG_MetaData::Create(const CSG_String &File, const SG_Char *Extension)
100 {
101  return( Load(File, Extension) );
102 }
103 
104 //---------------------------------------------------------
106 {
107  _On_Construction();
108 
109  Create(Stream);
110 }
111 
113 {
114  return( Load(Stream) );
115 }
116 
117 //---------------------------------------------------------
119 {
120  _On_Construction();
121 
122  m_pParent = pParent;
123 }
124 
125 //---------------------------------------------------------
126 void CSG_MetaData::_On_Construction(void)
127 {
128  m_pParent = NULL;
129 
130  m_Children.Create(sizeof(CSG_MetaData **), 0, TSG_Array_Growth::SG_ARRAY_GROWTH_1);
131 }
132 
133 //---------------------------------------------------------
135 {
136  Destroy();
137 }
138 
139 //---------------------------------------------------------
141 {
142  CSG_MetaData **m_pChildren = (CSG_MetaData **)m_Children.Get_Array();
143 
144  for(int i=0; i<Get_Children_Count(); i++)
145  {
146  delete(m_pChildren[i]);
147  }
148 
149  m_Children.Destroy();
150 
151 // m_pParent = NULL;
152 
153 // m_Name .Clear();
154 // m_Content .Clear();
155 
156  m_Prop_Names .Clear();
157  m_Prop_Values.Clear();
158 }
159 
160 
162 // //
164 
165 //---------------------------------------------------------
167 {
168  return( Ins_Child(-1) );
169 }
170 
172 {
173  return( Ins_Child(Name, -1) );
174 }
175 
177 {
178  return( Ins_Child(Name, Content, -1) );
179 }
180 
181 CSG_MetaData * CSG_MetaData::Add_Child(const CSG_String &Name, double Content)
182 {
183  return( Ins_Child(Name, SG_Get_String(Content, -16), -1) );
184 }
185 
187 {
188  return( Ins_Child(Name, CSG_String::Format(SG_T("%d"), Content), -1) );
189 }
190 
192 {
193  return( Ins_Child(Name, CSG_String::Format(SG_T("%lld"), Content), -1) );
194 }
195 
196 CSG_MetaData * CSG_MetaData::Add_Child(const CSG_MetaData &MetaData, bool bAddChildren)
197 {
198  return( Ins_Child(MetaData, -1, bAddChildren) );
199 }
200 
201 
203 // //
205 
206 //---------------------------------------------------------
208 {
209  if( !m_Children.Inc_Array() )
210  {
211  return( NULL );
212  }
213 
214  CSG_MetaData **pChildren = (CSG_MetaData **)m_Children.Get_Array();
215 
216  if( Position < 0 || Position >= Get_Children_Count() )
217  {
218  Position = Get_Children_Count() - 1;
219  }
220 
221  for(int i=Get_Children_Count()-1; i>Position; i--)
222  {
223  pChildren[i] = pChildren[i - 1];
224  }
225 
226  return( pChildren[Position] = new CSG_MetaData(this) );
227 }
228 
229 //---------------------------------------------------------
230 CSG_MetaData * CSG_MetaData::Ins_Child(const CSG_String &Name, const CSG_String &Content, int Position)
231 {
232  CSG_MetaData *pChild = Ins_Child(Position);
233 
234  if( pChild )
235  {
236  pChild->m_Name = Name;
237  pChild->m_Content = Content;
238  }
239 
240  return( pChild );
241 }
242 
243 CSG_MetaData * CSG_MetaData::Ins_Child(const CSG_String &Name, int Position)
244 {
245  return( Ins_Child(Name, CSG_String(""), Position) );
246 }
247 
248 CSG_MetaData * CSG_MetaData::Ins_Child(const CSG_String &Name, double Content, int Position)
249 {
250  return( Ins_Child(Name, SG_Get_String(Content, -16), Position) );
251 }
252 
253 CSG_MetaData * CSG_MetaData::Ins_Child(const CSG_String &Name, int Content, int Position)
254 {
255  return( Ins_Child(Name, CSG_String::Format(SG_T("%d"), Content), Position) );
256 }
257 
258 CSG_MetaData * CSG_MetaData::Ins_Child(const CSG_String &Name, sLong Content, int Position)
259 {
260  return( Ins_Child(Name, CSG_String::Format(SG_T("%lld"), Content), Position) );
261 }
262 
263 CSG_MetaData * CSG_MetaData::Ins_Child(const CSG_MetaData &MetaData, int Position, bool bAddChildren)
264 {
265  CSG_MetaData *pChild = Ins_Child(Position);
266 
267  if( pChild )
268  {
269  pChild->Assign(MetaData, bAddChildren);
270  }
271 
272  return( pChild );
273 }
274 
275 
277 // //
279 
280 //---------------------------------------------------------
281 bool CSG_MetaData::Mov_Child(int from_Index, int to_Index)
282 {
283  if( from_Index < 0 || from_Index >= Get_Children_Count()
284  || to_Index < 0 || to_Index >= Get_Children_Count() )
285  {
286  return( false );
287  }
288 
289  if( from_Index != to_Index )
290  {
291  CSG_MetaData **pChildren = (CSG_MetaData **)m_Children.Get_Array();
292  CSG_MetaData *pChild = pChildren[from_Index];
293 
294  if( from_Index < to_Index )
295  {
296  for(int i=from_Index; i<to_Index; i++)
297  {
298  pChildren[i] = pChildren[i + 1];
299  }
300  }
301  else // if( from_Index > to_Index )
302  {
303  for(int i=from_Index; i>to_Index; i--)
304  {
305  pChildren[i] = pChildren[i - 1];
306  }
307  }
308 
309  pChildren[to_Index] = pChild;
310  }
311 
312  return( true );
313 }
314 
315 
317 // //
319 
320 //---------------------------------------------------------
321 bool CSG_MetaData::Del_Child(int Index)
322 {
323  if( Index >= 0 && Index < Get_Children_Count() )
324  {
325  CSG_MetaData **pChildren = (CSG_MetaData **)m_Children.Get_Array();
326 
327  delete(pChildren[Index]);
328 
329  for(int i=Index, j=Index+1; j<Get_Children_Count(); i++, j++)
330  {
331  pChildren[i] = pChildren[j];
332  }
333 
334  m_Children.Dec_Array();
335 
336  return( true );
337  }
338 
339  return( false );
340 }
341 
342 //---------------------------------------------------------
344 {
345  if( Name.Find('.') > 0 )
346  {
347  CSG_MetaData *pParent = Get_Child(Name.BeforeLast('.'));
348 
349  if( pParent )
350  {
351  return( pParent->Del_Child(Name.AfterLast('.')) );
352  }
353  }
354 
355  return( Del_Child(_Get_Child(Name)) );
356 }
357 
358 //---------------------------------------------------------
360 {
361  if( &MetaData != this )
362  {
363  for(int i=0; i<MetaData.Get_Children_Count(); i++)
364  {
365  Add_Child(MetaData[i], true);
366  }
367  }
368 
369  return( true );
370 }
371 
372 //---------------------------------------------------------
380 //---------------------------------------------------------
381 bool CSG_MetaData::Del_Children(int Depth, const SG_Char *Name)
382 {
383  if( Depth < 0 )
384  {
385  // nop
386  }
387  else if( Name && *Name )
388  {
389  for(int i=Get_Children_Count()-1; i>=0; i--)
390  {
391  if( Get_Child(i)->Get_Name().CmpNoCase(Name) )
392  {
393  Get_Child(i)->Del_Children(Depth, Name);
394  }
395  else if( Depth > 0 )
396  {
397  Get_Child(i)->Del_Children(Depth - 1, Name);
398  }
399  else
400  {
401  Del_Child(i);
402  }
403  }
404  }
405  else if( Depth > 0 )
406  {
407  for(int i=0; i<Get_Children_Count(); i++)
408  {
409  Get_Child(i)->Del_Children(Depth - 1, Name);
410  }
411  }
412  else
413  {
414  for(int i=0; i<Get_Children_Count(); i++)
415  {
416  delete(Get_Child(i));
417  }
418 
419  m_Children.Destroy();
420  }
421 
422  return( true );
423 }
424 
425 //---------------------------------------------------------
427 {
428  if( Name.Find('.') > 0 )
429  {
430  CSG_MetaData *pEntry = Get_Child(Name.BeforeFirst('.'));
431 
432  if( pEntry )
433  {
434  return( pEntry->Get_Child(Name.AfterFirst('.')) );
435  }
436  }
437 
438  return( Get_Child(_Get_Child(Name)) );
439 }
440 
441 //---------------------------------------------------------
442 int CSG_MetaData::_Get_Child(const CSG_String &Name) const
443 {
444  for(int i=0; i<Get_Children_Count(); i++)
445  {
446  if( Name.CmpNoCase(Get_Child(i)->Get_Name()) == 0 )
447  {
448  return( i );
449  }
450  }
451 
452  return( -1 );
453 }
454 
455 
457 // //
459 
460 //---------------------------------------------------------
461 bool CSG_MetaData::Cmp_Name(const CSG_String &String, bool bNoCase) const
462 {
463  return( bNoCase ? !m_Name.CmpNoCase(String) : !m_Name.Cmp(String) );
464 }
465 
466 
468 // //
470 
471 //---------------------------------------------------------
472 const SG_Char * CSG_MetaData::Get_Content(const CSG_String &Name) const
473 {
474  if( Name.is_Empty() )
475  {
476  return( m_Content );
477  }
478 
479  CSG_MetaData *pEntry = Get_Child(Name);
480 
481  return( pEntry ? pEntry->Get_Content().c_str() : NULL );
482 }
483 
484 //---------------------------------------------------------
485 bool CSG_MetaData::Get_Content(const CSG_String &Name, CSG_String &Value) const
486 {
487  const SG_Char *cString = Name.is_Empty() ? Get_Content().c_str() : Get_Content(Name);
488 
489  if( cString )
490  {
491  Value = cString;
492 
493  return( true );
494  }
495 
496  return( false );
497 }
498 
499 //---------------------------------------------------------
500 bool CSG_MetaData::Get_Content(const CSG_String &Name, double &Value) const { CSG_String s; return( Get_Content(Name, s) && s.asDouble (Value) ); }
501 bool CSG_MetaData::Get_Content(const CSG_String &Name, int &Value) const { CSG_String s; return( Get_Content(Name, s) && s.asInt (Value) ); }
502 bool CSG_MetaData::Get_Content(const CSG_String &Name, sLong &Value) const { CSG_String s; return( Get_Content(Name, s) && s.asLongLong(Value) ); }
503 
504 
506 // //
508 
509 //---------------------------------------------------------
510 void CSG_MetaData::Fmt_Content(const char *Format, ...)
511 {
512  wxString s; va_list argptr;
513 
514 #ifdef _SAGA_LINUX
515  wxString _Format(Format); _Format.Replace("%s", "%ls"); // workaround as we only use wide characters since wx 2.9.4 so interpret strings as multibyte
516  va_start(argptr, _Format);
517  s.PrintfV(_Format, argptr);
518 #else
519  va_start(argptr, Format);
520  s.PrintfV(Format, argptr);
521 #endif
522 
523  m_Content = CSG_String(&s);
524 
525  va_end(argptr);
526 }
527 
528 //---------------------------------------------------------
529 void CSG_MetaData::Fmt_Content(const wchar_t *Format, ...)
530 {
531  wxString s; va_list argptr;
532 
533 #ifdef _SAGA_LINUX
534  wxString _Format(Format); _Format.Replace("%s", "%ls"); // workaround as we only use wide characters since wx 2.9.4 so interpret strings as multibyte
535  va_start(argptr, _Format);
536  s.PrintfV(_Format, argptr);
537 #else
538  va_start(argptr, Format);
539  s.PrintfV(Format, argptr);
540 #endif
541 
542  m_Content = CSG_String(&s);
543 
544  va_end(argptr);
545 }
546 
547 //---------------------------------------------------------
548 bool CSG_MetaData::Cmp_Content(const CSG_String &String, bool bNoCase) const
549 {
550  return( bNoCase ? !m_Content.CmpNoCase(String) : !m_Content.Cmp(String) );
551 }
552 
553 
555 // //
557 
558 //---------------------------------------------------------
559 bool CSG_MetaData::Add_Property(const CSG_String &Name, const CSG_String &Value)
560 {
561  if( !Value.is_Empty() &&_Get_Property(Name) < 0 )
562  {
563  m_Prop_Names .Add(Name );
564  m_Prop_Values.Add(Value);
565 
566  return( true );
567  }
568 
569  return( false );
570 }
571 
572 bool CSG_MetaData::Add_Property(const CSG_String &Name, double Value)
573 {
574  return( Add_Property(Name, CSG_String::Format(SG_T("%f"), Value)) );
575 }
576 
577 bool CSG_MetaData::Add_Property(const CSG_String &Name, int Value)
578 {
579  return( Add_Property(Name, CSG_String::Format(SG_T("%d"), Value)) );
580 }
581 
583 {
584  return( Add_Property(Name, CSG_String::Format(SG_T("%lld"), Value)) );
585 }
586 
587 //---------------------------------------------------------
589 {
590  for(int i=0; i<Get_Property_Count(); i++)
591  {
592  if( !Get_Property_Name(i).CmpNoCase(Name) )
593  {
594  return( Del_Property(i) );
595  }
596  }
597 
598  return( false );
599 }
600 
602 {
603  if( i >= 0 && i < Get_Property_Count() )
604  {
605  m_Prop_Names .Del(i);
606  m_Prop_Values.Del(i);
607 
608  return( true );
609  }
610 
611  return( false );
612 }
613 
614 //---------------------------------------------------------
615 bool CSG_MetaData::Set_Property(const CSG_String &Name, const CSG_String &Value, bool bAddIfNotExists)
616 {
617  int Index = _Get_Property(Name);
618 
619  if( Index >= 0 )
620  {
621  m_Prop_Values[Index] = Value;
622 
623  return( true );
624  }
625  else if( bAddIfNotExists )
626  {
627  m_Prop_Names .Add(Name);
628  m_Prop_Values.Add(Value);
629 
630  return( true );
631  }
632 
633  return( false );
634 }
635 
636 bool CSG_MetaData::Set_Property(const CSG_String &Name, double Value, bool bAddIfNotExists)
637 {
638  return( Set_Property(Name, CSG_String::Format(SG_T("%f"), Value, bAddIfNotExists)) );
639 }
640 
641 bool CSG_MetaData::Set_Property(const CSG_String &Name, int Value, bool bAddIfNotExists)
642 {
643  return( Set_Property(Name, CSG_String::Format(SG_T("%d"), Value, bAddIfNotExists)) );
644 }
645 
646 bool CSG_MetaData::Set_Property(const CSG_String &Name, sLong Value, bool bAddIfNotExists)
647 {
648  return( Set_Property(Name, CSG_String::Format(SG_T("%lld"), Value, bAddIfNotExists)) );
649 }
650 
651 //---------------------------------------------------------
652 bool CSG_MetaData::Get_Property(const CSG_String &Name, CSG_String &Value) const
653 {
654  const SG_Char *cString = Get_Property(Name);
655 
656  if( cString )
657  {
658  Value = cString;
659 
660  return( true );
661  }
662 
663  return( false );
664 }
665 
666 bool CSG_MetaData::Get_Property(const CSG_String &Name, double &Value) const { CSG_String s; return( Get_Property(Name, s) && s.asDouble (Value) ); }
667 bool CSG_MetaData::Get_Property(const CSG_String &Name, int &Value) const { CSG_String s; return( Get_Property(Name, s) && s.asInt (Value) ); }
668 bool CSG_MetaData::Get_Property(const CSG_String &Name, sLong &Value) const { CSG_String s; return( Get_Property(Name, s) && s.asLongLong(Value) ); }
669 
670 //---------------------------------------------------------
671 bool CSG_MetaData::Cmp_Property(const CSG_String &Name, const CSG_String &String, bool bNoCase) const
672 {
673  CSG_String s;
674 
675  return( Get_Property(Name, s) && (bNoCase ? !s.CmpNoCase(String) : !s.Cmp(String)) );
676 }
677 
678 //---------------------------------------------------------
679 int CSG_MetaData::_Get_Property(const CSG_String &Name) const
680 {
681  for(int i=0; i<m_Prop_Names.Get_Count(); i++)
682  {
683  if( Name.CmpNoCase(m_Prop_Names[i]) == 0 )
684  {
685  return( i );
686  }
687  }
688 
689  return( -1 );
690 }
691 
692 
694 // //
696 
697 //---------------------------------------------------------
699 {
700  CSG_String s;
701 
702  if( Flags == 0 )
703  {
704  for(int i=0; i<Get_Children_Count(); i++)
705  {
706  s += Get_Child(i)->Get_Name() + ":\t" + Get_Child(i)->Get_Content() + "\n";
707  }
708  }
709  else
710  {
711  wxXmlDocument XML; wxXmlNode *pRoot = new wxXmlNode(NULL, wxXML_ELEMENT_NODE, Get_Name().c_str());
712 
713  XML.SetRoot(pRoot);
714 
715  _Save(pRoot);
716 
717  wxStringOutputStream Stream;
718 
719  XML.Save(Stream);
720 
721  s = &Stream.GetString();
722 
723  if( Flags == 2 ) // remove <xml>
724  {
725  s = s.AfterFirst('\n');
726  }
727  }
728 
729  return( s );
730 }
731 
732 //---------------------------------------------------------
734 {
735  CSG_Table t;
736 
737  t.Add_Field("NAME" , SG_DATATYPE_String);
738  t.Add_Field("VALUE", SG_DATATYPE_String);
739 
740  for(int i=0; i<Get_Children_Count(); i++)
741  {
742  CSG_Table_Record *r = t.Add_Record();
743 
744  r->Set_Value(0, Get_Child(i)->Get_Name());
745  r->Set_Value(1, Get_Child(i)->Get_Content());
746  }
747 
748  return( t );
749 }
750 
751 
753 // //
755 
756 //---------------------------------------------------------
757 bool CSG_MetaData::Assign(const CSG_MetaData &MetaData, bool bAddChildren)
758 {
759  if( &MetaData != this )
760  {
761  Destroy();
762 
763  Set_Name (MetaData.Get_Name ());
764  Set_Content(MetaData.Get_Content());
765 
766  for(int i=0; i<MetaData.Get_Property_Count(); i++)
767  {
768  Add_Property(MetaData.Get_Property_Name(i), MetaData.Get_Property(i));
769  }
770 
771  if( bAddChildren )
772  {
773  Add_Children(MetaData);
774  }
775  }
776 
777  return( true );
778 }
779 
780 
782 // //
784 
785 //---------------------------------------------------------
786 bool CSG_MetaData::Load(const CSG_String &File, const SG_Char *Extension)
787 {
788  Destroy();
789 
790  //-----------------------------------------------------
791  if( File.Find("http://") == 0 )
792  {
793  CSG_String s(File.Right(File.Length() - CSG_String("http://").Length()));
794 
795  return( Load_HTTP(s.BeforeFirst('/'), s.AfterFirst('/')) );
796  }
797 
798  //-----------------------------------------------------
799  CSG_String _File(SG_File_Make_Path("", File, Extension));
800 
801  if( !SG_File_Exists(_File) )
802  {
803  return( false );
804  }
805 
806  //-----------------------------------------------------
807  if( SG_File_Cmp_Extension(_File, "json") )
808  {
809  return( Load_JSON(_File) );
810  }
811 
812  //-----------------------------------------------------
813  wxXmlDocument XML;
814 
815  if( XML.Load(_File.c_str()) )
816  {
817  _Load(XML.GetRoot());
818 
819  return( true );
820  }
821 
822  //-----------------------------------------------------
823  return( false );
824 }
825 
826 //---------------------------------------------------------
828 {
829  Destroy();
830 
831  wxXmlDocument XML;
832 
833  if( File.is_Reading() && XML.Load(*((wxInputStream *)File.Get_Stream())) )
834  {
835  _Load(XML.GetRoot());
836 
837  return( true );
838  }
839 
840  return( false );
841 }
842 
843 //---------------------------------------------------------
844 void CSG_MetaData::_Load(wxXmlNode *pNode)
845 {
846  m_Name = pNode->GetName ().wc_str();
847  m_Content = pNode->GetNodeContent().wc_str();
848 
849  //-----------------------------------------------------
850  wxXmlAttribute *pProperty = pNode->GetAttributes();
851 
852  while( pProperty )
853  {
854  Add_Property(&pProperty->GetName(), &pProperty->GetValue());
855 
856  pProperty = pProperty->GetNext();
857  }
858 
859  //-----------------------------------------------------
860  wxXmlNode *pChild = pNode->GetChildren();
861 
862  while( pChild )
863  {
864  if( pChild->GetType() != wxXML_TEXT_NODE )
865  {
866  Add_Child()->_Load(pChild);
867  }
868 
869  pChild = pChild->GetNext();
870  }
871 }
872 
873 
875 // //
877 
878 //---------------------------------------------------------
879 bool CSG_MetaData::Save(const CSG_String &File, const SG_Char *Extension) const
880 {
881  wxXmlDocument XML; wxXmlNode *pRoot = new wxXmlNode(NULL, wxXML_ELEMENT_NODE, Get_Name().c_str());
882 
883  XML.SetRoot(pRoot);
884 
885  _Save(pRoot);
886 
887  if( XML.Save(SG_File_Make_Path("", File, Extension).c_str()) )
888  {
889  return( true );
890  }
891 
892  return( false );
893 }
894 
895 //---------------------------------------------------------
896 bool CSG_MetaData::Save(CSG_File &File) const
897 {
898  wxXmlDocument XML; wxXmlNode *pRoot = new wxXmlNode(NULL, wxXML_ELEMENT_NODE, Get_Name().c_str());
899 
900  XML.SetRoot(pRoot);
901 
902  _Save(pRoot);
903 
904  if( File.is_Writing() && XML.Save(*((wxOutputStream *)File.Get_Stream())) )
905  {
906  return( true );
907  }
908 
909  return( false );
910 }
911 
912 //---------------------------------------------------------
913 void CSG_MetaData::_Save(wxXmlNode *pNode) const
914 {
915  pNode->SetName(CSG_String(Get_Name().Length() ? Get_Name() : CSG_String("NODE")).c_str());
916  pNode->SetContent(Get_Content().c_str());
917 
918  if( Get_Content().Length() > 0 || (Get_Property_Count() == 0 && Get_Children_Count() == 0) )
919  {
920  wxXmlNode *pChild = new wxXmlNode(pNode, wxXML_TEXT_NODE, SG_T("TEXT"));
921 
922  pChild->SetContent(Get_Content().c_str());
923  }
924 
925  //-----------------------------------------------------
926  for(int i=0; i<Get_Property_Count(); i++)
927  {
928  pNode->AddAttribute(Get_Property_Name(i).c_str(), Get_Property(i));
929  }
930 
931  //-----------------------------------------------------
932  for(int i=Get_Children_Count()-1; i>=0; i--)
933  {
934  Get_Child(i)->_Save(new wxXmlNode(pNode, wxXML_ELEMENT_NODE, Get_Child(i)->Get_Name().c_str()));
935  }
936 }
937 
938 
940 // //
942 
943 //---------------------------------------------------------
944 bool CSG_MetaData::from_XML(const char *_XML, size_t Length, const char *Encoding)
945 {
946  Destroy();
947 
948  wxXmlDocument XML; wxMemoryInputStream Stream((const void *)_XML, Length);
949 
950  if( XML.Load(Stream, Encoding) )
951  {
952  _Load(XML.GetRoot());
953 
954  return( true );
955  }
956 
957  return( false );
958 }
959 
960 //---------------------------------------------------------
962 {
963  Destroy();
964 
965  wxXmlDocument XML; wxMemoryInputStream Stream((const void *)_XML.b_str(), (size_t)_XML.Length());
966 
967  if( XML.Load(Stream) )
968  {
969  _Load(XML.GetRoot());
970 
971  return( true );
972  }
973 
974  return( false );
975 }
976 
977 //---------------------------------------------------------
979 {
980  wxXmlDocument XML; wxXmlNode *pRoot = new wxXmlNode(NULL, wxXML_ELEMENT_NODE, Get_Name().c_str());
981 
982  XML.SetRoot(pRoot);
983 
984  _Save(pRoot);
985 
986  wxMemoryOutputStream Stream;
987 
988  if( XML.Save(Stream) )
989  {
990  CSG_Array s(sizeof(char), Stream.GetSize());
991 
992  Stream.CopyTo(s.Get_Array(), s.Get_Size());
993 
994  _XML = (const char *)s.Get_Array();
995 
996  return( true );
997  }
998 
999  return( false );
1000 }
1001 
1002 
1004 // //
1006 
1007 //---------------------------------------------------------
1008 bool CSG_MetaData::Load_HTTP(const CSG_String &Server, const CSG_String &Path, const SG_Char *Username, const SG_Char *Password)
1009 {
1010  Destroy();
1011 
1012  //-----------------------------------------------------
1013  wxHTTP HTTP;
1014 
1015  if( Username && *Username ) { HTTP.SetUser (Username); }
1016  if( Password && *Password ) { HTTP.SetPassword(Password); }
1017 
1018  wxString s = Server.c_str();
1019 
1020  if( s.Find("http://") == 0 )
1021  {
1022  s = s.Right(s.Length() - wxString("http://").Length());
1023  }
1024 
1025  if( !HTTP.Connect(s) )
1026  {
1027  return( false );
1028  }
1029 
1030  //-----------------------------------------------------
1031  s = Path.c_str();
1032 
1033  if( s[0] != '/' )
1034  {
1035  s.Prepend("/");
1036  }
1037 
1038  wxInputStream *pStream = HTTP.GetInputStream(s);
1039 
1040  if( !pStream )
1041  {
1042  return( false );
1043  }
1044 
1045  wxXmlDocument XML;
1046 
1047  if( XML.Load(*pStream) )
1048  {
1049  _Load(XML.GetRoot());
1050 
1051  delete(pStream);
1052 
1053  return( true );
1054  }
1055 
1056  delete(pStream);
1057 
1058  return( false );
1059 }
1060 
1061 
1063 // //
1065 
1066 //---------------------------------------------------------
1068 {
1069  CSG_File Stream; CSG_String JSON;
1070 
1071  if( Stream.Open(File, SG_FILE_R, false) && Stream.Read(JSON, (size_t)Stream.Length()) > 0 )
1072  {
1073  return( from_JSON(JSON) );
1074  }
1075 
1076  return( false );
1077 }
1078 
1079 //---------------------------------------------------------
1080 bool CSG_MetaData::Save_JSON(const CSG_String &File) const
1081 {
1082  return( false );
1083 }
1084 
1085 //---------------------------------------------------------
1087 {
1088  Destroy();
1089 
1090  Set_Name("root");
1091 
1092  CSG_MetaData *pNode = this;
1093 
1094  const SG_Char *pc = JSON.c_str();
1095 
1096  while( *pc )
1097  {
1098  CSG_String Element;
1099 
1100  for(bool bQuota=false;;)
1101  {
1102  SG_Char c = *pc++;
1103 
1104  if( !c || c == '\n' ) { break; } else
1105  {
1106  if( c == '\"' )
1107  {
1108  Element += c; bQuota = !bQuota;
1109  }
1110  else if( bQuota || (c != ' ' && c != '\t' && c != ',') )
1111  {
1112  Element += c;
1113  }
1114  }
1115  }
1116 
1117  //-------------------------------------------------
1118  if( Element.is_Empty() )
1119  {
1120  // nop
1121  }
1122  else if( Element.Find('[') >= 0 ) // array begins
1123  {
1124  pNode = pNode->Add_Child(Element.AfterFirst('\"').BeforeFirst('\"'));
1125 
1126  pNode->Add_Property("array", 1);
1127  }
1128  else if( Element.Find(']') >= 0 ) // array ends
1129  {
1130  if( pNode != this )
1131  {
1132  pNode = pNode->Get_Parent();
1133  }
1134  }
1135  else if( Element.Find('{') >= 0 ) // object begins
1136  {
1137  Element = Element.AfterFirst('\"').BeforeFirst('\"');
1138 
1139  if( !Element.is_Empty() )
1140  {
1141  pNode = pNode->Add_Child(Element);
1142  }
1143  else if( pNode->Get_Property("array") )
1144  {
1145  pNode = pNode->Add_Child(CSG_String::Format("%d", pNode->Get_Children_Count()));
1146  }
1147  }
1148  else if( Element.Find('}') >= 0 ) // object ends
1149  {
1150  if( pNode != this )
1151  {
1152  pNode = pNode->Get_Parent();
1153  }
1154  }
1155  else
1156  {
1157  CSG_String Key (Element.AfterFirst('\"').BeforeFirst('\"'));
1158  CSG_String Value(Element.AfterFirst(':'));
1159 
1160  if( Value.Find('\"') > -1 )
1161  {
1162  Value = Value.AfterFirst('\"').BeforeFirst('\"');
1163  }
1164 
1165  pNode->Add_Child(Key, Value);
1166  }
1167  }
1168 
1169  return( true );
1170 }
1171 
1172 //---------------------------------------------------------
1174 {
1175  return( false );
1176 }
1177 
1178 
1180 // //
1181 // //
1182 // //
1184 
1185 //---------------------------------------------------------
1187 {
1188  m_pHTTP = NULL;
1189 }
1190 
1191 //---------------------------------------------------------
1193 {
1194  return( Destroy() );
1195 }
1196 
1197 //---------------------------------------------------------
1198 CSG_HTTP::CSG_HTTP(const CSG_String &Server, const SG_Char *Username, const SG_Char *Password)
1199 {
1200  m_pHTTP = NULL;
1201 
1202  Create(Server, Username, Password);
1203 }
1204 
1205 //---------------------------------------------------------
1206 bool CSG_HTTP::Create(const CSG_String &Server, const SG_Char *Username, const SG_Char *Password)
1207 {
1208  Destroy();
1209 
1210  m_pHTTP = new wxHTTP;
1211 
1212  if( Username && *Username ) { m_pHTTP->SetUser (Username); }
1213  if( Password && *Password ) { m_pHTTP->SetPassword(Password); }
1214 
1215  wxString Host = Server.c_str();
1216 
1217  unsigned short Port = 80;
1218 
1219  #define SERVER_TRIM(s, p) { wxString sp(p); sp += "://"; if( s.Find(p) == 0 ) { s = s.Right(s.Length() - sp.Length()); } }
1220 
1221  SERVER_TRIM(Host, "https");
1222  SERVER_TRIM(Host, "http");
1223 
1224  if( Host.Find(":") >= 0 )
1225  {
1226  long _Port;
1227 
1228  if( Host.AfterLast(':').ToLong(&_Port) )
1229  {
1230  Port = (unsigned short)_Port;
1231  }
1232 
1233  Host = Host.BeforeLast(':');
1234  }
1235 
1236  if( !m_pHTTP->Connect(Host, Port) )
1237  {
1238  Destroy();
1239 
1240  return( false );
1241  }
1242 
1243  return( true );
1244 }
1245 
1246 //---------------------------------------------------------
1248 {
1249  Destroy();
1250 }
1251 
1252 //---------------------------------------------------------
1254 {
1255  if( m_pHTTP )
1256  {
1257  delete(m_pHTTP);
1258 
1259  m_pHTTP = NULL;
1260  }
1261 
1262  return( true );
1263 }
1264 
1265 //---------------------------------------------------------
1266 bool CSG_HTTP::is_Connected(void) const
1267 {
1268  return( m_pHTTP != NULL );
1269 }
1270 
1271 //---------------------------------------------------------
1272 wxInputStream * CSG_HTTP::_Request(const CSG_String &Request)
1273 {
1274  if( !is_Connected() )
1275  {
1276  return( NULL );
1277  }
1278 
1279  wxString s(Request.c_str());
1280 
1281  if( s[0] != '/' )
1282  {
1283  s.Prepend("/");
1284  }
1285 
1286  wxInputStream *pStream = m_pHTTP->GetInputStream(s);
1287 
1288  if( pStream && !pStream->CanRead() )
1289  {
1290  delete(pStream);
1291 
1292  return( NULL );
1293  }
1294 
1295  return( pStream );
1296 }
1297 
1298 //---------------------------------------------------------
1299 bool CSG_HTTP::Request(const CSG_String &Request, CSG_MetaData &Answer)
1300 {
1301  wxInputStream *pStream = _Request(Request); if( !pStream ) { return( false ); }
1302 
1303  wxXmlDocument XML;
1304 
1305  if( !XML.Load(*pStream) )
1306  {
1307  delete(pStream);
1308 
1309  return( false );
1310  }
1311 
1312  Answer.Destroy(); Answer._Load(XML.GetRoot());
1313 
1314  delete(pStream);
1315 
1316  return( true );
1317 }
1318 
1319 //---------------------------------------------------------
1320 bool CSG_HTTP::Request(const CSG_String &Request, CSG_Bytes &Answer)
1321 {
1322  wxInputStream *pStream = _Request(Request); if( !pStream ) { return( false ); }
1323 
1324 // if( pStream->GetSize() == ((size_t)-1) )
1325 // {
1326 // delete(pStream);
1327 //
1328 // return( false );
1329 // }
1330 
1331  Answer.Clear();
1332 
1333  while( pStream->CanRead() )
1334  {
1335  char Byte;
1336 
1337  pStream->Read(&Byte, sizeof(Byte));
1338 
1339  Answer += Byte;
1340  }
1341 
1342  delete(pStream);
1343 
1344  return( true );
1345 }
1346 
1347 //---------------------------------------------------------
1348 bool CSG_HTTP::Request(const CSG_String &Request, CSG_String &Answer)
1349 {
1350  wxInputStream *pStream = _Request(Request); if( !pStream ) { return( false ); }
1351 
1352  //if( pStream->GetSize() == ((size_t)-1) )
1353  //{
1354  // delete(pStream);
1355 
1356  // return( false );
1357  //}
1358 
1359  Answer.Clear();
1360 
1361  while( pStream->CanRead() )
1362  {
1363  char Byte;
1364 
1365  pStream->Read(&Byte, sizeof(Byte));
1366 
1367  Answer += Byte;
1368  }
1369 
1370  delete(pStream);
1371 
1372  return( true );
1373 }
1374 
1375 //---------------------------------------------------------
1376 bool CSG_HTTP::Request(const CSG_String &Request, const SG_Char *File)
1377 {
1378  wxInputStream *pStream = _Request(Request); if( !pStream ) { return( false ); }
1379 
1380  wxFileOutputStream *pFile = new wxFileOutputStream(File);
1381 
1382  if( !pFile )
1383  {
1384  delete(pStream);
1385 
1386  return( false );
1387  }
1388 
1389  pFile->Write(*pStream);
1390 
1391  delete(pFile);
1392 
1393  delete(pStream);
1394 
1395  return( true );
1396 }
1397 
1398 
1400 // //
1401 // //
1402 // //
1404 
1405 //---------------------------------------------------------
1406 #include <wx/protocol/ftp.h>
1407 
1408 //---------------------------------------------------------
1409 bool SG_FTP_Download(const CSG_String &Target_Directory, const CSG_String &Source, const SG_Char *Username, const SG_Char *Password, unsigned short Port, bool bBinary, bool bVerbose)
1410 {
1411  CSG_String _Source(Source); _Source.Trim();
1412 
1413  if( _Source.Find("ftp://") == 0 )
1414  {
1415  _Source = _Source.Right(_Source.Length() - CSG_String("ftp://").Length());
1416  }
1417 
1418  CSG_String ftpHost = _Source.BeforeFirst('/');
1419  CSG_String ftpDir = _Source.AfterFirst ('/').BeforeLast('/'); // ftpDir.Prepend("/");
1420  CSG_String ftpFile = _Source.AfterLast ('/');
1421 
1422  //-----------------------------------------------------
1423  wxFTP ftp;
1424 
1425  if( Username && *Username ) { ftp.SetUser (Username); }
1426  if( Password && *Password ) { ftp.SetPassword(Password); }
1427 
1428  if( !ftp.Connect(ftpHost.c_str(), Port) )
1429  {
1430  if( bVerbose )
1431  {
1432  SG_UI_Msg_Add_Error(_TL("Couldn't connect"));
1433  }
1434 
1435  return( false );
1436  }
1437 
1438  //-----------------------------------------------------
1439  if( !ftpDir.is_Empty() && !ftp.ChDir(ftpDir.c_str()) )
1440  {
1441  if( bVerbose )
1442  {
1443  SG_UI_Msg_Add_Error(CSG_String::Format("%s [%s]", _TL("Couldn't change to directory"), ftpDir.c_str()));
1444  }
1445 
1446  return( false );
1447  }
1448 
1449  if( ftp.GetFileSize(ftpFile.c_str()) == -1 )
1450  {
1451  if( bVerbose )
1452  {
1453  SG_UI_Msg_Add_Error(CSG_String::Format("%s [%s]", _TL("Couldn't get the file size"), ftpFile.c_str()));
1454  }
1455  }
1456 
1457  //-----------------------------------------------------
1458  wxInputStream *pStream = ftp.GetInputStream(ftpFile.c_str());
1459 
1460  if( !pStream )
1461  {
1462  if( bVerbose )
1463  {
1464  SG_UI_Msg_Add_Error(CSG_String::Format("%s [%s]", _TL("Couldn't get the file"), ftpFile.c_str()));
1465  }
1466 
1467  return( false );
1468  }
1469 
1470  //-----------------------------------------------------
1471  wxFileOutputStream *pFile = new wxFileOutputStream(SG_File_Make_Path(Target_Directory, ftpFile).c_str());
1472 
1473  if( !pFile )
1474  {
1475  if( bVerbose )
1476  {
1477  SG_UI_Msg_Add_Error(CSG_String::Format("%s [%s]", _TL("Couldn't create target file"), SG_File_Make_Path(Target_Directory, ftpFile).c_str()));
1478  }
1479 
1480  delete(pStream);
1481 
1482  return( false );
1483  }
1484 
1485  //-----------------------------------------------------
1486  pFile->Write(*pStream);
1487 
1488  delete(pFile);
1489  delete(pStream);
1490 
1491  return( true );
1492 }
1493 
1494 
1496 // //
1497 // //
1498 // //
1500 
1501 //---------------------------------------------------------
CSG_String::BeforeFirst
CSG_String BeforeFirst(char Character) const
Definition: api_string.cpp:713
CSG_MetaData::Destroy
void Destroy(void)
Definition: metadata.cpp:140
SG_T
#define SG_T(s)
Definition: api_core.h:537
CSG_MetaData::Del_Child
bool Del_Child(int Index)
Definition: metadata.cpp:321
SG_DATATYPE_String
@ SG_DATATYPE_String
Definition: api_core.h:1007
_TL
#define _TL(s)
Definition: api_core.h:1556
CSG_HTTP::CSG_HTTP
CSG_HTTP(void)
Definition: metadata.cpp:1186
CSG_Array::Get_Size
sLong Get_Size(void) const
Definition: api_core.h:327
CSG_File::Get_Stream
class wxStreamBase * Get_Stream(void) const
Definition: api_core.h:1141
CSG_String::Length
size_t Length(void) const
Definition: api_string.cpp:172
CSG_String::b_str
const char * b_str(void) const
Definition: api_string.cpp:242
CSG_Strings::Del
bool Del(int Index)
Definition: api_core.h:721
CSG_MetaData::Get_Children_Count
int Get_Children_Count(void) const
Definition: metadata.h:148
CSG_MetaData::Load_HTTP
bool Load_HTTP(const CSG_String &Server, const CSG_String &Path, const SG_Char *Username=NULL, const SG_Char *Password=NULL)
Definition: metadata.cpp:1008
CSG_MetaData::Get_Content
const CSG_String & Get_Content(void) const
Definition: metadata.h:133
CSG_Table_Record
Definition: table.h:130
CSG_MetaData::Set_Content
void Set_Content(const CSG_String &Content)
Definition: metadata.h:140
CSG_MetaData::~CSG_MetaData
virtual ~CSG_MetaData(void)
Definition: metadata.cpp:134
SG_File_Cmp_Extension
SAGA_API_DLL_EXPORT bool SG_File_Cmp_Extension(const CSG_String &File, const CSG_String &Extension)
Definition: api_file.cpp:1180
SG_Get_String
SAGA_API_DLL_EXPORT CSG_String SG_Get_String(double Value, int Precision=-99)
Definition: api_string.cpp:1367
CSG_String::asInt
int asInt(void) const
Definition: api_string.cpp:769
CSG_MetaData::Del_Property
bool Del_Property(const CSG_String &Name)
Definition: metadata.cpp:588
CSG_MetaData::Set_Property
bool Set_Property(const CSG_String &Name, const CSG_String &Value, bool bAddIfNotExists=true)
Definition: metadata.cpp:615
CSG_MetaData::from_JSON
bool from_JSON(const CSG_String &JSON)
Definition: metadata.cpp:1086
CSG_MetaData::Get_Property_Name
const CSG_String & Get_Property_Name(int Index) const
Definition: metadata.h:180
CSG_MetaData::Save
bool Save(const CSG_String &File, const SG_Char *Extension=NULL) const
Definition: metadata.cpp:879
CSG_MetaData::Get_Child
CSG_MetaData * Get_Child(int Index) const
Definition: metadata.h:149
CSG_HTTP::~CSG_HTTP
virtual ~CSG_HTTP(void)
Definition: metadata.cpp:1247
CSG_MetaData::Get_Property_Count
int Get_Property_Count(void) const
Definition: metadata.h:179
CSG_MetaData::Get_Name
const CSG_String & Get_Name(void) const
Definition: metadata.h:132
SG_FILE_R
@ SG_FILE_R
Definition: api_core.h:1112
CSG_File::Read
size_t Read(void *Buffer, size_t Size, size_t Count=1) const
Definition: api_file.cpp:338
CSG_File
Definition: api_core.h:1127
CSG_String::Cmp
int Cmp(const CSG_String &String) const
Definition: api_string.cpp:515
CSG_String::BeforeLast
CSG_String BeforeLast(char Character) const
Definition: api_string.cpp:724
CSG_Bytes::Clear
bool Clear(void)
Definition: api_memory.cpp:844
CSG_HTTP::Destroy
bool Destroy(void)
Definition: metadata.cpp:1253
SG_File_Exists
SAGA_API_DLL_EXPORT bool SG_File_Exists(const CSG_String &FileName)
Definition: api_file.cpp:1078
CSG_MetaData::Cmp_Name
bool Cmp_Name(const CSG_String &String, bool bNoCase=true) const
Definition: metadata.cpp:461
CSG_Strings::Clear
void Clear(void)
Definition: api_core.h:736
CSG_MetaData::from_XML
bool from_XML(const char *XML, size_t Length, const char *Encoding="UTF-8")
Definition: metadata.cpp:944
CSG_MetaData::Ins_Child
CSG_MetaData * Ins_Child(int Position)
Definition: metadata.cpp:207
CSG_String::Trim
int Trim(bool fromRight=false)
Definition: api_string.cpp:637
CSG_Strings::Add
bool Add(const CSG_Strings &Strings)
Definition: api_string.cpp:1069
CSG_MetaData::CSG_MetaData
CSG_MetaData(void)
Definition: metadata.cpp:68
CSG_HTTP::m_pHTTP
class wxHTTP * m_pHTTP
Definition: metadata.h:257
CSG_Array::Destroy
bool Destroy(void)
Definition: api_memory.cpp:291
CSG_MetaData::Del_Children
bool Del_Children(int Depth=0, const SG_Char *Name=NULL)
Definition: metadata.cpp:381
CSG_File::is_Writing
bool is_Writing(void) const
Definition: api_core.h:1148
CSG_HTTP::Create
bool Create(void)
Definition: metadata.cpp:1192
sLong
signed long long sLong
Definition: api_core.h:158
CSG_MetaData::Add_Property
bool Add_Property(const CSG_String &Name, const CSG_String &Value)
Definition: metadata.cpp:559
CSG_File::Open
virtual bool Open(const SG_Char *FileName, int Mode=SG_FILE_R, bool bBinary=true, int Encoding=SG_FILE_ENCODING_ANSI)
Definition: api_file.cpp:113
CSG_Array::Create
void * Create(const CSG_Array &Array)
Definition: api_memory.cpp:250
CSG_Array::Get_Array
void * Get_Array(void) const
Definition: api_core.h:336
CSG_Bytes
Definition: api_core.h:814
CSG_MetaData::Add_Children
bool Add_Children(const CSG_MetaData &MetaData)
Definition: metadata.cpp:359
CSG_MetaData::Assign
bool Assign(const CSG_MetaData &MetaData, bool bAddChildren=true)
Definition: metadata.cpp:757
CSG_String::Format
static CSG_String Format(const char *Format,...)
Definition: api_string.cpp:270
CSG_String::Find
int Find(char Character, bool fromEnd=false) const
Definition: api_string.cpp:663
CSG_Table::Add_Field
virtual bool Add_Field(const CSG_String &Name, TSG_Data_Type Type, int Position=-1)
Definition: table.cpp:465
CSG_MetaData::Save_JSON
bool Save_JSON(const CSG_String &File) const
Definition: metadata.cpp:1080
CSG_Table
Definition: table.h:285
CSG_MetaData::Mov_Child
bool Mov_Child(int from_Index, int to_Index)
Definition: metadata.cpp:281
CSG_MetaData::Cmp_Property
bool Cmp_Property(const CSG_String &Name, const CSG_String &String, bool bNoCase=false) const
Definition: metadata.cpp:671
CSG_File::Length
sLong Length(void) const
Definition: api_file.cpp:230
CSG_HTTP::is_Connected
bool is_Connected(void) const
Definition: metadata.cpp:1266
CSG_String::CmpNoCase
int CmpNoCase(const CSG_String &String) const
Definition: api_string.cpp:521
CSG_String::AfterFirst
CSG_String AfterFirst(char Character) const
Definition: api_string.cpp:691
CSG_MetaData::to_XML
bool to_XML(CSG_String &XML) const
Definition: metadata.cpp:978
CSG_String::Clear
void Clear(void)
Definition: api_string.cpp:259
CSG_MetaData::Get_Parent
CSG_MetaData * Get_Parent(void) const
Definition: metadata.h:145
SG_Char
#define SG_Char
Definition: api_core.h:536
CSG_Array::Inc_Array
bool Inc_Array(sLong nValues=1)
Definition: api_memory.cpp:414
CSG_Array
Definition: api_core.h:308
CSG_MetaData::Get_Table
class CSG_Table Get_Table(int Flags=0) const
Definition: metadata.cpp:733
CSG_String
Definition: api_core.h:563
CSG_Array::Dec_Array
bool Dec_Array(bool bShrink=true)
Definition: api_memory.cpp:425
CSG_MetaData
Definition: metadata.h:88
CSG_MetaData::Load
bool Load(const CSG_String &File, const SG_Char *Extension=NULL)
Definition: metadata.cpp:786
CSG_String::is_Empty
bool is_Empty(void) const
Definition: api_string.cpp:178
metadata.h
CSG_Table_Record::Set_Value
bool Set_Value(int Field, const CSG_String &Value)
Definition: table_record.cpp:270
CSG_String::asLongLong
sLong asLongLong(void) const
Definition: api_string.cpp:791
CSG_HTTP::Request
bool Request(const CSG_String &Request, CSG_Bytes &Answer)
Definition: metadata.cpp:1320
CSG_MetaData::Set_Name
void Set_Name(const CSG_String &Name)
Definition: metadata.h:130
CSG_MetaData::Create
bool Create(void)
Definition: metadata.cpp:73
CSG_String::AfterLast
CSG_String AfterLast(char Character) const
Definition: api_string.cpp:702
CSG_MetaData::Fmt_Content
void Fmt_Content(const char *Format,...)
Definition: metadata.cpp:510
CSG_String::asDouble
double asDouble(void) const
Definition: api_string.cpp:807
SG_File_Make_Path
SAGA_API_DLL_EXPORT CSG_String SG_File_Make_Path(const CSG_String &Directory, const CSG_String &Name)
Definition: api_file.cpp:1147
CSG_String::c_str
const SG_Char * c_str(void) const
Definition: api_string.cpp:236
CSG_MetaData::Cmp_Content
bool Cmp_Content(const CSG_String &String, bool bNoCase=false) const
Definition: metadata.cpp:548
CSG_Strings::Get_Count
int Get_Count(void) const
Definition: api_core.h:714
SG_UI_Msg_Add_Error
void SG_UI_Msg_Add_Error(const char *Message)
Definition: api_callback.cpp:556
CSG_MetaData::Add_Child
CSG_MetaData * Add_Child(void)
Definition: metadata.cpp:166
SG_FTP_Download
bool SG_FTP_Download(const CSG_String &Target_Directory, const CSG_String &Source, const SG_Char *Username, const SG_Char *Password, unsigned short Port, bool bBinary, bool bVerbose)
Definition: metadata.cpp:1409
CSG_MetaData::asText
CSG_String asText(int Flags=0) const
Definition: metadata.cpp:698
CSG_Table::Add_Record
virtual CSG_Table_Record * Add_Record(CSG_Table_Record *pCopy=NULL)
Definition: table.cpp:819
table.h
SERVER_TRIM
#define SERVER_TRIM(s, p)
CSG_MetaData::Get_Property
const SG_Char * Get_Property(int Index) const
Definition: metadata.h:181
CSG_File::is_Reading
bool is_Reading(void) const
Definition: api_core.h:1147
CSG_String::Right
CSG_String Right(size_t count) const
Definition: api_string.cpp:740
CSG_MetaData::Load_JSON
bool Load_JSON(const CSG_String &File)
Definition: metadata.cpp:1067
CSG_MetaData::to_JSON
bool to_JSON(CSG_String &JSON) const
Definition: metadata.cpp:1173