From 0f8f0ec85988476e9857f0091a9fc34953c1d9e6 Mon Sep 17 00:00:00 2001 From: guigues Date: Fri, 25 Jul 2008 11:07:34 +0000 Subject: [PATCH] *** empty log message *** --- kernel/appli/bbi/bbi.cxx | 229 +++++++++++++++----- kernel/cmake/BBTKPreventInSourceBuild.cmake | 15 +- kernel/src/bbtkWx.cxx | 2 + 3 files changed, 186 insertions(+), 60 deletions(-) diff --git a/kernel/appli/bbi/bbi.cxx b/kernel/appli/bbi/bbi.cxx index 378c1f6..a1984f5 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 ProcessCmdLine { -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); @@ -179,7 +202,7 @@ bool wxBBIApp::OnInit( ) std::cout << "con="<Close"<0) + { + parser.Usage(); + return 0; + } + ProcessCmdLine 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()->HelpBlackBox("workspace", + package, + false); + } + if (cmdline.input_file.size()==0) + I->CommandLineInterpreter(); + + // + } + else + { + // std::cout << "main C"<SetCmdLine(cmdline); + if (wxApp::GetInstance()!=0) + { + std::cout << "WXAPP!!!"<MainLoop(); + //bbtk::Wx::LoopUntilAllWindowsClose(); + */ + } + + std::cout << "EO main"<2) return 0; + if (argc>2) + { + std::cout << "usage : "<CommandLineInterpreter(); } else + { std::string f(argv[1]); - I.InterpretFile(f); + I->InterpretFile(f); } - + + bbtk::Wx::LoopUntilAllWindowsClose(); + return 0; } diff --git a/kernel/cmake/BBTKPreventInSourceBuild.cmake b/kernel/cmake/BBTKPreventInSourceBuild.cmake index de12a49..8126ce8 100644 --- a/kernel/cmake/BBTKPreventInSourceBuild.cmake +++ b/kernel/cmake/BBTKPreventInSourceBuild.cmake @@ -1,6 +1,9 @@ -#----------------------------------------------------------------------------- -# Building in the source tree is forbidden ! -IF(PROJECT_BINARY_DIR STREQUAL ${PROJECT_SOURCE_DIR}) - MESSAGE(FATAL_ERROR "Building in the source tree is not allowed !! Quit; remove the file 'CMakeCache.txt' and the folder 'CMakeFiles' and build outside the sources") -ENDIF(PROJECT_BINARY_DIR STREQUAL ${PROJECT_SOURCE_DIR}) -#----------------------------------------------------------------------------- +IF(NOT ALLOW_IN_SOURCE_BUILD) + #--------------------------------------------------------------------------- + # Building in the source tree is forbidden ! + # (except if ALLOW_IN_SOURCE_BUILD is set, e.g. for packaging with rpmbuild) + IF(PROJECT_BINARY_DIR STREQUAL ${PROJECT_SOURCE_DIR}) + MESSAGE(FATAL_ERROR "Building in the source tree is not allowed !! Quit; remove the file 'CMakeCache.txt' and the folder 'CMakeFiles' and build outside the sources") + ENDIF(PROJECT_BINARY_DIR STREQUAL ${PROJECT_SOURCE_DIR}) + #--------------------------------------------------------------------------- +ENDIF(NOT ALLOW_IN_SOURCE_BUILD) diff --git a/kernel/src/bbtkWx.cxx b/kernel/src/bbtkWx.cxx index ec1327f..46712c4 100644 --- a/kernel/src/bbtkWx.cxx +++ b/kernel/src/bbtkWx.cxx @@ -59,6 +59,8 @@ namespace bbtk bbtkDebugMessage("wx",1," --> Creating bbtk wxApp"<