]> Creatis software - bbtk.git/blob - kernel/appli/bbi/bbi.cxx
*** empty log message ***
[bbtk.git] / kernel / appli / bbi / bbi.cxx
1 #ifdef _USE_WXWIDGETS_
2
3 //==========================================================================
4 // WITH WX
5 //==========================================================================
6 #include "bbtkObject.h"
7 #include "bbtkInterpreter.h"
8 #include "bbtkWxBlackBox.h"
9 #include "bbtkWxGUIConsole.h"
10
11 #include <wx/cmdline.h>
12 #include <vector>
13 #include <map>
14
15 //==========================================================================
16 // Command line options definition
17 static const wxCmdLineEntryDesc cmdLineDesc[] =
18 {
19   { wxCMD_LINE_SWITCH, _T("h"), _T("help"),   _T("print this help or help on the application defined in input bbs file if any") },
20   { wxCMD_LINE_SWITCH, _T("g"), _T("graphical-dialog"),   _T("prompt the input parameter values using graphical dialog") },
21   { wxCMD_LINE_SWITCH, _T("t"), _T("text-dialog"),   _T("prompt the input parameter values in text mode") },
22   { wxCMD_LINE_SWITCH, _T("c"), _T("console"), _T("open bbi console") },
23   { wxCMD_LINE_SWITCH, _T("N"), _T("no-console"),   _T("never open bbi console even on error") },
24   { wxCMD_LINE_SWITCH, _T("q"), _T("quiet"),   _T("be quiet (='message max 0')") },
25   { wxCMD_LINE_SWITCH, _T("d"), _T("debug"), _T("turn all messages on (='message all 9')") },
26   { wxCMD_LINE_SWITCH, _T("D"), _T("Debug"), _T("memory debug on exit (='debug -D')") },
27   { wxCMD_LINE_PARAM,  NULL, NULL, _T("file [file [...]]"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
28   { wxCMD_LINE_NONE }
29 };
30 //==========================================================================
31
32 //==========================================================================
33 // Processes the command line parsing result
34 struct ProcessCmdLine
35 {
36   ProcessCmdLine() {}
37   void Process(wxCmdLineParser& parser);
38
39   //  int argc;
40   std::vector<std::string> argv;
41   bool console;
42   bool debug;
43   bool quiet;
44   bool help;
45   bool graphical_dialog;
46   bool text_dialog;
47   bool no_console;
48   bool proceed;
49   std::map<std::string,std::string> param_map;
50   std::vector<std::string> input_file;
51   
52 };
53 //==========================================================================
54
55 //==========================================================================
56 void ProcessCmdLine::Process(wxCmdLineParser& parser)
57 {
58   proceed = true;
59   if (parser.Found(_T("D"))) 
60     {
61       bbtk::StaticInitTime::PrintObjectListInfo = true;
62     }
63   
64   debug = ( parser.Found(_T("d")) );  
65   quiet = ( parser.Found(_T("q")) );
66   help = ( parser.Found(_T("h")) );
67   graphical_dialog = ( parser.Found(_T("g")) );
68   text_dialog = ( parser.Found(_T("t")) );
69   no_console = ( parser.Found(_T("N")) );
70   
71   if (quiet) bbtk::MessageManager::SetMessageLevel("max",0);
72   if (debug) bbtk::MessageManager::SetMessageLevel("all",9);
73
74   // parse the arguments and consider those which contain a "=" 
75   // as set input commands, other as files
76   int pargc = parser.GetParamCount();
77   for (int i=0; i<pargc; ++i) 
78     {
79       std::string s = bbtk::wx2std(parser.GetParam(i));
80       std::string::size_type pos = s.find_first_of("=");
81       if (std::string::npos != pos) 
82         {
83           std::string left = s.substr(0,pos);
84           std::string right = s.substr(pos+1,s.size());
85           param_map[left]=right;
86         }
87       else 
88         {
89           input_file.push_back(s);
90         }
91     }
92
93   bool usage = (help && (input_file.size()==0));
94   if (usage) {
95     std::cout << "BBI (The Black Box Interpreter) - bbtk "
96               << bbtk::GetVersion() << " - (c) Creatis 2007-2008"
97               << std::endl;
98     parser.Usage();
99     proceed = false;
100   }
101
102   console = ( parser.Found(_T("c")) || 
103               ((input_file.size() == 0) && 
104                (!no_console) &&
105                (!usage) ) );
106   
107 }
108 //==========================================================================
109
110
111 //==========================================================================
112 class wxBBIApp : public wxApp
113 {
114 public:
115   bool OnInit( );
116   int  OnExit() { 
117     //    std::cout << "wxBBIApp::OnExit()"<<std::endl;
118     // bbtk::Object::PrintObjectListInfo();
119     return true; }
120   void OnInitCmdLine(wxCmdLineParser& parser);
121   bool OnCmdLineParsed(wxCmdLineParser& parser);
122
123   ProcessCmdLine cmd;
124 };
125 //==========================================================================
126
127
128 //==========================================================================
129 void wxBBIApp::OnInitCmdLine(wxCmdLineParser& parser)
130 {
131   parser.SetDesc(cmdLineDesc);
132 }
133 //==========================================================================
134
135 //==========================================================================
136 bool wxBBIApp::OnCmdLineParsed(wxCmdLineParser& parser)
137 {
138   cmd.Process(parser);
139   // if (!cmd.proceed) return false;
140   return true;
141 }
142 //==========================================================================
143
144
145
146
147
148
149 //==========================================================================
150 // The `main program' equivalent, creating the windows and returning the
151 // main frame
152 bool wxBBIApp::OnInit( )
153 {
154   //    std::cout << "OnInit"<<std::endl;
155   wxApp::OnInit();
156 #ifdef __WXGTK__
157   //See http://www.wxwindows.org/faqgtk.htm#locale
158   setlocale(LC_NUMERIC, "C");
159 #endif
160   
161
162   if (cmd.quiet) bbtk::MessageManager::SetMessageLevel("max",0);
163   if (cmd.debug) bbtk::MessageManager::SetMessageLevel("all",9);
164   
165
166   bbtk::WxGUIConsole *I = new bbtk::WxGUIConsole(0,_T("bbi"),wxSize(800,600));
167   SetTopWindow(I);  
168   if (cmd.console) I->Show(true);
169
170
171   I->SetInputs(cmd.param_map);
172
173   bool help_on_script = cmd.help && (cmd.input_file.size() > 0);
174   if (help_on_script) 
175     I->SetNoExecMode(true);
176   if (cmd.graphical_dialog) 
177     I->SetDialogMode(bbtk::VirtualExec::GraphicalDialog);
178   if (cmd.text_dialog) 
179     I->SetDialogMode(bbtk::VirtualExec::TextDialog);
180
181   std::vector<std::string>::const_iterator i;
182   bool error = false;
183
184   for (i=cmd.input_file.begin(); i!=cmd.input_file.end(); ++i) 
185     {
186       error = ! I->InterpretFile(*i);
187       if (error) break;
188     }
189   bool show_on_error = error && ! cmd.no_console;
190   if (show_on_error) I->Show();
191
192   I->SetNoExecMode(false);
193
194   if (help_on_script) 
195     {
196       std::string package; 
197       I->GetInterpreter()->GetExecuter()->GetFactory()->HelpBlackBox("workspace",package,false);
198     }
199
200   /*
201   std::cout << "soe="<<show_on_error <<std::endl;
202   std::cout << "con="<<console<<std::endl;
203   std::cout << "iws="<<bbtk::Wx::IsSomeWindowShown()<<std::endl;
204   */
205   if (!(show_on_error || cmd.console || bbtk::Wx::IsSomeWindowShown() ))
206     {
207       I->Close();
208       //      std::cout << "I->Close"<<std::endl;
209     }
210   else 
211     {
212       //      std::cout << "!I->Close"<<std::endl;
213     }
214   return true;
215
216 }
217 //==========================================================================
218
219
220 #if defined(_WIN32) 
221 //==========================================================================
222 // WINDOWS
223 //==========================================================================
224 IMPLEMENT_APP(wxBBIApp);
225 //  How to have a Console and wxWidgets
226 //  http://www.wxwidgets.org/wiki/index.php/MSVC_Setup_Guide
227 //   In Visual C++ 6 (7 should be similar), to create an application that is both a console application 
228 //  (cout's to the console are visible) and has a wxWidgets GUI, 
229 //  you need to use the linker option "/subsystem:console" and the following code:
230 int main(int argc, char* argv[])
231 {
232   return WinMain(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), SW_SHOWNORMAL);
233 }
234
235 #else 
236 //==========================================================================
237 // OTHER ( Linux... )
238 //==========================================================================
239
240 IMPLEMENT_APP_NO_MAIN(wxBBIApp);
241
242
243 int main(int argc, char* argv[])
244 {
245   wxMessageOutput::Set( new wxMessageOutputBest );
246
247   wxCmdLineParser parser(cmdLineDesc,argc,argv);
248   int val = parser.Parse(false);
249   if (val>0) 
250     {  
251       parser.Usage();
252       return 0;
253     }
254   ProcessCmdLine cmdline;
255   cmdline.Process(parser);
256
257   if (!cmdline.proceed) return 0;
258
259   if (cmdline.no_console) 
260     {
261       //      std::cout << "main NC"<<std::endl;
262       // Interpreter 
263       bbtk::Interpreter::Pointer I = bbtk::Interpreter::New();
264       I->SetInputs(cmdline.param_map);
265       bool help_on_script = cmdline.help && (cmdline.input_file.size() > 0);
266       if (help_on_script) I->SetNoExecMode(true);
267       if (cmdline.text_dialog) I->SetDialogMode(bbtk::VirtualExec::TextDialog);
268       std::vector<std::string>::const_iterator i;
269       bool error = false;
270       for (i=cmdline.input_file.begin(); 
271            i!=cmdline.input_file.end(); ++i) 
272         {
273           error = ! I->InterpretFile(*i);
274           if (error) break;
275         }
276       if (help_on_script) 
277         {
278           I->SetNoExecMode(false);
279           std::string package; 
280           I->GetExecuter()->GetFactory()->HelpBlackBox("workspace",
281                                                        package,
282                                                        false);
283         }
284       if (cmdline.input_file.size()==0)
285         I->CommandLineInterpreter();
286
287       //
288     }
289   else 
290     {
291       wxEntry(argc, argv);
292     }
293
294 }
295
296
297 #endif // defined(_WIN32) 
298 //==========================================================================
299
300
301
302
303
304
305
306
307 #else
308 //==========================================================================
309 // WITHOUT WX
310 //==========================================================================
311
312 #include "bbtkInterpreter.h"
313
314 int main(int argc, char* argv[])
315 {  
316
317   if (argc>2) 
318     {
319       std::cout << "usage : "<<argv[0]<<" [filename]"<<std::endl;
320       return 0;
321     }
322
323   std::cout << "BBI (Black Box Interpreter) - bbtk "
324             << bbtk::GetVersion()<< " - (c) Creatis 2007"
325             << std::endl;
326
327   bbtk::Interpreter::Pointer I = bbtk::Interpreter::New();
328   if (argc==1) 
329     {
330       I->CommandLineInterpreter();
331     }
332   else 
333
334     {
335       std::string f(argv[1]);
336       I->InterpretFile(f);
337     }
338   
339   bbtk::Wx::LoopUntilAllWindowsClose(); 
340      
341   return 0;
342
343 }
344
345 // EOF
346 #endif //#ifdef _USE_WXWIDGETS_
347
348
349