X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fappli%2Fbbi%2Fbbi.cxx;h=891ffbfcde3cdda7dbc2799ee9f79a7ed285311e;hb=ec331bfd72e99a47d47c915143a355df274a882b;hp=48951bd0d4ebf2d52096a72d60708769ab9ad50a;hpb=603bd2accf3811a7c49caa53b795edde11cbc710;p=bbtk.git diff --git a/kernel/appli/bbi/bbi.cxx b/kernel/appli/bbi/bbi.cxx index 48951bd..891ffbf 100644 --- a/kernel/appli/bbi/bbi.cxx +++ b/kernel/appli/bbi/bbi.cxx @@ -12,7 +12,8 @@ #include #include - +//========================================================================== +// Command line options definition static const wxCmdLineEntryDesc cmdLineDesc[] = { { wxCMD_LINE_SWITCH, _T("h"), _T("help"), _T("print this help or help on the application defined in input bbs file if any") }, @@ -26,23 +27,16 @@ static const wxCmdLineEntryDesc cmdLineDesc[] = { wxCMD_LINE_PARAM, NULL, NULL, _T("file [file [...]]"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE }, { wxCMD_LINE_NONE } }; +//========================================================================== - - -class wxBBIApp : public wxApp +//========================================================================== +// Processes the command line parsing result +struct WxProcessCmdLine { -public: - bool OnInit( ); - int OnExit() { - // std::cout << "wxBBIApp::OnExit()"< argv; bool console; bool debug; @@ -51,40 +45,36 @@ public: bool graphical_dialog; bool text_dialog; bool no_console; - + bool proceed; std::map param_map; std::vector input_file; }; +//========================================================================== -IMPLEMENT_APP(wxBBIApp); - -void wxBBIApp::OnInitCmdLine(wxCmdLineParser& parser) -{ - // std::cout << "OnInitCmdLine"<Show(true); + if (cmd.console) I->Show(true); - I->SetInputs(param_map); + I->SetInputs(cmd.param_map); - bool help_on_script = help && (input_file.size() > 0); - if (help_on_script) I->SetNoExecMode(true); - - if (graphical_dialog) I->SetDialogMode(bbtk::VirtualExec::GraphicalDialog); - if (text_dialog) I->SetDialogMode(bbtk::VirtualExec::TextDialog); + bool help_on_script = cmd.help && (cmd.input_file.size() > 0); + if (help_on_script) + I->SetNoExecMode(true); + if (cmd.graphical_dialog) + I->SetDialogMode(bbtk::VirtualExec::GraphicalDialog); + if (cmd.text_dialog) + I->SetDialogMode(bbtk::VirtualExec::TextDialog); std::vector::const_iterator i; bool error = false; - for (i=input_file.begin(); i!=input_file.end(); ++i) + for (i=cmd.input_file.begin(); i!=cmd.input_file.end(); ++i) { error = ! I->InterpretFile(*i); if (error) break; } - bool show_on_error = error && ! no_console; + bool show_on_error = error && ! cmd.no_console; if (show_on_error) I->Show(); I->SetNoExecMode(false); @@ -171,19 +194,37 @@ bool wxBBIApp::OnInit( ) if (help_on_script) { std::string package; - I->GetInterpreter()->GetExecuter()->GetFactory()->HelpBlackBox("workspace",package,false); + I->GetInterpreter()->GetExecuter()->GetFactory()->PrintHelpDescriptor("workspace",package,false); } - if (!(show_on_error || console || bbtk::Wx::IsSomeWindowShown() )) + /* + std::cout << "soe="<Close"<Close"<0) + { + parser.Usage(); + return 0; + } + WxProcessCmdLine cmdline; + cmdline.Process(parser); + + if (!cmdline.proceed) return 0; + + if (cmdline.no_console) + { + // std::cout << "main NC"<SetInputs(cmdline.param_map); + bool help_on_script = cmdline.help && (cmdline.input_file.size() > 0); + if (help_on_script) I->SetNoExecMode(true); + if (cmdline.text_dialog) I->SetDialogMode(bbtk::VirtualExec::TextDialog); + std::vector::const_iterator i; + bool error = false; + for (i=cmdline.input_file.begin(); + i!=cmdline.input_file.end(); ++i) + { + error = ! I->InterpretFile(*i); + if (error) break; + } + if (help_on_script) + { + I->SetNoExecMode(false); + std::string package; + I->GetExecuter()->GetFactory()->PrintHelpDescriptor("workspace", + package, + false); + } + if (cmdline.input_file.size()==0) + I->CommandLineInterpreter(); + + // + } + else + { + wxEntry(argc, argv); + } + +} + + #endif // defined(_WIN32) +//========================================================================== + + + + + + #else @@ -205,26 +315,132 @@ int main(int argc, char* argv[]) #include "bbtkInterpreter.h" -int main(int argc, char* argv[]) -{ +// Processes the command line parsing result +struct ProcessCmdLine +{ + ProcessCmdLine() {} + void Process(int argc_, char *argv_[]); + bool Found(std::string value); - if (argc>2) return 0; + int argc; + std::vector argv; + bool console; + bool debug; + bool quiet; + bool help; + bool graphical_dialog; + bool text_dialog; + bool no_console; + bool proceed; + std::map param_map; + std::vector input_file; + +}; - std::cout << "BBI (Black Box Interpreter) - bbtk " - << bbtk::GetVersion()<< " - (c) Creatis 2007" - <2) +// { +// std::cout << "usage : "<CommandLineInterpreter(); + } else { + + ProcessCmdLine cmd; + cmd.Process(argc,argv); + I->SetInputs(cmd.param_map); + + std::string f(argv[1]); + I->InterpretFile(f); + } + + // bbtk::Wx::LoopUntilAllWindowsClose(); + return 0; }