]> Creatis software - bbtk.git/blob - kernel/appli/bbi/bbi.cxx
c594a081f5d939f8e5d30948b8eb1b3b3197bd5c
[bbtk.git] / kernel / appli / bbi / bbi.cxx
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 #ifdef _USE_WXWIDGETS_
29
30 #include <exception>
31
32 //==========================================================================
33 // WITH WX
34 //==========================================================================
35 #include "bbtkObject.h"
36 #include "bbtkInterpreter.h"
37 #include "bbtkWxBlackBox.h"
38 #include "bbtkWxGUIConsole.h"
39
40 #include <wx/cmdline.h>
41 #include <vector>
42 #include <map>
43
44 //==========================================================================
45
46 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
47 #if wxMAJOR_VERSION <= 2
48         // Command line options definition
49         static const wxCmdLineEntryDesc cmdLineDesc[] =
50         {
51           { wxCMD_LINE_SWITCH, _T("h"), _T("help"),   _T("print this help or help on the application defined in input bbs file if any") },
52           { wxCMD_LINE_SWITCH, _T("g"), _T("graphical-dialog"),   _T("prompt the input parameter values using graphical dialog") },
53           { wxCMD_LINE_SWITCH, _T("t"), _T("text-dialog"),   _T("prompt the input parameter values in text mode") },
54           { wxCMD_LINE_SWITCH, _T("c"), _T("console"), _T("open bbi console") },
55           { wxCMD_LINE_SWITCH, _T("N"), _T("no-console"),   _T("never open bbi console even on error") },
56           { wxCMD_LINE_SWITCH, _T("q"), _T("quiet"),   _T("be quiet (='message max 0')") },
57           { wxCMD_LINE_SWITCH, _T("d"), _T("debug"), _T("turn all messages on (='message all 9')") },
58           { wxCMD_LINE_SWITCH, _T("D"), _T("Debug"), _T("memory debug on exit (='debug -D')") },
59           { wxCMD_LINE_PARAM,  NULL, NULL, _T("file [file [...]]"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
60           { wxCMD_LINE_NONE }
61         };
62 #else
63         // Command line options definition
64         static const wxCmdLineEntryDesc cmdLineDesc[] =
65         {
66           { wxCMD_LINE_SWITCH, "h", "help",   "print this help or help on the application defined in input bbs file if any" },
67           { wxCMD_LINE_SWITCH, "g", "graphical-dialog",   "prompt the input parameter values using graphical dialog" },
68           { wxCMD_LINE_SWITCH, "t", "text-dialog",   "prompt the input parameter values in text mode" },
69           { wxCMD_LINE_SWITCH, "c", "console", "open bbi console" },
70           { wxCMD_LINE_SWITCH, "N", "no-console",   "never open bbi console even on error" },
71           { wxCMD_LINE_SWITCH, "q", "quiet",   "be quiet (='message max 0')" },
72           { wxCMD_LINE_SWITCH, "d", "debug", "turn all messages on (='message all 9')" },
73           { wxCMD_LINE_SWITCH, "D", "Debug", "memory debug on exit (='debug -D')" },
74           { wxCMD_LINE_PARAM,  NULL, NULL, "file [file [...]]", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
75           { wxCMD_LINE_NONE }
76         };
77 #endif
78
79
80
81
82 //==========================================================================
83
84 //==========================================================================
85 // Processes the command line parsing result
86 struct WxProcessCmdLine
87 {
88   WxProcessCmdLine() {}
89   void Process(wxCmdLineParser& parser);
90
91   //  int argc;
92   std::vector<std::string> argv;
93   bool console;
94   bool debug;
95   bool quiet;
96   bool help;
97   bool graphical_dialog;
98   bool text_dialog;
99   bool no_console;
100   bool proceed;
101   std::map<std::string,std::string> param_map;
102   std::vector<std::string> input_file;
103   
104 };
105 //==========================================================================
106
107 //==========================================================================
108 void WxProcessCmdLine::Process(wxCmdLineParser& parser)
109 {
110   proceed = true;
111   if (parser.Found(_T("D"))) 
112     {
113       bbtk::StaticInitTime::PrintObjectListInfo = true;
114     }
115   
116   debug                         = ( parser.Found(_T("d")) );  
117   quiet                         = ( parser.Found(_T("q")) );
118   help                          = ( parser.Found(_T("h")) );
119
120 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
121 #if wxMAJOR_VERSION <= 2
122   graphical_dialog      = ( parser.Found(_T("wxcommandlineg")) );
123 #else
124   printf("EED Warnning. WxProcessCmdLine::Process  g  wxcommandlineg   ");
125   graphical_dialog      = ( parser.Found(_T("g")) );
126 #endif
127
128   text_dialog           = ( parser.Found(_T("t")) );
129   no_console            = ( parser.Found(_T("N")) );
130   if (quiet) bbtk::MessageManager::SetMessageLevel("max",0);
131   if (debug) bbtk::MessageManager::SetMessageLevel("all",9);
132
133   // parse the arguments and consider those which contain a "=" 
134   // as set input commands, other as files
135   int pargc = parser.GetParamCount();
136   for (int i=0; i<pargc; ++i) 
137     {
138       std::string s = bbtk::wx2std(parser.GetParam(i));
139       std::string::size_type pos = s.find_first_of("=");
140       if (std::string::npos != pos) 
141         {
142           std::string left = s.substr(0,pos);
143           std::string right = s.substr(pos+1,s.size());
144           param_map[left]=right;
145         }
146       else 
147         {
148           input_file.push_back(s);
149         }
150     }
151
152   bool usage = (help && (input_file.size()==0));
153   if (usage) {
154     std::cout << "BBI (The Black Box Interpreter) - bbtk "
155               << bbtk::GetVersion() << " - (c) Creatis 2007-2008"
156               << std::endl;
157     parser.Usage();
158     proceed = false;
159   }
160
161   console = ( parser.Found(_T("c")) || 
162               ((input_file.size() == 0) && 
163                (!no_console) &&
164                (!usage) ) );
165
166 }
167 //==========================================================================
168
169
170 //==========================================================================
171 class wxBBIApp : public wxApp
172 {
173 public:
174   bool OnInit( );
175   int  OnExit() { 
176     //    std::cout << "wxBBIApp::OnExit()"<<std::endl;
177     // bbtk::Object::PrintObjectListInfo();
178     return true; }
179   void OnInitCmdLine(wxCmdLineParser& parser);
180   bool OnCmdLineParsed(wxCmdLineParser& parser);
181
182   WxProcessCmdLine cmd;
183 };
184 //==========================================================================
185
186
187 //==========================================================================
188 void wxBBIApp::OnInitCmdLine(wxCmdLineParser& parser)
189 {
190   parser.SetDesc(cmdLineDesc);
191 }
192 //==========================================================================
193
194 //==========================================================================
195 bool wxBBIApp::OnCmdLineParsed(wxCmdLineParser& parser)
196 {
197   cmd.Process(parser);
198   // if (!cmd.proceed) return false;
199   return true;
200 }
201 //==========================================================================
202
203
204
205
206
207
208 //==========================================================================
209 // The `main program' equivalent, creating the windows and returning the
210 // main frame
211 bool wxBBIApp::OnInit( )
212 {
213 //Borrame
214 //FILE *ff; ff = fopen ("/tmp/wt.log","a+"); fprintf(ff,"EED wxBBIApp::OnInit\n"); fclose(ff);
215
216   //      std::cout << "OnInit"<<std::endl;
217   wxApp::OnInit();
218 #ifdef __WXGTK__
219   //See http://www.wxwindows.org/faqgtk.htm#locale
220   setlocale(LC_NUMERIC, "C");
221 #endif
222   
223
224   if (cmd.quiet) bbtk::MessageManager::SetMessageLevel("max",0);
225   if (cmd.debug) bbtk::MessageManager::SetMessageLevel("all",9);
226   
227
228 //Borrame
229 //printf ("EED bbi wxBBIApp::OnInit .....................\n");
230 //cmd.input_file.push_back("/home/davila/Borrame/testwt.bbs");
231
232
233   bbtk::WxGUIConsole *I = new bbtk::WxGUIConsole(0,_T("bbi"),wxSize(800,600));
234   SetTopWindow(I);  
235   if (cmd.console) I->Show(true);
236
237
238   I->SetInputs(cmd.param_map);
239
240   bool help_on_script = cmd.help && (cmd.input_file.size() > 0);
241   if (help_on_script)         I->SetNoExecMode(true);
242   if (cmd.graphical_dialog)   I->SetDialogMode(bbtk::VirtualExec::GraphicalDialog);
243   if (cmd.text_dialog)        I->SetDialogMode(bbtk::VirtualExec::TextDialog);
244
245   std::vector<std::string>::const_iterator i;
246   bool error = false;
247
248   for (i=cmd.input_file.begin(); i!=cmd.input_file.end(); ++i) 
249     {
250       error = ! I->InterpretFile(*i);
251       if (error) break;
252     }
253   bool show_on_error = error && ! cmd.no_console;
254   if (show_on_error) I->Show();
255
256   I->SetNoExecMode(false);
257
258   if (help_on_script) 
259     {
260       std::string package; 
261       I->GetInterpreter()->GetExecuter()->GetFactory()->PrintHelpDescriptor("workspace",package,false);
262     }
263
264   /*
265   std::cout << "soe="<<show_on_error <<std::endl;
266   std::cout << "con="<<console<<std::endl;
267   std::cout << "iws="<<bbtk::Wx::IsSomeWindowShown()<<std::endl;
268   */
269   if (!(show_on_error || cmd.console || bbtk::Wx::IsSomeWindowAlive() ))
270     {
271       I->Close();
272       //      std::cout << "I->Close"<<std::endl;
273     }
274   else 
275     {
276       //      std::cout << "!I->Close"<<std::endl;
277     }
278         
279   //    std::cout << "EO OnInit"<<std::endl;
280
281   return true;
282
283 }
284 //==========================================================================
285
286
287 #if defined(_WIN32) 
288 //==========================================================================
289 // WINDOWS
290 //==========================================================================
291 IMPLEMENT_APP(wxBBIApp);
292
293 //  How to have a Console and wxWidgets
294 //  http://www.wxwidgets.org/wiki/index.php/MSVC_Setup_Guide
295 //   In Visual C++ 6 (7 should be similar), to create an application that is both a console application 
296 //  (cout's to the console are visible) and has a wxWidgets GUI, 
297 //  you need to use the linker option "/subsystem:console" and the following code:
298 int main(int argc, char* argv[])
299 {
300
301 //Borrame
302 //FILE *ff; ff = fopen ("/tmp/wt.log","a+"); fprintf(ff,"EED main C\n"); fclose(ff);
303
304     return WinMain(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), SW_SHOWNORMAL);
305 }
306
307 #else 
308 //==========================================================================
309 // OTHER ( Linux... )
310 //==========================================================================
311
312 IMPLEMENT_APP_NO_MAIN(wxBBIApp);
313
314
315 int main(int argc, char* argv[])
316 {       
317
318 //Borrame
319 //FILE *ff; ff = fopen ("/tmp/wt.log","a+"); fprintf(ff,"EED main A\n"); fclose(ff);
320
321   wxMessageOutput::Set( new wxMessageOutputBest );
322
323   wxCmdLineParser parser(cmdLineDesc,argc,argv);
324   int val = parser.Parse(false);
325   if (val>0) 
326     {  
327       parser.Usage();
328       return 0;
329     }
330   WxProcessCmdLine cmdline;
331   cmdline.Process(parser);
332
333   if (!cmdline.proceed) return 0;
334
335         if (cmdline.no_console) 
336     {
337       //      std::cout << "main NC"<<std::endl;
338       // Interpreter 
339       bbtk::Interpreter::Pointer I = bbtk::Interpreter::New();
340       I->SetInputs(cmdline.param_map);
341       bool help_on_script = cmdline.help && (cmdline.input_file.size() > 0);
342       if (help_on_script) I->SetNoExecMode(true);
343       if (cmdline.text_dialog) I->SetDialogMode(bbtk::VirtualExec::TextDialog);
344       std::vector<std::string>::const_iterator i;
345       bool error = false;
346       for (i=cmdline.input_file.begin(); 
347            i!=cmdline.input_file.end(); ++i) 
348                 {
349                         error = ! I->InterpretFile(*i);
350                         if (error) break;
351                 }
352         if (help_on_script) 
353                 {
354                         I->SetNoExecMode(false);
355                         std::string package; 
356                         I->GetExecuter()->GetFactory()->PrintHelpDescriptor("workspace",
357                                                               package,
358                                                               false);
359                 }
360         if (cmdline.input_file.size()==0)
361                 {
362                         I->CommandLineInterpreter();
363                 } // if cmdline.input_file.size
364       //
365     } else {
366       wxEntry(argc, argv);
367     } // if cmdline.no_console
368
369 }
370
371
372 #endif // defined(_WIN32) 
373 //==========================================================================
374
375
376
377
378
379
380
381
382 #else
383 //==========================================================================
384 // WITHOUT WX
385 //==========================================================================
386
387 #include "bbtkInterpreter.h"
388
389 // Processes the command line parsing result
390 struct ProcessCmdLine
391 {
392   ProcessCmdLine() {}
393   void Process(int argc_, char *argv_[]);
394   bool Found(std::string value);
395
396   int  argc;
397   std::vector<std::string> argv;
398   bool console;
399   bool debug;
400   bool quiet;
401   bool help;
402   bool graphical_dialog;
403   bool text_dialog;
404   bool no_console;
405   bool proceed;
406   std::map<std::string,std::string> param_map;
407   std::vector<std::string> input_file;
408   
409 };
410
411 bool ProcessCmdLine::Found(std::string value)
412 {
413         bool result=false;
414         for (int i=1; i<argc; ++i) 
415         {
416                 if (value==argv[i]) 
417                 {
418                         result = true;
419                 } 
420         } // for
421         return result;
422 }
423
424 void ProcessCmdLine::Process(int argc_, char *argv_[])
425 {
426    argc = argc_;
427    for (int i=0; i<argc; ++i) 
428     {
429         argv.push_back(argv_[i]);
430     } // for
431
432 //EED  proceed = true;
433   if (Found("D")) 
434     {
435       bbtk::StaticInitTime::PrintObjectListInfo = true;
436     }
437   
438   debug                 = ( Found("d") );  
439   quiet                 = ( Found("q") );
440   help                  = ( Found("h") );
441   graphical_dialog      = ( Found("g") );
442   text_dialog           = ( Found("t") );
443   no_console            = ( Found("N") );
444   
445   if (quiet) bbtk::MessageManager::SetMessageLevel("max",0);
446   if (debug) bbtk::MessageManager::SetMessageLevel("all",9);
447
448   // parse the arguments and consider those which contain a "=" 
449   // as set input commands, other as files
450 //EED  int pargc = parser.GetParamCount();
451   for (int i=1; i<argc; ++i) 
452     {
453       std::string s = argv[i];
454       std::string::size_type pos = s.find_first_of("=");
455       if (std::string::npos != pos) 
456         {
457           std::string left = s.substr(0,pos);
458           std::string right = s.substr(pos+1,s.size());
459           param_map[left]=right;
460         }
461       else 
462         {
463           input_file.push_back(s);
464         }
465     }// for
466
467   bool usage = (help && (input_file.size()==0));
468   if (usage) {
469     std::cout << "BBI (The Black Box Interpreter) - bbtk "
470               << bbtk::GetVersion() << " - (c) Creatis 2007-2008"
471               << std::endl;
472 //EED    parser.Usage();
473     proceed = false;
474   }
475
476   console = ( Found("c") || 
477               ((input_file.size() == 0) && 
478                (!no_console) &&
479                (!usage) ) );
480   
481 }
482 //==========================================================================
483
484
485
486 int main(int argc, char* argv[])
487 {  
488 //EED
489 //  if (argc>2) 
490 //    {
491 //      std::cout << "usage : "<<argv[0]<<" [filename]"<<std::endl;
492 //      return 0;
493 //    }
494
495   std::cout << "BBI (Black Box Interpreter) - bbtk "
496             << bbtk::GetVersion()<< " - (c) Creatis 2007"
497             << std::endl;
498 //Borrame
499 //FILE *ff; ff = fopen ("/tmp/wt.log","a+"); fprintf(ff,"EED main B\n"); fclose(ff);
500
501   bbtk::Interpreter::Pointer I = bbtk::Interpreter::New();
502   if (argc==1) 
503   {
504         I->CommandLineInterpreter();
505   }  else     {
506          
507         ProcessCmdLine cmd;
508         cmd.Process(argc,argv);
509         I->SetInputs(cmd.param_map);
510
511         std::string f(argv[1]);
512         I->InterpretFile(f);
513   }
514   
515   //  bbtk::Wx::LoopUntilAllWindowsClose(); 
516      
517   return 0;
518
519 }
520
521 // EOF
522 #endif //#ifdef _USE_WXWIDGETS_
523
524
525