X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fappli%2Fbbi%2Fbbi.cxx;h=c7bb3254b5c478b7c0201b0d5c04fa7899c57b0f;hb=0b640e26a37a0d20f6e6c75856a49d956f10f53e;hp=03380f0a33bd12dce14a15e6321b56be0fdeb5ed;hpb=7a26044dd46cb80ab90ee1f63d3b4d8ce52b2d39;p=bbtk.git diff --git a/kernel/appli/bbi/bbi.cxx b/kernel/appli/bbi/bbi.cxx index 03380f0..c7bb325 100644 --- a/kernel/appli/bbi/bbi.cxx +++ b/kernel/appli/bbi/bbi.cxx @@ -1,3 +1,30 @@ +/* + # --------------------------------------------------------------------- + # + # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image + # pour la SantÈ) + # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton + # Previous Authors : Laurent Guigues, Jean-Pierre Roux + # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil + # + # This software is governed by the CeCILL-B license under French law and + # abiding by the rules of distribution of free software. You can use, + # modify and/ or redistribute the software under the terms of the CeCILL-B + # license as circulated by CEA, CNRS and INRIA at the following URL + # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html + # or in the file LICENSE.txt. + # + # As a counterpart to the access to the source code and rights to copy, + # modify and redistribute granted by the license, users are provided only + # with a limited warranty and the software's author, the holder of the + # economic rights, and the successive licensors have only limited + # liability. + # + # The fact that you are presently reading this means that you have had + # knowledge of the CeCILL-B license and that you accept its terms. + # ------------------------------------------------------------------------ */ + + #ifdef _USE_WXWIDGETS_ //========================================================================== @@ -12,37 +39,31 @@ #include #include - +//========================================================================== +// Command line options definition static const wxCmdLineEntryDesc cmdLineDesc[] = { - { wxCMD_LINE_SWITCH, _T("M"), _T("Memory debug"), _T("Display memory debug message on exit ('object -S')") }, - { wxCMD_LINE_SWITCH, _T("d"), _T("debug"), _T("all messages on ('message all 9')") }, - { wxCMD_LINE_SWITCH, _T("c"), _T("console"), _T("open a console") }, - { wxCMD_LINE_SWITCH, _T("q"), _T("quiet"), _T("be quiet ('message max 0')") }, - { wxCMD_LINE_SWITCH, _T("h"), _T("help"), _T("print help on bbi or on workspace defined if any") }, - { wxCMD_LINE_SWITCH, _T("g"), _T("graphical-dialog"), _T("prompts the user for the parameter values using graphical dialog") }, - { wxCMD_LINE_SWITCH, _T("t"), _T("text-dialog"), _T("prompts the user for the parameter values in text mode") }, - { wxCMD_LINE_SWITCH, _T("N"), _T("no-console"), _T("do not show console (even on error)") }, - { wxCMD_LINE_PARAM, NULL, NULL, _T("input_file"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE }, + { wxCMD_LINE_SWITCH, _T("h"), _T("help"), _T("print this help or help on the application defined in input bbs file if any") }, + { wxCMD_LINE_SWITCH, _T("g"), _T("graphical-dialog"), _T("prompt the input parameter values using graphical dialog") }, + { wxCMD_LINE_SWITCH, _T("t"), _T("text-dialog"), _T("prompt the input parameter values in text mode") }, + { wxCMD_LINE_SWITCH, _T("c"), _T("console"), _T("open bbi console") }, + { wxCMD_LINE_SWITCH, _T("N"), _T("no-console"), _T("never open bbi console even on error") }, + { wxCMD_LINE_SWITCH, _T("q"), _T("quiet"), _T("be quiet (='message max 0')") }, + { wxCMD_LINE_SWITCH, _T("d"), _T("debug"), _T("turn all messages on (='message all 9')") }, + { wxCMD_LINE_SWITCH, _T("D"), _T("Debug"), _T("memory debug on exit (='debug -D')") }, + { 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 +72,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 +226,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 +355,134 @@ 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; }