Program: bbtk
Module: $RCSfile: bbtkConfigurationFile.cxx,v $
Language: C++
- Date: $Date: 2008/09/10 07:25:23 $
- Version: $Revision: 1.15 $
+ Date: $Date: 2008/10/15 13:02:14 $
+ Version: $Revision: 1.16 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See doc/license.txt or
}
//=========================================================================
+ //=========================================================================
+ bool ConfigurationFile::AddPackagePathsAndWrite( const std::string& path )
+ {
+ bbtkDebugMessageInc("Config",9,
+ "ConfigurationFile::AddPackagePathsAndWrite("
+ <<path<<")"<<std::endl);
+
+ XMLResults* res = new XMLResults;
+ XMLNode BB =
+ XMLNode::parseFile((XMLCSTR)Get_config_xml_full_path().c_str(),
+ (XMLCSTR)"config",res);
+
+ if ( res->error != eXMLErrorNone )
+ {
+ std::string mess = GetErrorMessage(res,Get_config_xml_full_path());
+ delete res;
+ bbtkDebugMessage("Config",1,mess<< std::endl);
+ bbtkError(mess);
+ }
+ delete res;
+
+#ifdef _WIN32
+ std::string bbs_path = path + "/bbs";
+#else
+ std::string bbs_path = path + "/share/bbtk/bbs" ;
+#endif
+ XMLNode BBSPATH = BB.addChild((XMLCSTR)"bbs_path");
+ BBSPATH.addText((XMLCSTR)bbs_path.c_str());
+ Utilities::replace(bbs_path, INVALID_FILE_SEPARATOR, VALID_FILE_SEPARATOR);
+ mBbs_paths.push_back(bbs_path);
+
+#ifdef _WIN32
+ std::string pack_path = path + "/bin";
+ std::string pack_path = path + "/lib";
+#else
+ std::string pack_path = path ;
+#endif
+ XMLNode PACKPATH = BB.addChild((XMLCSTR)"package_path");
+ PACKPATH.addText((XMLCSTR)pack_path.c_str());
+ Utilities::replace(pack_path,INVALID_FILE_SEPARATOR,VALID_FILE_SEPARATOR);
+ mPackage_paths.push_back(pack_path);
+
+ XMLError err = BB.writeToFile((XMLCSTR)Get_config_xml_full_path().c_str());
+ if ( err != eXMLErrorNone )
+ {
+ std::string mess = GetErrorMessage(res,Get_config_xml_full_path());
+ bbtkDebugMessage("Config",1,mess<< std::endl);
+ bbtkError(mess);
+ }
+
+ return true;
+ }
+ //=========================================================================
//=========================================================================
void ConfigurationFile::GetHelp(int level) const
Program: bbtk
Module: $RCSfile: bbtkWxGUIScriptingInterface.cxx,v $
Language: C++
- Date: $Date: 2008/10/09 14:38:57 $
- Version: $Revision: 1.25 $
+ Date: $Date: 2008/10/15 13:02:14 $
+ Version: $Revision: 1.26 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
ID_Menu_RegeneratePackageDoc,
ID_Menu_RegenerateBoxesLists,
ID_Menu_RegenerateAll,
+ ID_Menu_PlugPackage,
ID_Menu_Windows_Files,
ID_Menu_Windows_Help,
ID_Menu_Windows_Messages,
wxMenu *menuTools = new wxMenu;
menuTools->Append( ID_Menu_CreatePackage, _T("Create &package") );
menuTools->Append( ID_Menu_CreateBlackBox, _T("Create &black box") );
- menuTools->Append( ID_Menu_ShowImageGraph, _T("&Show last image graph") );
+ menuTools->Append( ID_Menu_PlugPackage, _T("&Plug package") );
menuTools->AppendSeparator();
- menuTools->Append( ID_Menu_RegeneratePackageDoc,_T("&Regenerate package doc") );
- menuTools->Append( ID_Menu_RegenerateBoxesLists,_T("&Regenerate boxes lists") );
- menuTools->Append( ID_Menu_RegenerateAll,_T("&Regenerate all") );
-
+ menuTools->Append( ID_Menu_RegeneratePackageDoc,_T("Regenerate package &doc") );
+ menuTools->Append( ID_Menu_RegenerateBoxesLists,_T("Regenerate boxes &lists") );
+ menuTools->Append( ID_Menu_RegenerateAll,_T("Regenerate &all") );
+ menuTools->AppendSeparator();
+ menuTools->Append( ID_Menu_ShowImageGraph, _T("&Show last image graph") );
wxMenu *menuWindows = new wxMenu;
menuWindows->AppendCheckItem(ID_Menu_Windows_Files,
std::string command;
command = ConfigurationFile::GetInstance().Get_bin_path();
command += ConfigurationFile::GetInstance().Get_file_separator();
- command += "bbRegeneratePackageDoc " + pack;
+ command += "bbRegeneratePackageDoc " + pack + " -q";
bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
if ( ! system ( command.c_str() ) )
std::string command;
command = ConfigurationFile::GetInstance().Get_bin_path();
command += ConfigurationFile::GetInstance().Get_file_separator();
- command += "bbRegenerateBoxesLists";
+ command += "bbRegenerateBoxesLists -q";
bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
if ( ! system ( command.c_str() ) )
std::string command;
command = ConfigurationFile::GetInstance().Get_bin_path();
command += ConfigurationFile::GetInstance().Get_file_separator();
- command += "bbRegeneratePackageDoc -a && ";
+ command += "bbRegeneratePackageDoc -a -q && ";
command += ConfigurationFile::GetInstance().Get_bin_path();
command += ConfigurationFile::GetInstance().Get_file_separator();
- command += "bbRegenerateBoxesLists";
+ command += "bbRegenerateBoxesLists -q ";
bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
if ( ! system ( command.c_str() ) )
//================================================================
+ //================================================================
+ void WxGUIScriptingInterface::OnMenuPlugPackage(wxCommandEvent& WXUNUSED(event))
+ {
+ long style = wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST;
+ wxDirDialog* FD =
+ new wxDirDialog( 0,
+ _T("Select package directory"),
+ _T(""),
+ style);
+
+ if (FD->ShowModal()==wxID_OK)
+ {
+ std::string path = wx2std (FD->GetPath()) ;
+ std::string fname = path + "/bbtkPackage";
+ if ( ! Utilities::FileExists( fname ) )
+ {
+ wxString err(_T("The directory does not contain a 'bbtkPackage' file"));
+ wxMessageBox(err,_T("Plug package"),wxOK | wxICON_ERROR);
+ return;
+ }
+
+ std::ifstream f;
+ f.open(fname.c_str());
+ std::string pname;
+ f >> pname;
+ f.close();
+
+
+ bbtk::ConfigurationFile::GetInstance().AddPackagePathsAndWrite( path );
+
+ std::string command;
+ command = ConfigurationFile::GetInstance().Get_bin_path();
+ command += ConfigurationFile::GetInstance().Get_file_separator();
+ command += "bbRegeneratePackageDoc " + pname + " -q && ";
+ command += ConfigurationFile::GetInstance().Get_bin_path();
+ command += ConfigurationFile::GetInstance().Get_file_separator();
+ command += "bbRegenerateBoxesLists -q ";
+ bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
+
+ if ( ! system ( command.c_str() ) )
+ {
+ std::string mess("Package '");
+ mess += pname + "' successfully plugged in";
+ wxMessageBox(std2wx(mess),_T("Plug package"),
+ wxOK | wxICON_INFORMATION);
+ }
+ else
+ {
+ wxString err(_T("An error occured while running '"));
+ err += bbtk::std2wx(command) + _T("'");
+ wxMessageBox(err,_T("Regenerate all"),wxOK | wxICON_ERROR);
+ }
+ }
+
+ }
+ //================================================================
//================================================================
void WxGUIScriptingInterface::InterpreterUserViewHtmlPage(const std::string& page)
EVT_MENU(ID_Menu_RegeneratePackageDoc, WxGUIScriptingInterface::OnMenuRegeneratePackageDoc)
EVT_MENU(ID_Menu_RegenerateBoxesLists, WxGUIScriptingInterface::OnMenuRegenerateBoxesLists)
EVT_MENU(ID_Menu_RegenerateAll, WxGUIScriptingInterface::OnMenuRegenerateAll)
+ EVT_MENU(ID_Menu_PlugPackage, WxGUIScriptingInterface::OnMenuPlugPackage)
EVT_MENU(ID_Menu_Windows_Files, WxGUIScriptingInterface::OnMenuWindowsFiles)
EVT_MENU(ID_Menu_Windows_Help, WxGUIScriptingInterface::OnMenuWindowsHelp)
EVT_MENU(ID_Menu_Windows_Messages, WxGUIScriptingInterface::OnMenuWindowsMessages)