SAGA API  v9.8
tool.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 // tool.cpp //
15 // //
16 // Copyright (C) 2005 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 Goettingen //
44 // Germany //
45 // //
46 // e-mail: oconrad@saga-gis.org //
47 // //
49 
50 //---------------------------------------------------------
51 #include "saga_api.h"
52 #include "data_manager.h"
53 #include "tool.h"
54 #include "tool_chain.h"
55 
56 #include <wx/string.h>
57 #include <wx/cmdline.h>
58 
59 
61 // //
62 // //
63 // //
65 
66 //---------------------------------------------------------
68 {
69  m_ID = "-1";
70  m_Version = "1.0";
71 
72  m_bError_Ignore = false;
73  m_bExecutes = false;
74 
75  m_bGUI = SG_UI_Get_Application_Name().Cmp("saga_gui") == 0;
76  m_bCMD = SG_UI_Get_Application_Name().Cmp("saga_cmd") == 0;
77 
78  Parameters.Create(this, SG_T("Tool"));
80  Parameters.Set_Tool(this);
81 
82  Set_Show_Progress(true);
83 }
84 
85 //---------------------------------------------------------
87 {
88  for(int i=0; i<Get_Parameters_Count(); i++)
89  {
90  delete(Get_Parameters(i));
91  }
92 
93  Destroy();
94 }
95 
96 
98 // //
100 
101 //---------------------------------------------------------
103 {
104  m_bError_Ignore = false;
105 
107 }
108 
109 
111 // //
113 
114 //---------------------------------------------------------
116 {
117  return( m_Library );
118 }
119 
120 //---------------------------------------------------------
122 {
123  return( m_File_Name );
124 }
125 
126 //---------------------------------------------------------
127 void CSG_Tool::Set_Name(const CSG_String &String)
128 {
129  Parameters.Set_Name(String);
130 }
131 
132 const CSG_String & CSG_Tool::Get_Name(void) const
133 {
134  return( Parameters.Get_Name() );
135 }
136 
137 //---------------------------------------------------------
138 void CSG_Tool::Set_Author(const CSG_String &String)
139 {
140  m_Author = String;
141 }
142 
143 const CSG_String & CSG_Tool::Get_Author(void) const
144 {
145  return( m_Author );
146 }
147 
148 //---------------------------------------------------------
150 {
151  m_Version = String;
152 }
153 
155 {
156  return( m_Version );
157 }
158 
159 //---------------------------------------------------------
161 {
162  Parameters.Set_Description(String);
163 }
164 
166 {
168 }
169 
170 //---------------------------------------------------------
171 void CSG_Tool::Add_Reference(const CSG_String &Authors, const CSG_String &Year, const CSG_String &Title, const CSG_String &Where, const SG_Char *Link, const SG_Char *Link_Text)
172 {
173  Parameters.Add_Reference(Authors, Year, Title, Where, Link, Link_Text);
174 }
175 
176 void CSG_Tool::Add_Reference(const CSG_String &Link, const SG_Char *Link_Text)
177 {
178  Parameters.Add_Reference(Link, Link_Text);
179 }
180 
182 {
183  return( Parameters.Get_References() );
184 }
185 
186 //---------------------------------------------------------
188 {
189  if( !bSolved )
190  {
191  return( Get_MenuPath() );
192  }
193 
194  CSG_Strings Menu = SG_String_Tokenize(Get_MenuPath(), ";"); if( !Menu.Get_Count() ) { Menu += ""; }
195 
196  for(int i=0; i<Menu.Get_Count(); i++)
197  {
198  if( Menu[i].Length() > 1 && Menu[i][1] == ':' )
199  {
200  if( Menu[i][0] == 'A' || Menu[i][0] == 'a' ) // absolute menu path, overwrites library's default menu path
201  {
202  Menu[i] = Menu[i].AfterFirst(':');
203 
204  continue;
205  }
206 
207  Menu[i] = Menu[i].AfterFirst(':'); // Menu[0] == 'R' || Menu[0] == 'r' // menu path explicitly declared as relative to library's default menu path
208  }
209 
210  if( !m_Library_Menu.is_Empty() )
211  {
212  if( Menu[i].is_Empty() )
213  {
214  Menu[i] = m_Library_Menu;
215  }
216  else
217  {
218  Menu[i] = m_Library_Menu + "|" + Menu[i];
219  }
220  }
221  }
222 
223  CSG_String Menus;
224 
225  for(int i=0; i<Menu.Get_Count(); i++)
226  {
227  if( i > 0 )
228  {
229  Menus += ";";
230  }
231 
232  Menus += Menu[i];
233  }
234 
235  return( Menus );
236 }
237 
238 //---------------------------------------------------------
239 bool CSG_Tool::has_GUI(void) const
240 {
241  return( m_bGUI );
242 }
243 
244 //---------------------------------------------------------
245 bool CSG_Tool::has_CMD(void) const
246 {
247  return( m_bCMD );
248 }
249 
250 
252 // //
253 // //
254 // //
256 
257 //---------------------------------------------------------
258 bool CSG_Tool::Execute(bool bAddHistory)
259 {
260  #define ADD_MESSAGE_EXECUTION(Text, Style) { SG_UI_Msg_Add(Text, true, Style); if( has_GUI() ) { SG_UI_Msg_Add_Execution(Text, true, Style); } }
261 
262  //-----------------------------------------------------
263  if( m_bExecutes )
264  {
265  return( false );
266  }
267 
268  m_bExecutes = true;
269 
270  m_bError_Ignore = false;
271 
272  bool bResult = false;
273 
274  m_Execution_Info.Clear();
275 
277 
278  //-----------------------------------------------------
280  {
281  ADD_MESSAGE_EXECUTION(CSG_String::Format("[%s] %s...", Get_Name().c_str(), _TL("Execution started")), SG_UI_MSG_STYLE_SUCCESS);
282  }
283 
285 
286  if( Parameters.DataObjects_Create() == false )
287  {
288  _Synchronize_DataObjects(); // not all, but some objects might have been created!
289  }
290  else
291  {
292  Parameters.Msg_String(false);
293 
294  // SG_UI_Process_Set_Busy(true, CSG_String::Format("%s: %s...", _TL("Executing"), Get_Name().c_str()));
295  CSG_DateTime Started(CSG_DateTime::Now());
296 
298 //#if !defined(_DEBUG)
299 #define _TOOL_EXCEPTION
300  try
301  {
302 //#endif
304 
305  bResult = On_Execute();
306 
308 #ifdef _TOOL_EXCEPTION
309  } // try
310  catch(const std::exception &Exception)
311  {
312  Message_Dlg(Exception.what() , CSG_String::Format("%s | %s", Get_Name().c_str(), _TL("Access violation!")));
313  }
314  catch(...)
315  {
316  Message_Dlg(_TL("unspecified exception"), CSG_String::Format("%s | %s", Get_Name().c_str(), _TL("Access violation!")));
317  }
318  #endif
319 
321  CSG_TimeSpan Span = CSG_DateTime::Now() - Started;
322  // SG_UI_Process_Set_Busy(false);
323 
324  _Synchronize_DataObjects();
325 
326  if( !Process_Get_Okay(false) )
327  {
328  SG_UI_Msg_Add(_TL("Execution has been stopped by user!"), true, SG_UI_MSG_STYLE_BOLD);
329 
330  bResult = false;
331  }
332 
333  if( bResult && bAddHistory )
334  {
335  _Set_Output_History();
336  }
337 
338  //-------------------------------------------------
339  if( is_Interactive() )
340  {
341  if( bResult )
342  {
343  CSG_String Text(CSG_String::Format("\n%s...", _TL("Interactive tool started and is waiting for user input.")));
344 
345  SG_UI_Msg_Add (Text, false, SG_UI_MSG_STYLE_BOLD);
347  }
348  else
349  {
350  ADD_MESSAGE_EXECUTION(_TL("Interactive tool initialization failed."), SG_UI_MSG_STYLE_FAILURE);
351  }
352  }
353  else
354  {
355  CSG_String Time =
356  Span.Get_Hours () >= 1 ? (Span.Format("%Hh %Mm %Ss"))
357  : Span.Get_Minutes () >= 1 ? (Span.Format( "%Mm %Ss"))
358  : Span.Get_Seconds () >= 1 ? (Span.Format( "%Ss"))
359  : Span.Get_Milliseconds() >= 1 ? (Span.Format("%l ") + _TL("milliseconds"))
360  : CSG_String(_TL("less than 1 millisecond"));
361 
363  {
364  SG_UI_Msg_Add_Execution(CSG_String::Format("\n[%s] %s: %s", Get_Name().c_str(),
365  _TL("execution time"), Time.c_str()),
367  );
368  }
369  else
370  {
371  SG_UI_Msg_Add_Execution(CSG_String::Format("\n__________\n%s %s: %lld %s (%s)\n", _TL("total"),
372  _TL("execution time"), Span.Get_Milliseconds(), _TL("milliseconds"), Time.c_str()),
373  false, SG_UI_MSG_STYLE_BOLD
374  );
375 
376  ADD_MESSAGE_EXECUTION(CSG_String::Format("[%s] %s (%s)", Get_Name().c_str(),
377  bResult ? _TL("Execution succeeded") : _TL("Execution failed"), Time.c_str()),
379  );
380  }
381  }
382  }
383 
384  //-----------------------------------------------------
386 
387  m_bExecutes = false;
388 
391 
392  return( bResult );
393 }
394 
395 
397 // //
398 // //
399 // //
401 
402 //---------------------------------------------------------
403 bool CSG_Tool::_Synchronize_DataObjects(void)
404 {
405  Parameters.DataObjects_Synchronize();
406 
407  for(int i=0; i<Get_Parameters_Count(); i++)
408  {
409  Get_Parameters(i)->DataObjects_Synchronize();
410  }
411 
412  CSG_Projection Projection;
413 
414  if( do_Sync_Projections() && Get_Projection(Projection) )
415  {
416  Parameters.DataObjects_Set_Projection(Projection);
417 
418  for(int i=0; i<Get_Parameters_Count(); i++)
419  {
420  Get_Parameters(i)->DataObjects_Set_Projection(Projection);
421  }
422 
423  return( true );
424  }
425 
426  return( false );
427 }
428 
429 //---------------------------------------------------------
431 {
432  Projection.Destroy();
433 
434  Parameters.DataObjects_Get_Projection(Projection);
435 
436  for(int i=0; i<Get_Parameters_Count() && !Projection.is_Okay(); i++)
437  {
438  Get_Parameters(i)->DataObjects_Get_Projection(Projection);
439  }
440 
441  return( Projection.is_Okay() );
442 }
443 
444 
446 // //
447 // Parameters //
448 // //
450 
451 //---------------------------------------------------------
453 {
454  CSG_Parameters *pParameters = pParameter ? pParameter ->Get_Parameters() : NULL;
455  CSG_Tool *pTool = pParameters ? pParameters->Get_Tool () : NULL;
456 
457  if( pTool )
458  {
459  if( Flags & PARAMETER_CHECK_VALUES )
460  {
461  pTool->On_Parameter_Changed(pParameters, pParameter);
462  }
463 
464  if( Flags & PARAMETER_CHECK_ENABLE )
465  {
466  pTool->On_Parameters_Enable(pParameters, pParameter);
467  }
468 
469  return( 1 );
470  }
471 
472  return( 0 );
473 }
474 
475 //---------------------------------------------------------
477 {
478  return( 1 );
479 }
480 
481 //---------------------------------------------------------
483 {
484  return( 1 );
485 }
486 
487 
489 // //
490 // Extra Parameters //
491 // //
493 
494 //---------------------------------------------------------
495 CSG_Parameters * CSG_Tool::Add_Parameters(const CSG_String &Identifier, const CSG_String &Name, const CSG_String &Description)
496 {
497  CSG_Parameters *pParameters = new CSG_Parameters(); // (Name, Description, Identifier);
498 
499  pParameters->Create(this, Name, Description, Identifier);
501  pParameters->m_pTool = this;
502 
503  m_pParameters.Add(pParameters);
504 
505  return( pParameters );
506 }
507 
508 //---------------------------------------------------------
510 {
511  for(int i=0; i<Get_Parameters_Count(); i++)
512  {
513  if( Get_Parameters(i)->Cmp_Identifier(Identifier) )
514  {
515  return( Get_Parameters(i) );
516  }
517  }
518 
519  return( NULL );
520 }
521 
522 //---------------------------------------------------------
523 bool CSG_Tool::Dlg_Parameters(const CSG_String &Identifier)
524 {
525  CSG_Parameters *pParameters = Get_Parameters(Identifier);
526 
527  if( pParameters && (!pParameters->is_Managed() || Dlg_Parameters(pParameters, Get_Name())) )
528  {
529  pParameters->Set_History(History_Supplement);
530 
531  return( true );
532  }
533 
534  return( false );
535 }
536 
537 
539 // //
541 
542 //---------------------------------------------------------
543 bool CSG_Tool::Dlg_Parameters(CSG_Parameters *pParameters, const CSG_String &Caption)
544 {
545  return( pParameters ? Dlg_Parameters(*pParameters, Caption) : false );
546 }
547 
548 bool CSG_Tool::Dlg_Parameters(CSG_Parameters &Parameters, const CSG_String &Caption)
549 {
550  return( SG_UI_Dlg_Parameters(&Parameters, Caption.is_Empty() ? Get_Name() : Caption) );
551 }
552 
553 
555 // //
557 
558 //---------------------------------------------------------
559 void CSG_Tool::Set_Callback(bool bActive)
560 {
561  Parameters.Set_Callback(bActive);
562 
563  for(int i=0; i<Get_Parameters_Count(); i++)
564  {
565  Get_Parameters(i)->Set_Callback(bActive);
566  }
567 }
568 
569 //---------------------------------------------------------
571 {
572  Parameters.Set_Manager(pManager);
573 
574  for(int i=0; i<Get_Parameters_Count(); i++)
575  {
576  Get_Parameters(i)->Set_Manager(pManager);
577  }
578 
579  return( true );
580 }
581 
582 //---------------------------------------------------------
584 {
585  return( Parameters.Get_Manager() );
586 }
587 
588 //---------------------------------------------------------
590 {
592 
593  return( Get_Manager() );
594 }
595 
596 //---------------------------------------------------------
597 bool CSG_Tool::Delete_Manager(bool bDetachData, bool bReset)
598 {
599  CSG_Data_Manager *pManager = Get_Manager();
600 
601  if( pManager && pManager != &SG_Get_Data_Manager() )
602  {
603  pManager->Delete(bDetachData);
604 
605  delete(pManager);
606 
607  return( bReset ? Set_Manager(&SG_Get_Data_Manager()) : Set_Manager(NULL) );
608  }
609 
610  return( false );
611 }
612 
613 
615 // //
616 // //
617 // //
619 
620 //---------------------------------------------------------
622 {
623  Parameters.Push(pManager);
624 
625  for(int i=0; i<Get_Parameters_Count(); i++)
626  {
627  Get_Parameters(i)->Push(pManager);
628  }
629 
630  return( true );
631 }
632 
633 //---------------------------------------------------------
635 {
636  Parameters.Pop();
637 
638  for(int i=0; i<Get_Parameters_Count(); i++)
639  {
640  Get_Parameters(i)->Pop();
641  }
642 
643  return( true );
644 }
645 
646 
648 // //
649 // Progress //
650 // //
652 
653 //---------------------------------------------------------
655 {
656  m_bShow_Progress = bOn;
657 }
658 
659 //---------------------------------------------------------
660 bool CSG_Tool::Set_Progress(int Position, int Range) const
661 {
662  return( Set_Progress((double)Position / (double)Range) );
663 }
664 
665 //---------------------------------------------------------
666 bool CSG_Tool::Set_Progress(sLong Position, sLong Range) const
667 {
668  return( Set_Progress((double)Position / (double)Range) );
669 }
670 
671 //---------------------------------------------------------
672 bool CSG_Tool::Set_Progress(double Position, double Range) const
673 {
674  return( m_bShow_Progress ? SG_UI_Process_Set_Progress(Position, Range) : Process_Get_Okay(false) );
675 }
676 
677 //---------------------------------------------------------
678 bool CSG_Tool::Stop_Execution(bool bDialog)
679 {
680  m_bExecutes = false;
681 
682  return( SG_UI_Stop_Execution(bDialog) );
683 }
684 
685 
687 // //
688 // Message //
689 // //
691 
692 //---------------------------------------------------------
693 void CSG_Tool::Message_Dlg(const CSG_String &Text, const SG_Char *Caption)
694 {
695  SG_UI_Dlg_Message(Text, Caption && Caption[0] != '\0' ? Caption : Get_Name().c_str());
696 }
697 
698 //---------------------------------------------------------
699 bool CSG_Tool::Message_Dlg_Confirm(const CSG_String &Text, const SG_Char *Caption)
700 {
701  return( SG_UI_Dlg_Continue(Text, Caption && Caption[0] != '\0' ? Caption : Get_Name().c_str()) );
702 }
703 
704 //---------------------------------------------------------
706 {
707  switch( Error_ID )
708  {
709  default:
710  return( Error_Set(_TL("Unknown Error")) );
711 
713  return( Error_Set(_TL("Calculation Error")) );
714  }
715 }
716 
717 //---------------------------------------------------------
719 {
720  SG_UI_Msg_Add_Error(Text);
721 
722  m_Execution_Info += "\n____\n" + Text;
723 
724  if( SG_UI_Process_Get_Okay(false) && !m_bError_Ignore )
725  {
726  switch( SG_UI_Dlg_Error(Text, CSG_String::Format("%s: %s?", _TL("Error"), _TL("Ignore"))) )
727  {
728  default:
729  SG_UI_Process_Set_Okay(false);
730  break;
731 
732  case 1:
733  m_bError_Ignore = true;
734  break;
735  }
736  }
737 
738  return( SG_UI_Process_Get_Okay(false) );
739 }
740 
741 //---------------------------------------------------------
742 bool CSG_Tool::Error_Fmt(const char *Format, ...)
743 {
744  wxString _s;
745 
746  va_list argptr;
747 
748 #ifdef _SAGA_LINUX
749  // workaround as we only use wide characters
750  // since wx 2.9.4 so interpret strings as multibyte
751  wxString _Format(Format); _Format.Replace("%s", "%ls");
752  va_start(argptr, _Format);
753  _s.PrintfV(_Format, argptr);
754 #else
755  va_start(argptr, Format);
756  _s.PrintfV(Format, argptr);
757 #endif
758 
759  va_end(argptr);
760 
761  CSG_String s(&_s);
762 
763  return( Error_Set(s) );
764 }
765 
766 //---------------------------------------------------------
767 bool CSG_Tool::Error_Fmt(const wchar_t *Format, ...)
768 {
769  wxString _s;
770 
771  va_list argptr;
772 
773 #ifdef _SAGA_LINUX
774  // workaround as we only use wide characters
775  // since wx 2.9.4 so interpret strings as multibyte
776  wxString _Format(Format); _Format.Replace("%s", "%ls");
777  va_start(argptr, _Format);
778  _s.PrintfV(_Format, argptr);
779 #else
780  va_start(argptr, Format);
781  _s.PrintfV(Format, argptr);
782 #endif
783 
784  va_end(argptr);
785 
786  CSG_String s(&_s);
787 
788  return( Error_Set(s) );
789 }
790 
791 
793 // //
794 // DataObjects / GUI Interaction //
795 // //
797 
798 //---------------------------------------------------------
799 bool CSG_Tool::DataObject_Add(CSG_Data_Object *pDataObject, bool bShow)
800 {
801  if( Parameters.Get_Manager() )
802  {
803  Parameters.Get_Manager()->Add(pDataObject);
804  }
805 
806  if( Parameters.Get_Manager() == &SG_Get_Data_Manager() ) // prevent that local data manager send their data objects to gui
807  {
809  }
810 
811  return( true );
812 }
813 
814 //---------------------------------------------------------
816 {
817  for(int i=0; i<Parameters.Get_Count(); i++)
818  {
819  if( Parameters(i)->is_Output() )
820  {
821  if( Parameters(i)->is_DataObject() )
822  {
823  DataObject_Update(Parameters(i)->asDataObject(), false);
824  }
825  else if( Parameters(i)->is_DataObject_List() )
826  {
827  for(int j=0; j<Parameters(i)->asList()->Get_Item_Count(); j++)
828  {
829  DataObject_Update(Parameters(i)->asList()->Get_Item(j), false);
830  }
831  }
832  }
833  }
834 }
835 
836 
838 // //
839 // Static Data Message/Progress Functions //
840 // //
842 
843 //---------------------------------------------------------
844 bool CSG_Tool::Process_Get_Okay(bool bBlink)
845 {
846  return( SG_UI_Process_Get_Okay(bBlink) );
847 }
848 
849 //---------------------------------------------------------
851 {
853 }
854 
855 //---------------------------------------------------------
856 void CSG_Tool::Process_Set_Text(const char *Format, ...)
857 {
858  wxString _s;
859 
860  va_list argptr;
861 
862  #ifdef _SAGA_LINUX
863  // workaround as we only use wide characters
864  // since wx 2.9.4 so interpret strings as multibyte
865  wxString _Format(Format); _Format.Replace("%s", "%ls");
866  va_start(argptr, _Format);
867  _s.PrintfV(_Format, argptr);
868  #else
869  va_start(argptr, Format);
870  _s.PrintfV(Format, argptr);
871  #endif
872 
873  va_end(argptr);
874 
875  CSG_String s(&_s);
876 
878 }
879 
880 //---------------------------------------------------------
881 void CSG_Tool::Process_Set_Text(const wchar_t *Format, ...)
882 {
883  wxString _s;
884 
885  va_list argptr;
886 
887  #ifdef _SAGA_LINUX
888  // workaround as we only use wide characters
889  // since wx 2.9.4 so interpret strings as multibyte
890  wxString _Format(Format); _Format.Replace("%s", "%ls");
891  va_start(argptr, _Format);
892  _s.PrintfV(_Format, argptr);
893  #else
894  va_start(argptr, Format);
895  _s.PrintfV(Format, argptr);
896  #endif
897 
898  va_end(argptr);
899 
900  CSG_String s(&_s);
901 
903 }
904 
905 //---------------------------------------------------------
906 void CSG_Tool::Message_Add(const CSG_String &Text, bool bNewLine)
907 {
908  SG_UI_Msg_Add_Execution(Text, bNewLine);
909 
910  if( bNewLine )
911  {
912  m_Execution_Info += "\n";
913  }
914 
915  m_Execution_Info += Text;
916 }
917 
918 //---------------------------------------------------------
919 void CSG_Tool::Message_Fmt(const char *Format, ...)
920 {
921  wxString _s;
922 
923  va_list argptr;
924 
925  #ifdef _SAGA_LINUX
926  // workaround as we only use wide characters
927  // since wx 2.9.4 so interpret strings as multibyte
928  wxString _Format(Format); _Format.Replace("%s", "%ls");
929  va_start(argptr, _Format);
930  _s.PrintfV(_Format, argptr);
931  #else
932  va_start(argptr, Format);
933  _s.PrintfV(Format, argptr);
934  #endif
935 
936  va_end(argptr);
937 
938  CSG_String s(&_s);
939 
940  Message_Add(s, false);
941 }
942 
943 //---------------------------------------------------------
944 void CSG_Tool::Message_Fmt(const wchar_t *Format, ...)
945 {
946  wxString _s;
947 
948  va_list argptr;
949 
950  #ifdef _SAGA_LINUX
951  // workaround as we only use wide characters
952  // since wx 2.9.4 so interpret strings as multibyte
953  wxString _Format(Format); _Format.Replace("%s", "%ls");
954  va_start(argptr, _Format);
955  _s.PrintfV(_Format, argptr);
956  #else
957  va_start(argptr, Format);
958  _s.PrintfV(Format, argptr);
959  #endif
960 
961  va_end(argptr);
962 
963  CSG_String s(&_s);
964 
965  Message_Add(s, false);
966 }
967 
968 
970 // //
971 // Static Data Object Property Functions //
972 // //
974 
975 //---------------------------------------------------------
976 bool CSG_Tool::DataObject_Update(CSG_Data_Object *pDataObject, int Show)
977 {
978  return( SG_UI_DataObject_Update(pDataObject, Show, NULL) );
979 }
980 
981 bool CSG_Tool::DataObject_Update(CSG_Data_Object *pDataObject, double Minimum, double Maximum, int Show)
982 {
983  CSG_Parameters P;
984 
985  return( DataObject_Get_Parameters(pDataObject, P)
986  && P.Set_Parameter("STRETCH_UPDATE" , false ) // internal update flag
987  && P.Set_Parameter("STRETCH_DEFAULT" , 3 ) // manual
988  && P.Set_Parameter("METRIC_ZRANGE.MIN", Minimum)
989  && P.Set_Parameter("METRIC_ZRANGE.MAX", Maximum)
990  && SG_UI_DataObject_Update(pDataObject, Show, &P)
991  );
992 }
993 
994 //---------------------------------------------------------
996 {
997  return( SG_UI_DataObject_Colors_Get(pDataObject, &Colors) );
998 }
999 
1001 {
1002  CSG_Colors c(Colors);
1003 
1004  return( SG_UI_DataObject_Colors_Set(pDataObject, &c) );
1005 }
1006 
1007 bool CSG_Tool::DataObject_Set_Colors(CSG_Data_Object *pDataObject, int nColors, int Palette, bool bRevert)
1008 {
1009  CSG_Colors c(nColors, Palette, bRevert);
1010 
1011  return( SG_UI_DataObject_Colors_Set(pDataObject, &c) );
1012 }
1013 
1014 //---------------------------------------------------------
1016 {
1017  return( SG_UI_DataObject_Params_Get(pDataObject, &Parameters) );
1018 }
1019 
1021 {
1022  return( SG_UI_DataObject_Params_Set(pDataObject, &Parameters) );
1023 }
1024 
1026 {
1027  if( pDataObject == pCopy )
1028  {
1029  return( true );
1030  }
1031 
1032  CSG_Parameters P;
1033 
1034  if( DataObject_Get_Parameters(pCopy, P) )
1035  {
1036  P.Del_Parameter("OBJECT_NODATA" );
1037  P.Del_Parameter("OBJECT_Z_FACTOR");
1038  P.Del_Parameter("OBJECT_Z_OFFSET");
1039 
1040  return( DataObject_Set_Parameters(pDataObject, P) );
1041  }
1042 
1043  return( false );
1044 }
1045 
1046 //---------------------------------------------------------
1048 {
1049  static CSG_Parameters P;
1050 
1051  return( DataObject_Get_Parameters(pDataObject, P) ? P(ID) : NULL );
1052 }
1053 
1055 {
1056  CSG_Parameters P;
1057 
1058  return( P._Add(pParameter) != NULL && DataObject_Set_Parameters(pDataObject, P) );
1059 }
1060 
1062 {
1063  CSG_Parameter *pParameter = DataObject_Get_Parameter(pCopy, ID);
1064 
1065  return( DataObject_Set_Parameter(pDataObject, pParameter) );
1066 }
1067 
1068 bool CSG_Tool::DataObject_Set_Parameter (CSG_Data_Object *pDataObject, const CSG_String &ID, int Value)
1069 {
1070  CSG_Parameters P;
1071 
1072  if( DataObject_Get_Parameters(pDataObject, P) && P(ID) )
1073  {
1074  return( P(ID)->Set_Value(Value) && DataObject_Set_Parameter(pDataObject, P(ID)) );
1075  }
1076 
1077  return( false );
1078 }
1079 
1080 bool CSG_Tool::DataObject_Set_Parameter (CSG_Data_Object *pDataObject, const CSG_String &ID, double Value)
1081 {
1082  CSG_Parameters P;
1083 
1084  if( DataObject_Get_Parameters(pDataObject, P) && P(ID) )
1085  {
1086  return( P(ID)->Set_Value(Value) && DataObject_Set_Parameter(pDataObject, P(ID)) );
1087  }
1088 
1089  return( false );
1090 }
1091 
1092 bool CSG_Tool::DataObject_Set_Parameter (CSG_Data_Object *pDataObject, const CSG_String &ID, void *Value)
1093 {
1094  CSG_Parameters P;
1095 
1096  if( DataObject_Get_Parameters(pDataObject, P) && P(ID) )
1097  {
1098  return( P(ID)->Set_Value(Value) && DataObject_Set_Parameter(pDataObject, P(ID)) );
1099  }
1100 
1101  return( false );
1102 }
1103 
1104 bool CSG_Tool::DataObject_Set_Parameter (CSG_Data_Object *pDataObject, const CSG_String &ID, const SG_Char *Value)
1105 {
1106  CSG_Parameters P;
1107 
1108  if( DataObject_Get_Parameters(pDataObject, P) && P(ID) )
1109  {
1110  return( P(ID)->Set_Value(Value) && DataObject_Set_Parameter(pDataObject, P(ID)) );
1111  }
1112 
1113  return( false );
1114 }
1115 
1116 bool CSG_Tool::DataObject_Set_Parameter (CSG_Data_Object *pDataObject, const CSG_String &ID, double loVal, double hiVal) // Range Parameter
1117 {
1118  CSG_Parameters P;
1119 
1120  if( DataObject_Get_Parameters(pDataObject, P) && P(ID) && P(ID)->Get_Type() == PARAMETER_TYPE_Range )
1121  {
1122  return( P(ID)->asRange()->Set_Range(loVal, hiVal) && DataObject_Set_Parameter(pDataObject, P(ID)) );
1123  }
1124 
1125  return( false );
1126 }
1127 
1128 
1130 // //
1131 // //
1132 // //
1134 
1135 //---------------------------------------------------------
1139 //---------------------------------------------------------
1140 bool CSG_Tool::Set_Parameter(const CSG_String &ID, CSG_Parameter *pValue) { return( Parameters.Set_Parameter(ID, pValue) ); }
1141 bool CSG_Tool::Set_Parameter(const char *ID, CSG_Parameter *pValue) { return( Parameters.Set_Parameter(ID, pValue) ); }
1142 bool CSG_Tool::Set_Parameter(const wchar_t *ID, CSG_Parameter *pValue) { return( Parameters.Set_Parameter(ID, pValue) ); }
1143 
1144 //---------------------------------------------------------
1148 //---------------------------------------------------------
1149 bool CSG_Tool::Set_Parameter(const CSG_String &ID, int Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1150 bool CSG_Tool::Set_Parameter(const char *ID, int Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1151 bool CSG_Tool::Set_Parameter(const wchar_t *ID, int Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1152 
1153 //---------------------------------------------------------
1157 //---------------------------------------------------------
1158 bool CSG_Tool::Set_Parameter(const CSG_String &ID, double Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1159 bool CSG_Tool::Set_Parameter(const char *ID, double Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1160 bool CSG_Tool::Set_Parameter(const wchar_t *ID, double Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1161 
1162 //---------------------------------------------------------
1166 //---------------------------------------------------------
1167 bool CSG_Tool::Set_Parameter(const CSG_String &ID, void *Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1168 bool CSG_Tool::Set_Parameter(const char *ID, void *Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1169 bool CSG_Tool::Set_Parameter(const wchar_t *ID, void *Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1170 
1171 //---------------------------------------------------------
1175 //---------------------------------------------------------
1176 bool CSG_Tool::Set_Parameter(const CSG_String &ID, const CSG_String &Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1177 bool CSG_Tool::Set_Parameter(const char *ID, const CSG_String &Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1178 bool CSG_Tool::Set_Parameter(const wchar_t *ID, const CSG_String &Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1179 
1180 //---------------------------------------------------------
1184 //---------------------------------------------------------
1185 bool CSG_Tool::Set_Parameter(const CSG_String &ID, const char *Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1186 bool CSG_Tool::Set_Parameter(const char *ID, const char *Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1187 bool CSG_Tool::Set_Parameter(const wchar_t *ID, const char *Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1188 
1189 //---------------------------------------------------------
1193 //---------------------------------------------------------
1194 bool CSG_Tool::Set_Parameter(const CSG_String &ID, const wchar_t *Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1195 bool CSG_Tool::Set_Parameter(const char *ID, const wchar_t *Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1196 bool CSG_Tool::Set_Parameter(const wchar_t *ID, const wchar_t *Value, int Type) { return( Parameters.Set_Parameter(ID, Value, Type) ); }
1197 
1198 
1200 // //
1201 // //
1202 // //
1204 
1205 //---------------------------------------------------------
1211 bool CSG_Tool::Reset(bool bManager)
1212 {
1214 
1215  if( bManager )
1216  {
1217  Reset_Manager();
1218  }
1219 
1220  for(int i=0; i<Get_Parameters_Count(); i++)
1221  {
1222  Get_Parameters(i)->Restore_Defaults(true);
1223  }
1224 
1225  return( Parameters.Restore_Defaults(true) );
1226 }
1227 
1228 //---------------------------------------------------------
1234 {
1235  return( Set_Manager(&SG_Get_Data_Manager()) );
1236 }
1237 
1238 //---------------------------------------------------------
1244 {
1245  for(int i=0; i<Get_Parameters_Count(); i++)
1246  {
1248  }
1249 
1250  return( Parameters.Reset_Grid_System() );
1251 }
1252 
1253 //---------------------------------------------------------
1259 {
1260  return( Parameters.Set_Grid_System(System) );
1261 }
1262 
1263 //---------------------------------------------------------
1269 {
1270  return( Parameters.Get_Grid_System() );
1271 }
1272 
1273 
1275 // //
1276 // //
1277 // //
1279 
1280 //---------------------------------------------------------
1282 {
1283  _Update_Parameter_States(&Parameters);
1284 
1285  for(int i=0; i<Get_Parameters_Count(); i++)
1286  {
1287  _Update_Parameter_States(Get_Parameters(i));
1288  }
1289 
1290  return( true );
1291 }
1292 
1293 //---------------------------------------------------------
1294 void CSG_Tool::_Update_Parameter_States(CSG_Parameters *pParameters)
1295 {
1296  if( pParameters )
1297  {
1298  for(int i=0; i<pParameters->Get_Count(); i++)
1299  {
1300  CSG_Parameter *pParameter = pParameters->Get_Parameter(i);
1301 
1302  if( pParameter->Get_Type() == PARAMETER_TYPE_Parameters )
1303  {
1304  _Update_Parameter_States(pParameter->asParameters());
1305  }
1306  else
1307  {
1308  On_Parameters_Enable(pParameters, pParameter);
1309  }
1310  }
1311  }
1312 }
1313 
1314 
1316 // //
1317 // Script //
1318 // //
1320 
1321 //---------------------------------------------------------
1322 CSG_String CSG_Tool::Get_Script(Script_Format Format, bool bHeader, int Arguments, bool bWrapArgs)
1323 {
1324  switch( Format )
1325  {
1326  case Script_Format::CMD_Shell : return( _Get_Script_CMD ( bHeader, Arguments > 0, bWrapArgs, false ) );
1327  case Script_Format::CMD_Batch : return( _Get_Script_CMD ( bHeader, Arguments > 0, bWrapArgs, true ) );
1328  case Script_Format::CMD_Usage : return( _Get_Script_CMD_Usage ( ) );
1329 
1330  case Script_Format::Toolchain : return( CSG_Tool_Chain::Get_Script(this, bHeader, Arguments > 0 ) );
1331 
1332  case Script_Format::Python : return( _Get_Script_Python ( bHeader, Arguments > 0 ) );
1333 
1334  case Script_Format::Python_Wrapper_Func_Name : return( _Get_Script_Python_Wrap ( bHeader, true , false, 1, bWrapArgs ) );
1335  case Script_Format::Python_Wrapper_Func_ID : return( _Get_Script_Python_Wrap ( bHeader, false, false, 1, bWrapArgs ) );
1336 
1337  case Script_Format::Python_Wrapper_Call_Name : return( _Get_Script_Python_Wrap ( bHeader, true , true , Arguments, bWrapArgs ) );
1338  case Script_Format::Python_Wrapper_Call_ID : return( _Get_Script_Python_Wrap ( bHeader, false, true , Arguments, bWrapArgs ) );
1339  }
1340 
1341  return( "" );
1342 }
1343 
1344 
1346 // //
1348 
1349 //---------------------------------------------------------
1350 CSG_String CSG_Tool::_Get_Script_CMD(bool bHeader, bool bAllArguments, bool bWrapArgs, bool bBatch)
1351 {
1352  CSG_String Script;
1353 
1354  if( bHeader )
1355  {
1356  if( bBatch ) // DOS/Windows Batch Script
1357  {
1358  Script += "@ECHO OFF\n\n";
1359  Script += "PUSHD %~dp0\n\n";
1360  Script += "REM SET SAGA_TLB=C:\\MyTools\n\n";
1361  Script += "SET SAGA_CMD=" + SG_UI_Get_Application_Path(true) + "saga_cmd.exe\n\n";
1362  Script += "REM Tool: " + Get_Name() + "\n\n";
1363  Script += "%SAGA_CMD%";
1364  }
1365  else // Bash Shell Script
1366  {
1367  Script += "#!/bin/bash\n\n";
1368  Script += "# export SAGA_TLB=~/mytools\n\n";
1369  Script += "# tool: " + Get_Name() + "\n\n";
1370  Script += "saga_cmd";
1371  }
1372  }
1373  else
1374  {
1375  Script += "saga_cmd";
1376  }
1377 
1378  //-----------------------------------------------------
1379  Script += Get_Library().Contains(" ") // white space? use quotation marks!
1380  ? " \"" + Get_Library() + "\""
1381  : " " + Get_Library();
1382 
1383  Script += Get_ID().Contains (" ") // white space? use quotation marks!
1384  ? " \"" + Get_ID () + "\""
1385  : " " + Get_ID ();
1386 
1387  _Get_Script_CMD(Script, Get_Parameters(), bAllArguments, bWrapArgs, bBatch);
1388 
1389  for(int i=0; i<Get_Parameters_Count(); i++)
1390  {
1391  _Get_Script_CMD(Script, Get_Parameters(i), bAllArguments, bWrapArgs, bBatch);
1392  }
1393 
1394  //-----------------------------------------------------
1395  if( bHeader )
1396  {
1397  Script += bBatch ? "\n\nPAUSE\n" : "\n";
1398  }
1399 
1400  return( Script );
1401 }
1402 
1403 //---------------------------------------------------------
1404 void CSG_Tool::_Get_Script_CMD(CSG_String &Script, CSG_Parameters *pParameters, bool bAllArguments, bool bWrapArgs, bool bBatch)
1405 {
1406  #define GET_ID1(p) (p->Get_Parameters()->Get_Identifier().Length() > 0 \
1407  ? CSG_String::Format("%s_%s", p->Get_Parameters()->Get_Identifier().c_str(), p->Get_Identifier()) \
1408  : CSG_String::Format(p->Get_Identifier())).c_str()
1409 
1410  #define GET_ID2(p, s) CSG_String::Format("%s_%s", GET_ID1(p), s).c_str()
1411 
1412  const char *Prefix = !bWrapArgs ? " -" : bBatch ? " ^\n -" : " \\\n -";
1413  const char *StrFmt = bBatch ? "%s=\"%s\"" : "%s=\\\"\"%s\"\\\"";
1414 
1415  //-----------------------------------------------------
1416  for(int iParameter=0; iParameter<pParameters->Get_Count(); iParameter++)
1417  {
1418  CSG_Parameter *p = pParameters->Get_Parameter(iParameter);
1419 
1420  if( !bAllArguments && (!p->is_Enabled(false) || p->is_Information() || !p->do_UseInCMD()) )
1421  {
1422  continue;
1423  }
1424 
1425  switch( p->Get_Type() )
1426  {
1427  default:
1428  break;
1429 
1430  case PARAMETER_TYPE_Bool :
1431  Script += Prefix + CSG_String::Format("%s=%d", GET_ID1(p), p->asBool() ? 1 : 0);
1432  break;
1433 
1434  case PARAMETER_TYPE_Int :
1436  case PARAMETER_TYPE_Choice :
1438  Script += Prefix + CSG_String::Format("%s=%d", GET_ID1(p), p->asInt());
1439  break;
1440 
1441  case PARAMETER_TYPE_Choices :
1443  if( p->asString() && *p->asString() )
1444  {
1445  Script += Prefix + CSG_String::Format(StrFmt, GET_ID1(p), p->asString());
1446  }
1447  break;
1448 
1449  case PARAMETER_TYPE_Color :
1450  Script += Prefix + CSG_String::Format("%s=\"%s\"", GET_ID1(p), SG_Color_To_Text(p->asColor()).c_str());
1451  break;
1452 
1453  case PARAMETER_TYPE_Double :
1454  case PARAMETER_TYPE_Degree :
1455  Script += Prefix + CSG_String::Format("%s=%g", GET_ID1(p), p->asDouble());
1456  break;
1457 
1458  case PARAMETER_TYPE_Range :
1459  Script += Prefix + CSG_String::Format("%s=%g", GET_ID2(p, SG_T("MIN")), p->asRange()->Get_Min());
1460  Script += Prefix + CSG_String::Format("%s=%g", GET_ID2(p, SG_T("MAX")), p->asRange()->Get_Max());
1461  break;
1462 
1463  case PARAMETER_TYPE_String :
1464  if( ((CSG_Parameter_String *)p)->is_Password() )
1465  {
1466  Script += Prefix + CSG_String::Format("%s=\"***\"", GET_ID1(p));
1467  break;
1468  }
1469 
1470  case PARAMETER_TYPE_Date :
1471  case PARAMETER_TYPE_Text :
1473  Script += Prefix + CSG_String::Format(StrFmt, GET_ID1(p), p->asString());
1474  break;
1475 
1477  Script += Prefix + CSG_String::Format(StrFmt, GET_ID1(p), p->asString());
1478  break;
1479 
1481  if( p->Get_Children_Count() == 0 )
1482  {
1483  Script += Prefix + CSG_String::Format("%s=%d", GET_ID2(p, SG_T("NX")), p->asGrid_System()->Get_NX ());
1484  Script += Prefix + CSG_String::Format("%s=%d", GET_ID2(p, SG_T("NY")), p->asGrid_System()->Get_NY ());
1485  Script += Prefix + CSG_String::Format("%s=%g", GET_ID2(p, SG_T( "X")), p->asGrid_System()->Get_XMin ());
1486  Script += Prefix + CSG_String::Format("%s=%g", GET_ID2(p, SG_T( "Y")), p->asGrid_System()->Get_YMin ());
1487  Script += Prefix + CSG_String::Format("%s=%g", GET_ID2(p, SG_T( "D")), p->asGrid_System()->Get_Cellsize());
1488  }
1489  break;
1490 
1492  case PARAMETER_TYPE_Grid :
1493  case PARAMETER_TYPE_Grids :
1494  case PARAMETER_TYPE_Table :
1495  case PARAMETER_TYPE_Shapes :
1496  case PARAMETER_TYPE_TIN :
1498  if( p->is_Input() )
1499  {
1500  Script += Prefix + CSG_String::Format(StrFmt, GET_ID1(p), SG_Get_Data_Manager().Exists(p->asDataObject()) && p->asDataObject()->Get_File_Name() ? p->asDataObject()->Get_File_Name() : SG_T("input file"));
1501  }
1502  else
1503  {
1504  CSG_String File(p->Get_Name());
1505 
1506  switch( p->Get_DataObject_Type() )
1507  {
1508  case SG_DATAOBJECT_TYPE_Grid : File += ".sg-grd-z"; break;
1509  case SG_DATAOBJECT_TYPE_Grids : File += ".sg-gds-z"; break;
1510  case SG_DATAOBJECT_TYPE_Table : File += ".txt" ; break;
1511  case SG_DATAOBJECT_TYPE_Shapes : File += ".geojson" ; break;
1512  case SG_DATAOBJECT_TYPE_PointCloud: File += ".sg-pts-z"; break;
1513  case SG_DATAOBJECT_TYPE_TIN : File += ".geojson" ; break;
1514  default : File += ".dat" ; break;
1515  }
1516 
1517  Script += Prefix + CSG_String::Format(StrFmt, GET_ID1(p), File.c_str());
1518  }
1519  break;
1520 
1527  if( p->is_Input() )
1528  {
1529  Script += Prefix + CSG_String::Format("%s=", GET_ID1(p));
1530 
1531  if( p->asList()->Get_Item_Count() == 0 )
1532  {
1533  Script += "file(s)";
1534  }
1535  else
1536  {
1537  Script += SG_File_Exists(p->asList()->Get_Item(0)->Get_File_Name())
1538  ? p->asList()->Get_Item(0)->Get_File_Name() : _TL("memory");
1539 
1540  for(int iObject=1; iObject<p->asList()->Get_Item_Count(); iObject++)
1541  {
1542  Script += ";";
1543  Script += SG_File_Exists(p->asList()->Get_Item(iObject)->Get_File_Name())
1544  ? p->asList()->Get_Item(iObject)->Get_File_Name() : _TL("memory");
1545  }
1546  }
1547  }
1548  else
1549  {
1550  Script += Prefix + CSG_String::Format(StrFmt, GET_ID1(p), p->Get_Name());
1551  }
1552  break;
1553  }
1554  }
1555 }
1556 
1557 
1559 // //
1561 
1562 //---------------------------------------------------------
1563 CSG_String CSG_Tool::_Get_Script_CMD_Usage(void)
1564 {
1565  wxCmdLineParser Parser; Parser.SetSwitchChars("-");
1566 
1567  _Get_Script_CMD_Usage(Get_Parameters(), Parser);
1568 
1569  for(int i=0; i<Get_Parameters_Count(); i++)
1570  {
1571  _Get_Script_CMD_Usage(Get_Parameters(i), Parser);
1572  }
1573 
1574  wxString Usage = wxString::Format("\nUsage: saga_cmd %s %s %s", Get_Library().c_str(), Get_ID().c_str(),
1575  Parser.GetUsageString().AfterFirst(' ').AfterFirst(' ')
1576  );
1577 
1578  CSG_String _Usage(&Usage);
1579 
1580  return( _Usage );
1581 }
1582 
1583 //---------------------------------------------------------
1584 void CSG_Tool::_Get_Script_CMD_Usage(CSG_Parameters *pParameters, wxCmdLineParser &Parser)
1585 {
1586  for(int i=0; i<pParameters->Get_Count(); i++)
1587  {
1588  CSG_Parameter *pParameter = pParameters->Get_Parameter(i);
1589 
1590  //-------------------------------------------------
1591  if( pParameter->is_DataObject() ) // reset data object parameters, avoids problems when tool is called more than once without un-/reloading
1592  {
1593  pParameter->Set_Value(DATAOBJECT_NOTSET);
1594  }
1595  else if( pParameter->is_DataObject_List() )
1596  {
1597  pParameter->asList()->Del_Items();
1598  }
1599 
1600  //-------------------------------------------------
1601  if( pParameter->do_UseInCMD() == false )
1602  {
1603  continue;
1604  }
1605 
1606  wxString Description = pParameter->Get_Description(
1608  ).c_str();
1609 
1610  Description.Replace("\xb", ""); // unicode problem: quick'n'dirty bug fix, to be replaced
1611 
1612  wxString ID(pParameter->Get_CmdID().c_str());
1613 
1614  if( pParameter->is_Input() || pParameter->is_Output() )
1615  {
1616  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_STRING, wxCMD_LINE_NEEDS_SEPARATOR|wxCMD_LINE_PARAM_OPTIONAL);
1617  }
1618 
1619  //-------------------------------------------------
1620  else if( pParameter->is_Option() && !pParameter->is_Information() )
1621  {
1622  switch( pParameter->Get_Type() )
1623  {
1625  _Get_Script_CMD_Usage(pParameter->asParameters(), Parser);
1626  break;
1627 
1628  case PARAMETER_TYPE_Bool :
1629  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL);
1630  break;
1631 
1632  case PARAMETER_TYPE_Int :
1633  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_NUMBER, wxCMD_LINE_PARAM_OPTIONAL);
1634  break;
1635 
1637  case PARAMETER_TYPE_Choice :
1638  case PARAMETER_TYPE_Choices :
1641  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL);
1642  break;
1643 
1644  case PARAMETER_TYPE_Double :
1645  case PARAMETER_TYPE_Degree :
1646  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_DOUBLE, wxCMD_LINE_PARAM_OPTIONAL);
1647  break;
1648 
1649  case PARAMETER_TYPE_Date :
1650  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_DATE , wxCMD_LINE_PARAM_OPTIONAL);
1651  break;
1652 
1653  case PARAMETER_TYPE_Range :
1654  Parser.AddOption(ID + "_MIN", wxEmptyString, Description, wxCMD_LINE_VAL_DOUBLE, wxCMD_LINE_PARAM_OPTIONAL);
1655  Parser.AddOption(ID + "_MAX", wxEmptyString, Description, wxCMD_LINE_VAL_DOUBLE, wxCMD_LINE_PARAM_OPTIONAL);
1656  break;
1657 
1658  case PARAMETER_TYPE_Color :
1659  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL);
1660  break;
1661 
1662  case PARAMETER_TYPE_Colors :
1663  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL);
1664  break;
1665 
1666  case PARAMETER_TYPE_String :
1667  case PARAMETER_TYPE_Text :
1669  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL);
1670  break;
1671 
1673  Parser.AddOption(ID, wxEmptyString, Description, wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL);
1674  break;
1675 
1677  if( pParameter->Get_Children_Count() == 0 )
1678  {
1679  Parser.AddOption(ID + "_D" , wxEmptyString, _TL("Cell Size" ), wxCMD_LINE_VAL_DOUBLE, wxCMD_LINE_PARAM_OPTIONAL);
1680  Parser.AddOption(ID + "_X" , wxEmptyString, _TL("Lower Left Center Cell X-Coordinate"), wxCMD_LINE_VAL_DOUBLE, wxCMD_LINE_PARAM_OPTIONAL);
1681  Parser.AddOption(ID + "_Y" , wxEmptyString, _TL("Lower Left Center Cell Y-Coordinate"), wxCMD_LINE_VAL_DOUBLE, wxCMD_LINE_PARAM_OPTIONAL);
1682  Parser.AddOption(ID + "_NX" , wxEmptyString, _TL("Number of Columns" ), wxCMD_LINE_VAL_NUMBER, wxCMD_LINE_PARAM_OPTIONAL);
1683  Parser.AddOption(ID + "_NY" , wxEmptyString, _TL("Number of Rows" ), wxCMD_LINE_VAL_NUMBER, wxCMD_LINE_PARAM_OPTIONAL);
1684  Parser.AddOption(ID + "_FILE", wxEmptyString, _TL("Grid File" ), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL);
1685  }
1686  break;
1687 
1688  default:
1689  break;
1690  }
1691  }
1692  }
1693 }
1694 
1695 
1697 // //
1699 
1700 //---------------------------------------------------------
1701 CSG_String CSG_Tool::_Get_Script_Python(bool bHeader, bool bAllArguments)
1702 {
1703  CSG_String Script, Name(Get_Name());
1704 
1705  Name.Replace(" ", "_");
1706  Name.Replace("(", "");
1707  Name.Replace(")", "");
1708  Name.Replace("[", "");
1709  Name.Replace("]", "");
1710  Name.Replace(".", "");
1711  Name.Replace(",", "");
1712  Name.Replace("/", "");
1713  Name.Replace("-", "");
1714 
1715  //-----------------------------------------------------
1716  if( bHeader )
1717  {
1718  Script += "#! /usr/bin/env python\n";
1719  Script += "\n";
1720  Script += "#_________________________________________\n";
1721  Script += "##########################################\n";
1722  Script += "\n";
1723 #ifdef _SAGA_MSW
1724  CSG_String AppPath = SG_UI_Get_Application_Path(true); AppPath.Replace("\\", "/");
1725  Script += "# Initialize the environment...\n";
1726  Script += "\n";
1727  Script += "# Windows: Let the 'SAGA_PATH' environment variable point to\n";
1728  Script += "# the SAGA installation folder before importing 'saga_api'!\n";
1729  Script += "# This can be defined globally in the Windows system or\n";
1730  Script += "# user environment variable settings, in the 'PySAGA/__init__.py'\n";
1731  Script += "# file, or in the individual Python script itself. To do the latter\n";
1732  Script += "# just uncomment the following line and adjust the path accordingly:\n";
1733  Script += "###import os; os.environ['SAGA_PATH'] = '" + AppPath + "'\n";
1734  Script += "\n";
1735  Script += "# Windows: The most convenient way to make PySAGA available to all your\n";
1736  Script += "# Python scripts is to copy the PySAGA folder to the 'Lib/site-packages/'\n";
1737  Script += "# folder of your Python installation. If don't want to do this or if you\n";
1738  Script += "# don't have the rights to do so, you can also copy it to the folder with\n";
1739  Script += "# the Python scripts in which you want to use PySAGA, or alternatively\n";
1740  Script += "# you can add the path containing the PySAGA folder (e.g. the path to your\n";
1741  Script += "# SAGA installation) to the PYTHONPATH environment variable. To do this\n";
1742  Script += "# from within your script you can also take the following command (just\n";
1743  Script += "# uncomment the following line and adjust the path accordingly):\n";
1744  Script += "###import sys; sys.path.insert(1, '" + AppPath + "')\n";
1745  Script += "\n";
1746 #endif // _SAGA_MSW
1747  Script += "# Import saga_api from PySAGA:\n";
1748  Script += "from PySAGA import saga_api\n";
1749  Script += "\n";
1750  Script += "\n";
1751  Script += "#_________________________________________\n";
1752  Script += "##########################################\n";
1753  Script += "def Run_" + Name + "(Results):\n";
1754  }
1755 
1756  //-----------------------------------------------------
1757  if( bHeader ) Script += " # Get the tool:\n";
1758  Script += " Tool = saga_api.SG_Get_Tool_Library_Manager().Get_Tool('" + Get_Library() + "', '" + Get_ID() + "')\n";
1759  Script += " if not Tool:\n";
1760  Script += " saga_api.SG_UI_Msg_Add_Error('Failed to request tool: " + Get_Name() + "')\n";
1761  Script += " return False\n";
1762  Script += "\n";
1763  if( bHeader ) Script += " # Set the parameter interface:\n";
1764  Script += " Tool.Reset()\n";
1765 
1766  //-------------------------------------------------
1767  _Get_Script_Python(Script, Get_Parameters(), bAllArguments);
1768 
1769  for(int iParameters=0; iParameters<Get_Parameters_Count(); iParameters++)
1770  {
1771  _Get_Script_Python(Script, Get_Parameters(iParameters), bAllArguments, Get_Parameters(iParameters)->Get_Identifier());
1772  }
1773 
1774  //-------------------------------------------------
1775  Script += "\n";
1776  if( bHeader ) Script += " # Execute the tool:\n";
1777  Script += " if not Tool.Execute():\n";
1778  Script += " saga_api.SG_UI_Msg_Add_Error('failed to execute tool: ' + Tool.Get_Name().c_str())\n";
1779  Script += " return False\n";
1780  Script += "\n";
1781  if( bHeader ) Script += " # Request the results:\n";
1782 
1783  for(int iParameter=0; iParameter<Get_Parameters()->Get_Count(); iParameter++)
1784  {
1785  CSG_Parameter *p = Get_Parameters()->Get_Parameter(iParameter);
1786 
1787  if( p->is_Output() )
1788  {
1789  CSG_String id(p->Get_Identifier()), type, ext;
1790 
1791  switch( p->Get_DataObject_Type() )
1792  {
1793  case SG_DATAOBJECT_TYPE_Grid : type = "Grid" ; ext = "sg-grd-z"; break;
1794  case SG_DATAOBJECT_TYPE_Grids : type = "Grids" ; ext = "sg-gds-z"; break;
1795  case SG_DATAOBJECT_TYPE_Table : type = "Table" ; ext = "txt" ; break;
1796  case SG_DATAOBJECT_TYPE_Shapes : type = "Shapes" ; ext = "geojson" ; break;
1797  case SG_DATAOBJECT_TYPE_PointCloud: type = "PointCloud"; ext = "sg-pts-z"; break;
1798  case SG_DATAOBJECT_TYPE_TIN : type = "TIN" ; ext = "geojson" ; break;
1799  default : type = "" ; ext = "" ; break;
1800  }
1801 
1802  if( p->is_DataObject() )
1803  {
1804  Script += " Data = Tool.Get_Parameter('" + id + "').as" + type + "()\n";
1805 
1806  if( bHeader )
1807  {
1808  Script += " Data.Save('{:s}/{:s}.{:s}'.format(Results, Data.Get_Name(), '" + ext + "'))\n\n";
1809  }
1810  }
1811  else if( p->is_DataObject_List() )
1812  {
1813  Script += " List = Tool.Get_Parameter('" + id + "').as" + type + "List()\n";
1814  Script += " for i in range(0, List.Get_Item_Count()):\n";
1815 
1816  if( bHeader )
1817  {
1818  Script += " List.Get_Item(i).Save('{:s}/{:s}_{:d}.{:s}'.format(Results, List.Get_Name(), i, '" + ext + "'))\n\n";
1819  }
1820  else
1821  {
1822  Script += " Data = List.Get_Item(i)\n";
1823  }
1824  }
1825  }
1826  }
1827 
1828  //-----------------------------------------------------
1829  if( bHeader )
1830  {
1831  Script += " # job is done, free memory resources:\n";
1832  Script += " saga_api.SG_Get_Data_Manager().Delete_All()\n";
1833  Script += "\n";
1834  Script += " return True\n";
1835  Script += "\n";
1836  Script += "\n";
1837  Script += "#_________________________________________\n";
1838  Script += "##########################################\n";
1839  Script += "print('This is a simple template for using a SAGA tool through Python.')\n";
1840  Script += "print('Please edit the script to make it work properly before using it!')\n";
1841  Script += "\n";
1842  Script += "# Run_" + Name + "('.')\n";
1843  }
1844 
1845  return( Script );
1846 }
1847 
1848 //---------------------------------------------------------
1849 void CSG_Tool::_Get_Script_Python(CSG_String &Script, CSG_Parameters *pParameters, bool bAllArguments, const CSG_String &Prefix)
1850 {
1851  for(int iParameter=0; iParameter<pParameters->Get_Count(); iParameter++)
1852  {
1853  CSG_Parameter *p = pParameters->Get_Parameter(iParameter);
1854 
1855  if( !bAllArguments && (!p->is_Enabled(false) || p->is_Information() || !p->do_UseInCMD()) )
1856  {
1857  continue;
1858  }
1859 
1860  CSG_String ID(p->Get_Identifier());
1861 
1862  if( !Prefix.is_Empty() )
1863  {
1864  ID.Prepend(Prefix + ".");
1865  }
1866 
1867  switch( p->Get_Type() )
1868  {
1869  default:
1870  break;
1871 
1872  case PARAMETER_TYPE_Bool :
1873  Script += CSG_String::Format(" Tool.Set_Parameter('%s', %s)\n", ID.c_str(), p->asBool() ? SG_T("True") : SG_T("False"));
1874  break;
1875 
1876  case PARAMETER_TYPE_Int :
1877  Script += CSG_String::Format(" Tool.Set_Parameter('%s', %d)\n", ID.c_str(), p->asInt());
1878  break;
1879 
1881  case PARAMETER_TYPE_Choice :
1882  Script += CSG_String::Format(" Tool.Set_Parameter('%s', %d) # '%s'\n", ID.c_str(), p->asInt(), p->asString());
1883  break;
1884 
1885  case PARAMETER_TYPE_Choices :
1888  Script += CSG_String::Format(" Tool.Set_Parameter('%s', '%s')\n", ID.c_str(), p->asString());
1889  break;
1890 
1891  case PARAMETER_TYPE_Color :
1892  Script += CSG_String::Format(" Tool.Set_Parameter('%s', '%s')\n", ID.c_str(), SG_Color_To_Text(p->asColor()).c_str());
1893  break;
1894 
1895  case PARAMETER_TYPE_Double :
1896  case PARAMETER_TYPE_Degree :
1897  Script += CSG_String::Format(" Tool.Set_Parameter('%s', %g)\n", ID.c_str(), p->asDouble());
1898  break;
1899 
1900  case PARAMETER_TYPE_Range :
1901  Script += CSG_String::Format(" Tool.Set_Parameter('%s.MIN', %g)\n", ID.c_str(), p->asRange()->Get_Min());
1902  Script += CSG_String::Format(" Tool.Set_Parameter('%s.MAX', %g)\n", ID.c_str(), p->asRange()->Get_Max());
1903  break;
1904 
1905  case PARAMETER_TYPE_String :
1906  if( ((CSG_Parameter_String *)p)->is_Password() )
1907  {
1908  Script += CSG_String::Format(" Tool.Set_Parameter('%s', '***')\n", ID.c_str());
1909  break;
1910  }
1911 
1912  case PARAMETER_TYPE_Date :
1913  case PARAMETER_TYPE_Text :
1915  Script += CSG_String::Format(" Tool.Set_Parameter('%s', '%s')\n", ID.c_str(), p->asString());
1916  break;
1917 
1919  Script += CSG_String::Format(" Tool.Set_Parameter('%s', saga_api.SG_Create_Table('table.txt'))\n", ID.c_str());
1920  break;
1921 
1923  if( p->Get_Children_Count() == 0 )
1924  {
1925  Script += CSG_String::Format(" Tool.Set_Parameter('%s', saga_api.CSG_Grid_System(%g, %g, %g, %d, %d))\n", ID.c_str(),
1926  p->asGrid_System()->Get_Cellsize(),
1927  p->asGrid_System()->Get_XMin(), p->asGrid_System()->Get_YMin(),
1928  p->asGrid_System()->Get_NX (), p->asGrid_System()->Get_NY ()
1929  );
1930  }
1931  break;
1932 
1933  case PARAMETER_TYPE_Grid :
1934  case PARAMETER_TYPE_Grids :
1935  case PARAMETER_TYPE_Table :
1936  case PARAMETER_TYPE_Shapes :
1937  case PARAMETER_TYPE_TIN :
1939  if( p->is_Input() )
1940  {
1941  Script += CSG_String::Format(" Tool.Set_Parameter('%s', saga_api.SG_Get_Data_Manager().Add('%s input file%s'))\n", ID.c_str(),
1942  SG_Get_DataObject_Name(p->Get_DataObject_Type()).c_str(), p->is_Optional() ? SG_T(", optional") : SG_T("")
1943  );
1944  }
1945  else if( p->is_Output() && p->is_Optional() )
1946  {
1947  Script += CSG_String::Format(" Tool.Set_Parameter('%s', saga_api.SG_Get_Create_Pointer()) # optional output, remove this line, if you don't want to create it\n", ID.c_str());
1948  }
1949  break;
1950 
1957  if( p->is_Input() )
1958  {
1959  Script += CSG_String::Format(" Tool.Get_Parameter('%s').asList().Add_Item('%s input list%s')\n", ID.c_str(),
1960  SG_Get_DataObject_Name(p->Get_DataObject_Type()).c_str(), p->is_Optional() ? SG_T(", optional") : SG_T("")
1961  );
1962  }
1963  break;
1964 
1966  _Get_Script_Python(Script, p->asParameters(), bAllArguments, ID);
1967  break;
1968  }
1969  }
1970 }
1971 
1972 
1974 // //
1976 
1977 //---------------------------------------------------------
1978 CSG_String CSG_Tool::_Get_Script_Python_Wrap(bool bHeader, bool bName, bool bCall, int AllArguments, bool bWrapArgs)
1979 {
1980  CSG_String Arguments, Description, Code;
1981 
1982  if( AllArguments >= 0 ) // if( AllArguments < 0 ) => skip arguments list
1983  {
1984  for(int i=0; i<Parameters.Get_Count(); i++) // add input that is not optional in 1st place
1985  {
1986  _Get_Script_Python_Wrap(Parameters[i], PARAMETER_INPUT , Arguments, Description, Code, bCall && bHeader, AllArguments == 0, bWrapArgs);
1987  }
1988 
1989  for(int i=0; i<Parameters.Get_Count(); i++) // add optional input in 2nd place
1990  {
1991  _Get_Script_Python_Wrap(Parameters[i], PARAMETER_INPUT_OPTIONAL, Arguments, Description, Code, bCall && bHeader, AllArguments == 0, bWrapArgs);
1992  }
1993 
1994  for(int i=0; i<Parameters.Get_Count(); i++) // add output
1995  {
1996  _Get_Script_Python_Wrap(Parameters[i], PARAMETER_OUTPUT , Arguments, Description, Code, bCall && bHeader, AllArguments == 0, bWrapArgs);
1997  }
1998 
1999  for(int i=0; i<Parameters.Get_Count(); i++) // add options
2000  {
2001  _Get_Script_Python_Wrap(Parameters[i], 0 , Arguments, Description, Code, bCall , AllArguments == 0, bWrapArgs);
2002  }
2003  }
2004 
2005  //---------------------------------------------------------
2006  CSG_String Name, Expected(Get_Name()); Expected.Replace("'", "\\'");
2007 
2008  if( bName )
2009  {
2010  Name = Get_Name();
2011 
2012  if( isdigit(Name[0]) ) // ...in case first letter is a numeric character, what is not allowed for Python function names!
2013  {
2014  Name.Prepend("_");
2015  }
2016 
2017  Name.Replace(" ", "_");
2018  Name.Replace("(", "");
2019  Name.Replace(")", "");
2020  Name.Replace("[", "");
2021  Name.Replace("]", "");
2022  Name.Replace(".", "");
2023  Name.Replace(",", "");
2024  Name.Replace("/", "");
2025  Name.Replace("-", "");
2026  Name.Replace("'", "");
2027  Name.Replace("&", "and");
2028  }
2029  else
2030  {
2031  Name = "run_tool_" + Get_Library() + "_" + Get_ID();
2032 
2033  Name.Replace(" ", "_");
2034  }
2035 
2036  //---------------------------------------------------------
2037  CSG_String Script;
2038 
2039  if( bCall )
2040  {
2041  if( bHeader )
2042  {
2043  Script += "from PySAGA.tools import " + Get_Library() + "\n\n";
2044 
2045  if( !Code.is_Empty() )
2046  {
2047  Script += Code + "\n";
2048  }
2049  }
2050 
2051  Script += Get_Library() + '.' + Name + "(" + Arguments + ")\n";
2052  }
2053  else
2054  {
2056 
2057  if( bHeader )
2058  {
2059  Script += "#! /usr/bin/env python\n";
2060  Script += "from PySAGA.helper import Tool_Wrapper\n\n";
2061  }
2062 
2063  Script += "def " + Name + "(" + Arguments + ", Verbose=2):\n";
2064  Script += " '''\n";
2065  Script += " " + Get_Name() + "\n";
2066  Script += " ----------\n";
2067  Script += " [" + Get_Library() + "." + Get_ID() + "]\\n\n";
2068  for(int i=0; i<_Description.Get_Count(); i++)
2069  {
2070  _Description[i].Trim_Both(); Script += " " + _Description[i] + "\\n\n";
2071  }
2072  Script += " Arguments\n";
2073  Script += " ----------\n";
2074  Script += Description + "\n";
2075  Script += " - Verbose [`integer number`] : Verbosity level, 0=silent, 1=tool name and success notification, 2=complete tool output.\\n\n";
2076  Script += " Returns\n";
2077  Script += " ----------\n";
2078  Script += " `boolean` : `True` on success, `False` on failure.\n";
2079  Script += " '''\n";
2080  Script += " Tool = Tool_Wrapper('" + Get_Library() + "', '" + Get_ID() + "', '" + Expected + "')\n";
2081  Script += " if Tool.is_Okay():\n";
2082  Script += Code;
2083  Script += " return Tool.Execute(Verbose)\n";
2084  Script += " return False\n\n";
2085  }
2086 
2087  return( Script );
2088 }
2089 
2090 //---------------------------------------------------------
2091 bool CSG_Tool::_Get_Script_Python_Wrap(const CSG_Parameter &Parameter, int Constraint, CSG_String &Arguments, CSG_String &Description, CSG_String &Code, bool bCall, bool bOnlyNonDefaults, bool bWrapArgs, const CSG_String &Prefix)
2092 {
2093  if( Parameter.do_UseInCMD() == false
2094  || Parameter.is_Information()
2095  || Parameter.Get_Type() == PARAMETER_TYPE_Node
2096  || Parameter.Cmp_Identifier("PARAMETERS_GRID_SYSTEM") )
2097  {
2098  return( false );
2099  }
2100 
2101  if( bCall && !Parameter.is_Enabled() && !(Parameter.is_Output() && Parameter.Get_Parent() && Parameter.Get_Parent()->Cmp_Identifier("TARGET_SYSTEM")) )
2102  {
2103  return( false );
2104  }
2105 
2106  //-----------------------------------------------------
2107  CSG_String ID(Parameter.Get_Identifier());
2108 
2109  if( !Prefix.is_Empty() )
2110  {
2111  ID.Prepend(Prefix + ".");
2112  }
2113 
2114  CSG_String Argument(ID);
2115 
2116  if( Argument[0] >= '0' && Argument[0] <= '9' )
2117  {
2118  Argument.Prepend('_');
2119  }
2120 
2121  Argument.Replace(".", "_");
2122  Argument.Replace("|", "_");
2123  Argument.Replace(" ", "_");
2124 
2125  if( Argument.Length() > 2 )
2126  {
2127  Argument.Make_Upper();
2128  }
2129 
2130  //-----------------------------------------------------
2131  if( Parameter.asParameters() ) // PARAMETER_TYPE_Parameters
2132  {
2133  bool bResult = false;
2134 
2135  for(int i=0; i<(*Parameter.asParameters()).Get_Count(); i++)
2136  {
2137  if( _Get_Script_Python_Wrap((*Parameter.asParameters())[i], Constraint, Arguments, Description, Code, bCall, bOnlyNonDefaults, bWrapArgs, ID) )
2138  {
2139  bResult = true;
2140  }
2141  }
2142 
2143  return( bResult );
2144  }
2145 
2146  //-----------------------------------------------------
2147  if( Parameter.is_Input () && !Parameter.is_Optional() && Constraint != PARAMETER_INPUT ) { return( false ); }
2148  if( Parameter.is_Input () && Parameter.is_Optional() && Constraint != PARAMETER_INPUT_OPTIONAL ) { return( false ); }
2149  if( Parameter.is_Output() && Constraint != PARAMETER_OUTPUT ) { return( false ); }
2150  if( Parameter.is_Option() && Constraint != 0 ) { return( false ); }
2151 
2152  //-----------------------------------------------------
2153  if( bCall )
2154  {
2155  CSG_String Value;
2156 
2157  if( Parameter.is_DataObject() )
2158  {
2159  Value = Parameter.Get_Identifier(); Value.Make_Lower();
2160 
2161  if( Parameter.is_Input() )
2162  {
2163  if( (bOnlyNonDefaults && !Parameter.asDataObject()) && Parameter.is_Optional() ) // don't add optional input that has not been set
2164  {
2165  return( false );
2166  }
2167 
2168  CSG_String File(Parameter.asDataObject() && Parameter.asDataObject()->Get_File_Name(false)
2169  ? Parameter.asDataObject()->Get_File_Name(false) : SG_T("data object file")
2170  ); File.Replace("\\", "/");
2171 
2172  Code += Value + " = saga_api.SG_Get_Data_Manager().Add_" + SG_Get_DataObject_Class_Name(Parameter.Get_DataObject_Type()).AfterFirst('_') + "('" + File + "') # input data object\n";
2173  }
2174  else // if( Parameter.is_Output() )
2175  {
2176  if( (bOnlyNonDefaults && !Parameter.asDataObject()) && Parameter.is_Optional() ) // don't add optional output that has not been requested
2177  {
2178  return( false );
2179  }
2180 
2181  Code += Value + " = saga_api.SG_Get_Data_Manager().Add_" + SG_Get_DataObject_Class_Name(Parameter.Get_DataObject_Type()).AfterFirst('_') + "() # output data object\n";
2182  }
2183  }
2184  else if( Parameter.is_DataObject_List() )
2185  {
2186  Value = Parameter.Get_Identifier(); Value.Make_Lower();
2187 
2188  if( Parameter.is_Input() )
2189  {
2190  if( (bOnlyNonDefaults && Parameter.asList()->Get_Item_Count() < 1) && Parameter.is_Optional() ) // don't add optional input that has not been set
2191  {
2192  return( false );
2193  }
2194 
2195  Code += Value + " = [] # Python list with input data objects of type 'saga_api." + SG_Get_DataObject_Class_Name(Parameter.Get_DataObject_Type()) + "'\n";
2196  }
2197  else // if( Parameter.is_Output() )
2198  {
2199  Code += Value + " = [] # Python list, will become filled after successful execution with output data objects of type 'saga_api." + SG_Get_DataObject_Class_Name(Parameter.Get_DataObject_Type()) + "'\n";
2200  }
2201  }
2202  else if( Parameter.is_Option() )
2203  {
2204  if( bOnlyNonDefaults && Parameter.is_Default() )
2205  {
2206  return( false );
2207  }
2208 
2209  switch( Parameter.Get_Type() )
2210  {
2211  case PARAMETER_TYPE_Bool : Value = Parameter.asBool() ? "True" : "False"; break;
2212 
2213  case PARAMETER_TYPE_Int : Value.Printf("%d", Parameter.asInt()); break;
2214 
2215  case PARAMETER_TYPE_Double :
2216  case PARAMETER_TYPE_Degree : Value.Printf("%f", Parameter.asDouble()); break;
2217 
2218  case PARAMETER_TYPE_Color : Value = SG_Color_To_Text(Parameter.asColor()); break;
2219 
2220  case PARAMETER_TYPE_String :
2221  case PARAMETER_TYPE_Text :
2222  case PARAMETER_TYPE_Date :
2223  case PARAMETER_TYPE_Range :
2225  case PARAMETER_TYPE_Choice :
2226  case PARAMETER_TYPE_Choices :
2229  case PARAMETER_TYPE_FilePath : Value.Printf("'%s'", Parameter.asString()); break;
2230 
2232  if( !Parameter.Cmp_Identifier("TARGET_SYSTEM") )
2233  {
2234  return( false );
2235  }
2236 
2237  Value.Printf("'%s'", Parameter.asGrid_System()->asString());
2238  break;
2239 
2240  default : return( false );
2241  }
2242  }
2243 
2244  if( !Value.is_Empty() )
2245  {
2246  if( bWrapArgs )
2247  {
2248  Arguments += !Arguments.is_Empty() ? ",\n " : "\n ";
2249  }
2250  else if( !Arguments.is_Empty() )
2251  {
2252  Arguments += ", ";
2253  }
2254 
2255  Arguments += Argument + "=" + Value;
2256  }
2257 
2258  return( true );
2259  }
2260 
2261  //-----------------------------------------------------
2262  if( bWrapArgs )
2263  {
2264  Arguments += !Arguments.is_Empty() ? ",\n " : "\n ";
2265  }
2266  else if( !Arguments.is_Empty() )
2267  {
2268  Arguments += ", ";
2269  }
2270 
2271  Arguments += Argument + "=None";
2272 
2273  //-----------------------------------------------------
2274  Code += " ";
2275 
2276  if( Parameter.is_Input () ) { Code += "Tool.Set_Input "; }
2277  if( Parameter.is_Output() ) { Code += "Tool.Set_Output"; }
2278  if( Parameter.is_Option() ) { Code += "Tool.Set_Option"; }
2279 
2280  Code += CSG_String::Format("('%s', %s)\n", ID.c_str(), Argument.c_str());
2281 
2282  //-----------------------------------------------------
2283  Description += " - " + Argument + " [`";
2284 
2285  if( Parameter.is_Input() )
2286  {
2287  Description += Parameter.is_Optional() ? "optional input " : "input ";
2288  }
2289  else if( Parameter.is_Output() )
2290  {
2291  Description += "output ";
2292  }
2293 
2294  Description += Parameter.Get_Type_Name() + "`] : " + Parameter.Get_Name();
2295 
2297 
2298  if( !s.is_Empty() )
2299  {
2300  Description += ". " + s;
2301  }
2302 
2303  Description += "\n";
2304 
2305  return( true );
2306 }
2307 
2308 
2310 // //
2311 // History //
2312 // //
2314 
2315 //---------------------------------------------------------
2316 CSG_MetaData CSG_Tool::_Get_Output_History(void)
2317 {
2318  CSG_MetaData History;
2319 
2320  History.Set_Name(SG_META_HISTORY);
2321  History.Add_Property("saga-version", SAGA_VERSION);
2322 
2323  if( SG_Get_History_Depth() )
2324  {
2325  CSG_MetaData *pTool = History.Add_Child("TOOL");
2326 
2327  pTool->Add_Property("library", Get_Library());
2328  pTool->Add_Property("id" , Get_ID ());
2329  pTool->Add_Property("name" , Get_Name ());
2330 
2331  Parameters.Set_History(*pTool);
2332 
2334 
2335  CSG_MetaData *pOutput = pTool->Add_Child("OUTPUT");
2336  pOutput->Add_Property("type", "");
2337  pOutput->Add_Property("id" , "");
2338  pOutput->Add_Property("name", "");
2339 
2340  pTool->Del_Children(SG_Get_History_Depth(), SG_T("TOOL"));
2341  }
2342 
2343  return( History );
2344 }
2345 
2346 //---------------------------------------------------------
2347 void CSG_Tool::_Set_Output_History(void)
2348 {
2349  CSG_MetaData History(_Get_Output_History());
2350 
2351  //-----------------------------------------------------
2352  for(int j=-1; j<Get_Parameters_Count(); j++)
2353  {
2354  CSG_Parameters *pParameters = j < 0 ? &Parameters : Get_Parameters(j);
2355 
2356  for(int i=0; i<pParameters->Get_Count(); i++)
2357  {
2358  CSG_Parameter *pParameter = pParameters->Get_Parameter(i);
2359 
2360  if( pParameter->is_Output() )//&& (pParameter->is_Enabled() || !has_GUI()) )
2361  {
2362  DataObject_Set_History(pParameter, &History);
2363  }
2364  }
2365  }
2366 }
2367 
2368 //---------------------------------------------------------
2370 {
2371  if( !pParameter )
2372  {
2373  return( false );
2374  }
2375 
2376  //-----------------------------------------------------
2377  CSG_MetaData History;
2378 
2379  if( !pHistory )
2380  {
2381  History = _Get_Output_History();
2382 
2383  pHistory = &History;
2384  }
2385 
2386  //-----------------------------------------------------
2387  CSG_MetaData *pOutput = pHistory->Get_Child("TOOL") ? pHistory->Get_Child("TOOL")->Get_Child("OUTPUT") : NULL;
2388 
2389  if( pOutput )
2390  {
2391  pOutput->Set_Property("type", pParameter->Get_Type_Identifier());
2392  pOutput->Set_Property("id" , pParameter->Get_Identifier ());
2393  pOutput->Set_Property("name", pParameter->Get_Name ());
2394  }
2395 
2396  //-----------------------------------------------------
2397  if( pParameter->is_DataObject() )
2398  {
2399  if( pParameter->asDataObject() )
2400  {
2401  if( pOutput )
2402  {
2403  pOutput->Set_Content(pParameter->asDataObject()->Get_Name());
2404  }
2405 
2406  pParameter->asDataObject()->Get_History().Assign(*pHistory);
2407 
2408  return( true );
2409  }
2410  }
2411 
2412  //-----------------------------------------------------
2413  else if( pParameter->is_DataObject_List() )
2414  {
2415  for(int j=0; j<pParameter->asList()->Get_Item_Count(); j++)
2416  {
2417  if( pOutput )
2418  {
2419  pOutput->Set_Content(pParameter->asList()->Get_Item(j)->Get_Name());
2420  }
2421 
2422  pParameter->asList()->Get_Item(j)->Get_History().Assign(*pHistory);
2423  }
2424 
2425  return( true );
2426  }
2427 
2428  //-----------------------------------------------------
2429  return( false );
2430 }
2431 
2432 
2434 // //
2435 // //
2436 // //
2438 
2439 //---------------------------------------------------------
CSG_MetaData::Destroy
void Destroy(void)
Definition: metadata.cpp:140
CSG_Parameter::Set_Value
virtual bool Set_Value(int Value)
Definition: parameter.cpp:799
CSG_Parameters::Get_Description
const CSG_String & Get_Description(void) const
Definition: parameters.h:1736
CSG_Tool::Script_Format::Python
@ Python
PARAMETER_TYPE_Double
@ PARAMETER_TYPE_Double
Definition: parameters.h:127
CSG_Parameters::Get_Parameter
CSG_Parameter * Get_Parameter(int i) const
Definition: parameters.h:1753
PARAMETER_TYPE_FilePath
@ PARAMETER_TYPE_FilePath
Definition: parameters.h:136
CSG_Parameters::Get_Grid_System
CSG_Grid_System * Get_Grid_System(void) const
Definition: parameters.h:1896
PARAMETER_TYPE_Degree
@ PARAMETER_TYPE_Degree
Definition: parameters.h:128
GET_ID1
#define GET_ID1(p)
CSG_Tool::Reset_Manager
bool Reset_Manager(void)
Definition: tool.cpp:1233
CSG_Tool::Parameters
CSG_Parameters Parameters
Definition: tool.h:251
SG_T
#define SG_T(s)
Definition: api_core.h:537
CSG_Tool::Get_Projection
bool Get_Projection(CSG_Projection &Projection) const
Definition: tool.cpp:430
CSG_String::Printf
int Printf(const char *Format,...)
Definition: api_string.cpp:308
CSG_Tool_Chain::Get_Script
static CSG_String Get_Script(CSG_Tool *pTool, bool bHeader, bool bAllParameters=true)
CSG_Grid_System::Get_Cellsize
double Get_Cellsize(void) const
Definition: grid.h:235
_TL
#define _TL(s)
Definition: api_core.h:1556
CSG_String::Make_Lower
CSG_String & Make_Lower(void)
Definition: api_string.cpp:543
CSG_Tool::DataObject_Update
static bool DataObject_Update(CSG_Data_Object *pDataObject, int Show=SG_UI_DATAOBJECT_UPDATE)
Definition: tool.cpp:976
CSG_Tool::DataObject_Set_Parameter
static bool DataObject_Set_Parameter(CSG_Data_Object *pDataObject, CSG_Parameter *pParameter)
Definition: tool.cpp:1054
SG_UI_DataObject_Params_Set
bool SG_UI_DataObject_Params_Set(CSG_Data_Object *pDataObject, CSG_Parameters *pParameters)
Definition: api_callback.cpp:722
SAGA_VERSION
#define SAGA_VERSION
Definition: saga_api.h:90
PARAMETER_TYPE_Table_Fields
@ PARAMETER_TYPE_Table_Fields
Definition: parameters.h:145
CSG_Data_Object::Get_History
CSG_MetaData & Get_History(void)
Definition: dataobject.h:236
CSG_Tool::Add_Parameters
CSG_Parameters * Add_Parameters(const CSG_String &Identifier, const CSG_String &Name, const CSG_String &Description)
Definition: tool.cpp:495
SG_HTML_Tag_Replacer
SAGA_API_DLL_EXPORT CSG_String SG_HTML_Tag_Replacer(const CSG_String &Text)
Definition: api_string.cpp:1446
CSG_Tool::History_Supplement
CSG_MetaData History_Supplement
Definition: tool.h:253
SG_UI_Dlg_Continue
bool SG_UI_Dlg_Continue(const CSG_String &Message, const CSG_String &Caption)
Definition: api_callback.cpp:386
CSG_DateTime::Now
static CSG_DateTime Now(void)
Definition: datetime.cpp:581
CSG_Tool::Message_Add
void Message_Add(const CSG_String &Text, bool bNewLine=true)
Definition: tool.cpp:906
CSG_Parameter_Range::Get_Max
double Get_Max(void) const
Definition: parameter_data.cpp:832
CSG_Tool::Set_Show_Progress
void Set_Show_Progress(bool bOn=true)
Definition: tool.cpp:654
CSG_TimeSpan::Get_Hours
int Get_Hours(void) const
Definition: datetime.h:161
CSG_Parameters::Set_Grid_System
bool Set_Grid_System(const CSG_Grid_System &System)
Definition: parameters.cpp:2081
CSG_Parameters::Reset_Grid_System
bool Reset_Grid_System(void)
Definition: parameters.cpp:2092
CSG_Parameter::Get_Identifier
const SG_Char * Get_Identifier(void) const
Definition: parameter.cpp:547
CSG_Parameter::asInt
int asInt(void) const
Definition: parameters.h:282
CSG_Parameters::Get_Manager
class CSG_Data_Manager * Get_Manager(void) const
Definition: parameters.h:1716
PARAMETER_TYPE_Node
@ PARAMETER_TYPE_Node
Definition: parameters.h:123
CSG_Parameter::Get_Type_Name
CSG_String Get_Type_Name(void) const
Definition: parameter.cpp:129
CSG_Parameter::asString
const SG_Char * asString(void) const
Definition: parameters.h:285
CSG_MetaData::Set_Content
void Set_Content(const CSG_String &Content)
Definition: metadata.h:140
CSG_Grid_System::Get_XMin
double Get_XMin(bool bCells=false) const
Definition: grid.h:244
CSG_Tool::Create_Manager
class CSG_Data_Manager * Create_Manager(void)
Definition: tool.cpp:589
data_manager.h
SG_UI_MSG_STYLE_NORMAL
@ SG_UI_MSG_STYLE_NORMAL
Definition: api_core.h:1569
SG_UI_MSG_STYLE_SUCCESS
@ SG_UI_MSG_STYLE_SUCCESS
Definition: api_core.h:1572
PARAMETER_TYPE_Grids_List
@ PARAMETER_TYPE_Grids_List
Definition: parameters.h:155
SG_UI_Get_Application_Name
CSG_String SG_UI_Get_Application_Name(void)
Definition: api_core.cpp:378
PARAMETER_TYPE_String
@ PARAMETER_TYPE_String
Definition: parameters.h:134
CSG_Grid_System
Definition: grid.h:200
SG_Get_DataObject_Name
CSG_String SG_Get_DataObject_Name(TSG_Data_Object_Type Type)
Definition: dataobject.cpp:86
PARAMETER_TYPE_Int
@ PARAMETER_TYPE_Int
Definition: parameters.h:126
CSG_Parameter_List::Get_Item
CSG_Data_Object * Get_Item(int Index) const
Definition: parameters.h:1374
CSG_Tool::Set_Version
void Set_Version(const CSG_String &String)
Definition: tool.cpp:149
CSG_Parameter::asColor
long asColor(void) const
Definition: parameters.h:283
SG_UI_Msg_Add_Execution
void SG_UI_Msg_Add_Execution(const char *Message, bool bNewLine, TSG_UI_MSG_STYLE Style)
Definition: api_callback.cpp:529
SG_UI_Process_Get_Okay
bool SG_UI_Process_Get_Okay(bool bBlink)
Definition: api_callback.cpp:207
CSG_MetaData::Set_Property
bool Set_Property(const CSG_String &Name, const CSG_String &Value, bool bAddIfNotExists=true)
Definition: metadata.cpp:615
SG_UI_Process_Set_Okay
bool SG_UI_Process_Set_Okay(bool bOkay)
Definition: api_callback.cpp:229
CSG_Parameter::is_Input
bool is_Input(void) const
Definition: parameters.h:232
CSG_Tool::Dlg_Parameters
bool Dlg_Parameters(const CSG_String &Identifier)
Definition: tool.cpp:523
tool_chain.h
CSG_Projection::is_Okay
bool is_Okay(void) const
Definition: geo_tools.h:863
CSG_Parameters::is_Managed
bool is_Managed(void) const
Definition: parameters.h:1893
CSG_Tool::Get_Script
CSG_String Get_Script(Script_Format Format, bool bHeader=true, int Arguments=0, bool bWrapArgs=true)
Definition: tool.cpp:1322
saga_api.h
PARAMETER_TYPE_TIN
@ PARAMETER_TYPE_TIN
Definition: parameters.h:152
CSG_Tool::Reset
bool Reset(bool bManager=true)
Definition: tool.cpp:1211
SG_UI_Stop_Execution
bool SG_UI_Stop_Execution(bool bDialog)
Definition: api_callback.cpp:348
CSG_Tool
Definition: tool.h:135
CSG_TimeSpan::Get_Milliseconds
sLong Get_Milliseconds(void) const
Definition: datetime.h:164
CSG_Tool::DataObject_Set_History
bool DataObject_Set_History(CSG_Parameter *pParameter, CSG_MetaData *pHistory=NULL)
Definition: tool.cpp:2369
CSG_Data_Object::Get_Name
const SG_Char * Get_Name(void) const
Definition: dataobject.cpp:349
CSG_Tool::Execute
bool Execute(bool bAddHistory=false)
Definition: tool.cpp:258
CSG_Parameter::Get_Description
const SG_Char * Get_Description(void) const
Definition: parameter.cpp:602
SG_Get_Data_Manager
CSG_Data_Manager & SG_Get_Data_Manager(void)
Definition: data_manager.cpp:65
CSG_Tool::Add_Reference
void Add_Reference(const CSG_String &Authors, const CSG_String &Year, const CSG_String &Title, const CSG_String &Where, const SG_Char *Link=NULL, const SG_Char *Link_Text=NULL)
Definition: tool.cpp:171
CSG_Parameters::Cmp_Identifier
bool Cmp_Identifier(const CSG_String &Identifier) const
Definition: parameters.cpp:331
SG_DATAOBJECT_TYPE_Grids
@ SG_DATAOBJECT_TYPE_Grids
Definition: dataobject.h:119
CSG_Tool::~CSG_Tool
virtual ~CSG_Tool(void)
Definition: tool.cpp:86
CSG_Tool::Error_Set
bool Error_Set(TSG_Tool_Error Error_ID=TOOL_ERROR_Unknown)
Definition: tool.cpp:705
CSG_Parameter::do_UseInCMD
bool do_UseInCMD(void) const
Definition: parameter.cpp:172
PARAMETER_TYPE_FixedTable
@ PARAMETER_TYPE_FixedTable
Definition: parameters.h:141
CSG_Tool::Get_Name
const CSG_String & Get_Name(void) const
Definition: tool.cpp:132
CSG_Parameter::asDataObject
CSG_Data_Object * asDataObject(void) const
Definition: parameter.cpp:1041
CSG_Tool::Script_Format::Python_Wrapper_Call_ID
@ Python_Wrapper_Call_ID
CSG_Tool::do_Sync_Projections
virtual bool do_Sync_Projections(void) const
Definition: tool.h:216
CSG_MetaData::Get_Child
CSG_MetaData * Get_Child(int Index) const
Definition: metadata.h:149
CSG_TimeSpan
Definition: datetime.h:91
CSG_Tool::Get_References
const CSG_Strings & Get_References(void) const
Definition: tool.cpp:181
PARAMETER_TYPE_PointCloud
@ PARAMETER_TYPE_PointCloud
Definition: parameters.h:147
CSG_String::Prepend
CSG_String & Prepend(const CSG_String &String)
Definition: api_string.cpp:347
CSG_Grid_System::asString
const SG_Char * asString(void)
Definition: grid_system.cpp:341
CSG_Parameters::Push
bool Push(class CSG_Data_Manager *pManager=NULL, bool bRestoreDefaults=true)
Definition: parameters.cpp:262
CSG_Parameter::Get_Parameters
CSG_Parameters * Get_Parameters(void) const
Definition: parameter.cpp:100
CSG_Projection::Destroy
void Destroy(void)
Definition: projections.cpp:235
CSG_Parameters::Pop
bool Pop(void)
Definition: parameters.cpp:285
CSG_Tool::Set_Author
void Set_Author(const CSG_String &String)
Definition: tool.cpp:138
CSG_String::Cmp
int Cmp(const CSG_String &String) const
Definition: api_string.cpp:515
CSG_Tool::Get_Parameters_Count
int Get_Parameters_Count(void) const
Definition: tool.h:167
CSG_Tool::Script_Format
Script_Format
Definition: tool.h:238
tool.h
PARAMETER_INPUT_OPTIONAL
#define PARAMETER_INPUT_OPTIONAL
Definition: parameters.h:102
CSG_Tool::Get_Manager
class CSG_Data_Manager * Get_Manager(void) const
Definition: tool.cpp:583
CSG_Tool::Get_Version
const CSG_String & Get_Version(void) const
Definition: tool.cpp:154
CSG_Parameters::Msg_String
bool Msg_String(bool bOptionsOnly)
Definition: parameters.cpp:1942
PARAMETER_TYPE_Shapes_List
@ PARAMETER_TYPE_Shapes_List
Definition: parameters.h:157
CSG_Tool::DataObject_Get_Parameter
static CSG_Parameter * DataObject_Get_Parameter(CSG_Data_Object *pDataObject, const CSG_String &ID)
Definition: tool.cpp:1047
PARAMETER_TYPE_Grids
@ PARAMETER_TYPE_Grids
Definition: parameters.h:149
CSG_Parameter::Get_Type
virtual TSG_Parameter_Type Get_Type(void) const =0
CSG_Tool::Set_Parameter
bool Set_Parameter(const CSG_String &ID, CSG_Parameter *pValue)
Definition: tool.cpp:1140
CSG_Tool::Stop_Execution
bool Stop_Execution(bool bDialog=true)
Definition: tool.cpp:678
SG_UI_MSG_STYLE_FAILURE
@ SG_UI_MSG_STYLE_FAILURE
Definition: api_core.h:1573
SG_UI_DATAOBJECT_UPDATE
@ SG_UI_DATAOBJECT_UPDATE
Definition: api_core.h:1585
CSG_Parameter::is_DataObject_List
bool is_DataObject_List(void) const
Definition: parameter.cpp:295
GET_ID2
#define GET_ID2(p, s)
PARAMETER_TYPE_Choices
@ PARAMETER_TYPE_Choices
Definition: parameters.h:133
CSG_Tool::DataObject_Set_Parameters
static bool DataObject_Set_Parameters(CSG_Data_Object *pDataObject, CSG_Parameters &Parameters)
Definition: tool.cpp:1020
PARAMETER_TYPE_Data_Type
@ PARAMETER_TYPE_Data_Type
Definition: parameters.h:131
CSG_Parameter_List::Del_Items
virtual bool Del_Items(void)
Definition: parameter_data.cpp:3082
SG_File_Exists
SAGA_API_DLL_EXPORT bool SG_File_Exists(const CSG_String &FileName)
Definition: api_file.cpp:1078
PARAMETER_TYPE_Colors
@ PARAMETER_TYPE_Colors
Definition: parameters.h:140
CSG_Parameters::Set_Name
void Set_Name(const CSG_String &Name)
Definition: parameters.cpp:341
CSG_Tool::Script_Format::CMD_Batch
@ CMD_Batch
SG_UI_Dlg_Message
void SG_UI_Dlg_Message(const CSG_String &Message, const CSG_String &Caption)
Definition: api_callback.cpp:368
CSG_Data_Object
Definition: dataobject.h:180
CSG_Parameter
Definition: parameters.h:207
TSG_Tool_Error
TSG_Tool_Error
Definition: tool.h:112
CSG_TimeSpan::Format
CSG_String Format(const CSG_String &format="") const
Definition: datetime.cpp:65
CSG_Tool::DataObject_Add
bool DataObject_Add(CSG_Data_Object *pDataObject, bool bUpdate=false)
Definition: tool.cpp:799
PARAMETER_TYPE_Table
@ PARAMETER_TYPE_Table
Definition: parameters.h:150
PARAMETER_TYPE_Bool
@ PARAMETER_TYPE_Bool
Definition: parameters.h:125
CSG_Parameters::Get_Count
int Get_Count(void) const
Definition: parameters.h:1726
CSG_Parameters::Restore_Defaults
bool Restore_Defaults(bool bClearData=false)
Definition: parameters.cpp:1478
CSG_Tool::Get_Parameters
CSG_Parameters * Get_Parameters(void)
Definition: tool.h:165
PARAMETER_TYPE_Table_Field
@ PARAMETER_TYPE_Table_Field
Definition: parameters.h:144
CSG_Tool::Process_Get_Okay
static bool Process_Get_Okay(bool bBlink=false)
Definition: tool.cpp:844
CSG_Parameter::is_Enabled
bool is_Enabled(bool bCheckEnv=true) const
Definition: parameter.cpp:209
CSG_MetaData::Del_Children
bool Del_Children(int Depth=0, const SG_Char *Name=NULL)
Definition: metadata.cpp:381
SG_META_HISTORY
#define SG_META_HISTORY
Definition: dataobject.h:93
PARAMETER_TYPE_Choice
@ PARAMETER_TYPE_Choice
Definition: parameters.h:132
CSG_Parameter::asParameters
class CSG_Parameters * asParameters(void) const
Definition: parameter.cpp:1038
SG_UI_Dlg_Parameters
bool SG_UI_Dlg_Parameters(CSG_Parameters *pParameters, const CSG_String &Caption)
Definition: api_callback.cpp:448
CSG_Parameters::Get_Tool
class CSG_Tool * Get_Tool(void) const
Definition: parameters.h:1713
SG_UI_DataObject_Update
bool SG_UI_DataObject_Update(CSG_Data_Object *pDataObject, int Show, CSG_Parameters *pParameters)
Definition: api_callback.cpp:636
CSG_Parameters::Add_Reference
void Add_Reference(const CSG_String &Authors, const CSG_String &Year, const CSG_String &Title, const CSG_String &Where, const SG_Char *Link=NULL, const SG_Char *Link_Text=NULL)
Definition: parameters.cpp:361
CSG_Tool::Get_MenuPath
virtual CSG_String Get_MenuPath(void)
Definition: tool.h:162
sLong
signed long long sLong
Definition: api_core.h:158
CSG_Tool::Get_Library
const CSG_String & Get_Library(void) const
Definition: tool.cpp:115
CSG_Tool::DataObject_Get_Colors
static bool DataObject_Get_Colors(CSG_Data_Object *pDataObject, CSG_Colors &Colors)
Definition: tool.cpp:995
SG_UI_DataObject_Add
bool SG_UI_DataObject_Add(CSG_Data_Object *pDataObject, int Show)
Definition: api_callback.cpp:610
CSG_MetaData::Add_Property
bool Add_Property(const CSG_String &Name, const CSG_String &Value)
Definition: metadata.cpp:559
CSG_Tool::Destroy
virtual void Destroy(void)
Definition: tool.cpp:102
SG_UI_DataObject_Colors_Set
bool SG_UI_DataObject_Colors_Set(CSG_Data_Object *pDataObject, CSG_Colors *pColors)
Definition: api_callback.cpp:696
CSG_Tool::DataObject_Get_Parameters
static bool DataObject_Get_Parameters(CSG_Data_Object *pDataObject, CSG_Parameters &Parameters)
Definition: tool.cpp:1015
CSG_Tool::Set_Callback
void Set_Callback(bool bActive=true)
Definition: tool.cpp:559
CSG_Tool::Script_Format::Python_Wrapper_Func_ID
@ Python_Wrapper_Func_ID
PARAMETER_DESCRIPTION_TYPE
#define PARAMETER_DESCRIPTION_TYPE
Definition: parameters.h:107
CSG_Tool::Message_Dlg
void Message_Dlg(const CSG_String &Text, const SG_Char *Caption=NULL)
Definition: tool.cpp:693
CSG_Tool::_On_Parameter_Changed
static int _On_Parameter_Changed(CSG_Parameter *pParameter, int Flags)
Definition: tool.cpp:452
SG_UI_Process_Set_Text
void SG_UI_Process_Set_Text(const CSG_String &Text)
Definition: api_callback.cpp:323
PARAMETER_TYPE_Grid
@ PARAMETER_TYPE_Grid
Definition: parameters.h:148
CSG_Parameter::Get_CmdID
CSG_String Get_CmdID(void) const
Definition: parameter.cpp:563
CSG_Tool::DataObject_Update_All
void DataObject_Update_All(void)
Definition: tool.cpp:815
SG_String_Tokenize
SAGA_API_DLL_EXPORT CSG_Strings SG_String_Tokenize(const CSG_String &String, const CSG_String &Delimiters=SG_DEFAULT_DELIMITERS, TSG_String_Tokenizer_Mode Mode=SG_TOKEN_DEFAULT)
Definition: api_string.cpp:1597
CSG_Tool::Script_Format::Python_Wrapper_Call_Name
@ Python_Wrapper_Call_Name
PARAMETER_TYPE_Date
@ PARAMETER_TYPE_Date
Definition: parameters.h:129
CSG_Tool::Message_Dlg_Confirm
bool Message_Dlg_Confirm(const CSG_String &Text, const SG_Char *Caption=NULL)
Definition: tool.cpp:699
CSG_Data_Object::Get_File_Name
const SG_Char * Get_File_Name(bool bNative=true) const
Definition: dataobject.cpp:390
SG_Color_To_Text
CSG_String SG_Color_To_Text(long Color, bool bHexadecimal)
Definition: api_colors.cpp:144
CSG_Tool::Get_ID
const CSG_String & Get_ID(void) const
Definition: tool.h:150
CSG_Parameters::Get_References
const CSG_Strings & Get_References(void) const
Definition: parameters.h:1741
PARAMETER_TYPE_Grid_List
@ PARAMETER_TYPE_Grid_List
Definition: parameters.h:154
CSG_Tool::Process_Set_Text
static void Process_Set_Text(const CSG_String &Text)
Definition: tool.cpp:850
CSG_Data_Manager::Delete
bool Delete(CSG_Data_Object *pObject, bool bDetach=false)
Definition: data_manager.cpp:623
SG_UI_MSG_STYLE_BOLD
@ SG_UI_MSG_STYLE_BOLD
Definition: api_core.h:1570
CSG_Parameter::is_Optional
bool is_Optional(void) const
Definition: parameters.h:234
SG_DATAOBJECT_TYPE_TIN
@ SG_DATAOBJECT_TYPE_TIN
Definition: dataobject.h:122
CSG_Parameters::Create
bool Create(const CSG_Parameters &Parameters)
Definition: parameters.cpp:124
CSG_Strings
Definition: api_core.h:701
CSG_Tool::has_CMD
bool has_CMD(void) const
Definition: tool.cpp:245
CSG_Tool::Update_Parameter_States
bool Update_Parameter_States(void)
Definition: tool.cpp:1281
CSG_Tool::On_Execute
virtual bool On_Execute(void)=0
CSG_Tool::Script_Format::Toolchain
@ Toolchain
TOOL_ERROR_Calculation
@ TOOL_ERROR_Calculation
Definition: tool.h:114
CSG_DateTime
Definition: datetime.h:183
SG_DATAOBJECT_TYPE_Grid
@ SG_DATAOBJECT_TYPE_Grid
Definition: dataobject.h:118
CSG_String::Replace
size_t Replace(const CSG_String &Old, const CSG_String &New, bool bReplaceAll=true)
Definition: api_string.cpp:563
CSG_Parameters::Del_Parameter
bool Del_Parameter(int i)
Definition: parameters.cpp:1248
CSG_Data_Manager::Add
CSG_Data_Object * Add(CSG_Data_Object *pObject)
Definition: data_manager.cpp:310
CSG_Tool::Get_File_Name
const CSG_String & Get_File_Name(void) const
Definition: tool.cpp:121
CSG_Tool::On_Parameter_Changed
virtual int On_Parameter_Changed(CSG_Parameters *pParameters, CSG_Parameter *pParameter)
Definition: tool.cpp:476
CSG_Grid_System::Get_NY
int Get_NY(void) const
Definition: grid.h:239
CSG_Parameter::is_Output
bool is_Output(void) const
Definition: parameters.h:233
CSG_MetaData::Add_Children
bool Add_Children(const CSG_MetaData &MetaData)
Definition: metadata.cpp:359
CSG_Tool::Set_Name
void Set_Name(const CSG_String &String)
Definition: tool.cpp:127
CSG_MetaData::Assign
bool Assign(const CSG_MetaData &MetaData, bool bAddChildren=true)
Definition: metadata.cpp:757
ADD_MESSAGE_EXECUTION
#define ADD_MESSAGE_EXECUTION(Text, Style)
CSG_Tool::Set_Description
void Set_Description(const CSG_String &String)
Definition: tool.cpp:160
CSG_String::Format
static CSG_String Format(const char *Format,...)
Definition: api_string.cpp:270
CSG_TimeSpan::Get_Minutes
int Get_Minutes(void) const
Definition: datetime.h:162
CSG_Parameter_List::Get_Item_Count
int Get_Item_Count(void) const
Definition: parameters.h:1373
SG_UI_DataObject_Colors_Get
bool SG_UI_DataObject_Colors_Get(CSG_Data_Object *pDataObject, CSG_Colors *pColors)
Definition: api_callback.cpp:683
CSG_Projection
Definition: geo_tools.h:827
CSG_Tool::Script_Format::CMD_Usage
@ CMD_Usage
CSG_Tool::has_GUI
bool has_GUI(void) const
Definition: tool.cpp:239
CSG_Tool::Reset_Grid_System
bool Reset_Grid_System(void)
Definition: tool.cpp:1243
SG_UI_Dlg_Error
int SG_UI_Dlg_Error(const CSG_String &Message, const CSG_String &Caption)
Definition: api_callback.cpp:402
SG_DATAOBJECT_TYPE_Shapes
@ SG_DATAOBJECT_TYPE_Shapes
Definition: dataobject.h:121
CSG_String::AfterFirst
CSG_String AfterFirst(char Character) const
Definition: api_string.cpp:691
CSG_String::Clear
void Clear(void)
Definition: api_string.cpp:259
CSG_Parameter::Get_Children_Count
int Get_Children_Count(void) const
Definition: parameters.h:255
CSG_Parameter::Get_Parent
CSG_Parameter * Get_Parent(void) const
Definition: parameter.cpp:106
CSG_Parameter::is_DataObject
bool is_DataObject(void) const
Definition: parameter.cpp:276
SG_UI_DataObject_Params_Get
bool SG_UI_DataObject_Params_Get(CSG_Data_Object *pDataObject, CSG_Parameters *pParameters)
Definition: api_callback.cpp:709
CSG_TimeSpan::Get_Seconds
sLong Get_Seconds(void) const
Definition: datetime.h:163
SG_Char
#define SG_Char
Definition: api_core.h:536
CSG_Parameters::Set_Description
void Set_Description(const CSG_String &Description)
Definition: parameters.cpp:351
CSG_String::Contains
bool Contains(const CSG_String &String) const
Definition: api_string.cpp:680
CSG_Tool::DataObject_Set_Colors
static bool DataObject_Set_Colors(CSG_Data_Object *pDataObject, const CSG_Colors &Colors)
Definition: tool.cpp:1000
SG_UI_DATAOBJECT_SHOW_MAP
@ SG_UI_DATAOBJECT_SHOW_MAP
Definition: api_core.h:1586
CSG_String
Definition: api_core.h:563
CSG_Parameters::Set_Tool
void Set_Tool(class CSG_Tool *pTool)
Definition: parameters.cpp:202
SG_UI_Get_Application_Path
CSG_String SG_UI_Get_Application_Path(bool bPathOnly)
Definition: api_core.cpp:356
CSG_Tool::Get_Author
const CSG_String & Get_Author(void) const
Definition: tool.cpp:143
CSG_Tool::Set_Manager
bool Set_Manager(class CSG_Data_Manager *pManager)
Definition: tool.cpp:570
SG_DATAOBJECT_TYPE_Table
@ SG_DATAOBJECT_TYPE_Table
Definition: dataobject.h:120
CSG_Data_Manager
Definition: data_manager.h:129
CSG_MetaData
Definition: metadata.h:88
CSG_Tool::Settings_Pop
bool Settings_Pop(void)
Definition: tool.cpp:634
CSG_Parameter_String
Definition: parameters.h:800
SG_Get_History_Depth
int SG_Get_History_Depth(void)
Definition: dataobject.cpp:159
CSG_Tool::Settings_Push
bool Settings_Push(class CSG_Data_Manager *pManager=NULL)
Definition: tool.cpp:621
CSG_String::is_Empty
bool is_Empty(void) const
Definition: api_string.cpp:178
SG_UI_Process_Set_Progress
bool SG_UI_Process_Set_Progress(int Position, int Range)
Definition: api_callback.cpp:255
PARAMETER_DESCRIPTION_TEXT
#define PARAMETER_DESCRIPTION_TEXT
Definition: parameters.h:110
CSG_Parameter::asDouble
double asDouble(void) const
Definition: parameters.h:284
PARAMETER_TYPE_Grid_System
@ PARAMETER_TYPE_Grid_System
Definition: parameters.h:143
CSG_Tool::Get_Description
const CSG_String & Get_Description(void) const
Definition: tool.cpp:165
PARAMETER_TYPE_PointCloud_List
@ PARAMETER_TYPE_PointCloud_List
Definition: parameters.h:159
CSG_Tool::is_Interactive
virtual bool is_Interactive(void) const
Definition: tool.h:223
CSG_Tool::Set_Progress
virtual bool Set_Progress(int Position, int Range) const
Definition: tool.cpp:660
CSG_Tool::Delete_Manager
bool Delete_Manager(bool bDetachData=false, bool bReset=true)
Definition: tool.cpp:597
PARAMETER_TYPE_Table_List
@ PARAMETER_TYPE_Table_List
Definition: parameters.h:156
CSG_Array_Pointer::Add
bool Add(void *Value)
Definition: api_memory.cpp:485
CSG_Parameter::asRange
class CSG_Parameter_Range * asRange(void) const
Definition: parameter.cpp:1110
CSG_Tool::CSG_Tool
CSG_Tool(void)
Definition: tool.cpp:67
CSG_MetaData::Set_Name
void Set_Name(const CSG_String &Name)
Definition: metadata.h:130
CSG_Tool::Script_Format::Python_Wrapper_Func_Name
@ Python_Wrapper_Func_Name
CSG_Parameters::Set_Manager
void Set_Manager(class CSG_Data_Manager *pManager)
Definition: parameters.cpp:223
CSG_Tool::Script_Format::CMD_Shell
@ CMD_Shell
PARAMETER_TYPE_DataObject_Output
@ PARAMETER_TYPE_DataObject_Output
Definition: parameters.h:161
CSG_Parameters::Set_Parameter
bool Set_Parameter(const CSG_String &ID, CSG_Parameter *pValue)
Definition: parameters.cpp:1405
CSG_Grid_System::Get_NX
int Get_NX(void) const
Definition: grid.h:238
PARAMETER_DESCRIPTION_PROPERTIES
#define PARAMETER_DESCRIPTION_PROPERTIES
Definition: parameters.h:109
PARAMETER_CHECK_VALUES
#define PARAMETER_CHECK_VALUES
Definition: parameters.h:189
CSG_Parameters::Get_Name
const CSG_String & Get_Name(void) const
Definition: parameters.h:1733
CSG_String::c_str
const SG_Char * c_str(void) const
Definition: api_string.cpp:236
CSG_Parameters::Set_Callback_On_Parameter_Changed
TSG_PFNC_Parameter_Changed Set_Callback_On_Parameter_Changed(TSG_PFNC_Parameter_Changed pCallback)
Definition: parameters.cpp:1342
SG_UI_Process_Set_Ready
bool SG_UI_Process_Set_Ready(void)
Definition: api_callback.cpp:305
CSG_Strings::Get_Count
int Get_Count(void) const
Definition: api_core.h:714
PARAMETER_CHECK_ENABLE
#define PARAMETER_CHECK_ENABLE
Definition: parameters.h:190
CSG_Parameters
Definition: parameters.h:1691
CSG_Parameter::Get_DataObject_Type
TSG_Data_Object_Type Get_DataObject_Type(void) const
Definition: parameter.cpp:519
CSG_Parameter_Range::Get_Min
double Get_Min(void) const
Definition: parameter_data.cpp:814
CSG_MetaData::Add_Child
CSG_MetaData * Add_Child(void)
Definition: metadata.cpp:166
SG_UI_Msg_Add_Error
void SG_UI_Msg_Add_Error(const char *Message)
Definition: api_callback.cpp:556
CSG_Parameter::Cmp_Identifier
bool Cmp_Identifier(const CSG_String &Identifier) const
Definition: parameter.cpp:553
CSG_Parameter::asGrid_System
CSG_Grid_System * asGrid_System(void) const
Definition: parameter.cpp:1037
CSG_Tool::Error_Fmt
bool Error_Fmt(const char *Format,...)
Definition: tool.cpp:742
CSG_Tool::Get_Type
virtual TSG_Tool_Type Get_Type(void) const
Definition: tool.h:148
CSG_Tool::Message_Fmt
void Message_Fmt(const char *Format,...)
Definition: tool.cpp:919
CSG_Parameter::Get_Name
const SG_Char * Get_Name(void) const
Definition: parameter.cpp:589
CSG_Parameter::is_Default
virtual bool is_Default(void) const
Definition: parameter.cpp:935
PARAMETER_TYPE_Range
@ PARAMETER_TYPE_Range
Definition: parameters.h:130
CSG_Parameter::is_Option
bool is_Option(void) const
Definition: parameter.cpp:239
PARAMETER_OUTPUT
#define PARAMETER_OUTPUT
Definition: parameters.h:95
CSG_Tool::Set_Grid_System
bool Set_Grid_System(const CSG_Grid_System &System)
Definition: tool.cpp:1258
PARAMETER_TYPE_TIN_List
@ PARAMETER_TYPE_TIN_List
Definition: parameters.h:158
CSG_Grid_System::Get_YMin
double Get_YMin(bool bCells=false) const
Definition: grid.h:248
PARAMETER_TYPE_Parameters
@ PARAMETER_TYPE_Parameters
Definition: parameters.h:163
CSG_Parameter::asList
class CSG_Parameter_List * asList(void) const
Definition: parameter.cpp:1115
PARAMETER_TYPE_Color
@ PARAMETER_TYPE_Color
Definition: parameters.h:139
PARAMETER_TYPE_Shapes
@ PARAMETER_TYPE_Shapes
Definition: parameters.h:151
SG_Get_DataObject_Class_Name
CSG_String SG_Get_DataObject_Class_Name(TSG_Data_Object_Type Type)
Definition: dataobject.cpp:101
SG_DATAOBJECT_TYPE_PointCloud
@ SG_DATAOBJECT_TYPE_PointCloud
Definition: dataobject.h:123
CSG_Tool::On_Parameters_Enable
virtual int On_Parameters_Enable(CSG_Parameters *pParameters, CSG_Parameter *pParameter)
Definition: tool.cpp:482
CSG_Parameters::Set_History
bool Set_History(CSG_MetaData &History, bool bOptions=true, bool bDataObjects=true)
Definition: parameters.cpp:1967
CSG_Parameters::Set_Callback
bool Set_Callback(bool bActive=true)
Definition: parameters.cpp:1363
CSG_Parameter::is_Information
bool is_Information(void) const
Definition: parameters.h:235
PARAMETER_INPUT
#define PARAMETER_INPUT
Definition: parameters.h:94
PARAMETER_DESCRIPTION_NAME
#define PARAMETER_DESCRIPTION_NAME
Definition: parameters.h:106
CSG_Parameter::Get_Type_Identifier
CSG_String Get_Type_Identifier(void) const
Definition: parameter.cpp:123
CSG_Colors
Definition: api_core.h:1405
CSG_Parameter::asBool
bool asBool(void) const
Definition: parameters.h:281
SG_UI_Msg_Add
void SG_UI_Msg_Add(const char *Message, bool bNewLine, TSG_UI_MSG_STYLE Style)
Definition: api_callback.cpp:502
CSG_Tool::Get_Grid_System
CSG_Grid_System * Get_Grid_System(void) const
Definition: tool.cpp:1268
DATAOBJECT_NOTSET
#define DATAOBJECT_NOTSET
Definition: dataobject.h:129
PARAMETER_TYPE_Text
@ PARAMETER_TYPE_Text
Definition: parameters.h:135