Module: $RCSfile: bbtkFactory.cxx,v $
Language: C++
-Date: $Date: 2008/02/14 12:15:59 $
-Version: $Revision: 1.20 $
+Date: $Date: 2008/02/14 13:44:25 $
+Version: $Revision: 1.21 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
//===================================================================
-// ===================================================================================
-
+ // ===================================================================
bool Factory::DoLoadPackage(std::string libname,
std::string pkgname,
- std::string path,
- bool verbose)
+ std::string path)
{
-
+
#if defined(__GNUC__)
- verbose = true;
-
- void *handler;
- handler = dlopen(libname.c_str(),
- BBTK_RTLD_TIME | BBTK_RTLD_SCOPE );
- if (!handler)
- {
- // The following is *NOT* a debug time message :
- // It's a user intended message.
- // Please don't remove it.
- if (verbose) {
- std::cout <<"[" <<libname<<"] can't be open" << std::endl;
- std::cout << " " <<dlerror() << std::endl;
- }
- return false; // try next path
- }
-
+
+ void *handler;
+ handler = dlopen(libname.c_str(),
+ BBTK_RTLD_TIME | BBTK_RTLD_SCOPE );
+ if (!handler)
+ {
// The following is *NOT* a debug time message :
// It's a user intended message.
// Please don't remove it.
- if (verbose)
- std::cout <<" -->[" <<libname<<"] found" << std::endl;
-
- // Loads the Package accessor
-
- std::string getpackname(pkgname);
- getpackname += "GetPackage";
- void *getpack = dlsym(handler, getpackname.c_str());
- if (!getpack)
- {
- dlclose(handler);
- bbtkError("GetPackage : could not load package \""<<pkgname
- <<"\" [symbol "<<getpackname<<"] :"<<dlerror());
- }
-
- // Verifies that the Package delete function is present
- std::string delfname(pkgname);
- delfname += "DeletePackage";
- void *delf = dlsym(handler, delfname.c_str());
- if (!delf)
- {
- dlclose(handler);
- bbtkError("DeletePackage : could not load package \""<<pkgname
- <<"\" [symbol "<<delfname<<"] :"<<dlerror());
- }
-
+ bbtkError("Could not open shared library [" <<libname<<"] : "
+ <<dlerror() << std::endl);
+
+ return false; // try next path
+ }
+
+ // The following is *NOT* a debug time message :
+ // It's a user intended message.
+ // Please don't remove it.
+ bbtkMessage("Output",2," -->[" <<libname<<"] found" << std::endl);
+
+ // Loads the Package accessor
+
+ std::string getpackname(pkgname);
+ getpackname += "GetPackage";
+ void *getpack = dlsym(handler, getpackname.c_str());
+ if (!getpack)
+ {
+ dlclose(handler);
+ bbtkError("Shared library ["<<libname<<"] is not a valid bbtk package."
+ <<" Symbol ["<<getpackname<<"] :"<<dlerror());
+ }
+
+ // Verifies that the Package delete function is present
+ std::string delfname(pkgname);
+ delfname += "DeletePackage";
+ void *delf = dlsym(handler, delfname.c_str());
+ if (!delf)
+ {
+ dlclose(handler);
+ bbtkError("Shared library ["<<libname<<"] is not a valid bbtk package."
+ <<" Symbol ["<<delfname<<"] :"<<dlerror());
+ }
+
#elif defined(_WIN32)
-
- HINSTANCE handler;
-
- SetErrorMode(0);
- handler = LoadLibrary(libname.c_str());
- if (!handler){
- if (verbose)
- // The following is *NOT* a debug time message :
- // It's a user intended message.
- // Please don't remove it.
- std::cout <<" no handler for [" <<libname<<"];" << std::endl;
- return false;// Problem with the found library
- }
- if (verbose)
- std::cout <<" --->[" <<libname<<"] found" << std::endl;
-
+
+ HINSTANCE handler;
+
+ SetErrorMode(0);
+ handler = LoadLibrary(libname.c_str());
+ if (!handler)
+ {
+ // The following is *NOT* a debug time message :
+ // It's a user intended message.
+ // Please don't remove it.
+ bbtkError("Error loading library [" <<libname<<"]" << std::endl);
+ return false;// Problem with the found library
+ }
+
+ bbtkMessage("Output",2," --->[" <<libname<<"] found" << std::endl);
+
// Loads the Package accessor
-
- std::string getpackname(pkgname);
- getpackname += "GetPackage";
- void *getpack = GetProcAddress(handler, getpackname.c_str());
- if (!getpack)
- {
- FreeLibrary(handler);
- bbtkError("[1]could not load package \""<<pkgname
- <<"\" : "<<getpackname<<" symbol not found (is it a bbtk package lib ?)");
- // look how to get the error message on win
- //<<dlerror());
- }
- // Verifies that the Package delete function is present
- std::string delfname(pkgname);
- delfname += "DeletePackage";
- void *delf = GetProcAddress(handler, delfname.c_str());
- if (!delf)
- {
- FreeLibrary(handler);
- bbtkError("[2]could not load package \""<<pkgname
- <<"\" : "<<delfname<<" symbol not found (is it a bbtk package lib ?)");
- // look how to get the error message on win
- //<<dlerror());
- }
+
+ std::string getpackname(pkgname);
+ getpackname += "GetPackage";
+ void *getpack = GetProcAddress(handler, getpackname.c_str());
+ if (!getpack)
+ {
+ FreeLibrary(handler);
+ bbtkError("[1] Could not load package \""<<pkgname
+ <<"\" : "<<getpackname<<" symbol not found (is it a bbtk package lib ?)");
+ // look how to get the error message on win
+ //<<dlerror());
+ }
+ // Verifies that the Package delete function is present
+ std::string delfname(pkgname);
+ delfname += "DeletePackage";
+ void *delf = GetProcAddress(handler, delfname.c_str());
+ if (!delf)
+ {
+ FreeLibrary(handler);
+ bbtkError("[2] Could not load package \""<<pkgname
+ <<"\" : "<<delfname<<" symbol not found (is it a bbtk package lib ?)");
+ // look how to get the error message on win
+ //<<dlerror());
+ }
#else
- bbtkError("neither __GNUC__ nor _WIN32 ?!? How did you compile ?");
+ bbtkError("neither __GNUC__ nor _WIN32 ?!? How did you compile ?");
#endif
-
+
// Stores the package
- PackageInfoType pack;
- pack.mDynamicLibraryHandler = handler;
+ PackageInfoType pack;
+ pack.mDynamicLibraryHandler = handler;
// Invokes the accessor to the PackageUnit pointer
- pack.mPackage = ((PackageAccessor)getpack)();
-
- mPackageMap[pkgname] = pack;
-
+ pack.mPackage = ((PackageAccessor)getpack)();
+
+ mPackageMap[pkgname] = pack;
+
// Test bbtk build version ok
- if ( pack.mPackage->GetBBTKVersion() != bbtk::GetVersion() )
- {
- std::string v(pack.mPackage->GetBBTKVersion());
- UnLoadPackage(pkgname);
- bbtkError(" package build with bbtk version "
- << v
- << " whereas application build with version "
- << bbtk::GetVersion());
- }
-
- std::string separator =
- ConfigurationFile::GetInstance().Get_file_separator ();
- //BBTK_STRINGIFY_SYMBOL(BBTK_DOC_REL_PATH)
- std::string docreldoc =
- separator + "bbdoc" + separator + pkgname + separator + "index.html";
- std::string reldoc =
- ".." + separator + ".." + docreldoc;
- std::string doc = path + separator + ".." + separator
- + BBTK_STRINGIFY_SYMBOL(BBTK_DOC_REL_PATH)
- + docreldoc;
-
- pack.mPackage->SetDocURL(doc);
- pack.mPackage->SetDocRelativeURL(reldoc);
-
+ if ( pack.mPackage->GetBBTKVersion() != bbtk::GetVersion() )
+ {
+ std::string v(pack.mPackage->GetBBTKVersion());
+ UnLoadPackage(pkgname);
+ bbtkError("Cannot load package ["<<libname<<"]. "
+ <<"Package build with bbtk version "
+ << v
+ << " whereas application build with version "
+ << bbtk::GetVersion());
+ }
+
+ std::string separator =
+ ConfigurationFile::GetInstance().Get_file_separator ();
+ //BBTK_STRINGIFY_SYMBOL(BBTK_DOC_REL_PATH)
+ std::string docreldoc =
+ separator + "bbdoc" + separator + pkgname + separator + "index.html";
+ std::string reldoc =
+ ".." + separator + ".." + docreldoc;
+ std::string doc = path + separator + ".." + separator
+ + BBTK_STRINGIFY_SYMBOL(BBTK_DOC_REL_PATH)
+ + docreldoc;
+
+ pack.mPackage->SetDocURL(doc);
+ pack.mPackage->SetDocRelativeURL(reldoc);
+
//===================================================================
- bbtkMessage("Output",2,pack.mPackage->GetName()<<" "
- <<pack.mPackage->GetVersion()
- <<" (bbtk "
- <<pack.mPackage->GetBBTKVersion()<<") "
- <<pack.mPackage->GetAuthor() << " Category(s) :"
- <<pack.mPackage->GetCategory()
- <<std::endl);
- bbtkMessage("Output",2,pack.mPackage->GetDescription()<<std::endl);
+ bbtkMessage("Output",2,pack.mPackage->GetName()<<" "
+ <<pack.mPackage->GetVersion()
+ <<" (bbtk "
+ <<pack.mPackage->GetBBTKVersion()<<") "
+ <<pack.mPackage->GetAuthor() << " Category(s) :"
+ <<pack.mPackage->GetCategory()
+ <<std::endl);
+ bbtkMessage("Output",2,pack.mPackage->GetDescription()<<std::endl);
//===================================================================
-
- bbtkDebugDecTab("Kernel",7);
- return true;
+
+ bbtkDebugDecTab("Kernel",7);
+ return true;
}
-
+
//===================================================================
/// \brief Loads a package.
///
/// If it succeeds, then tries to load the symbols "<name>GetPackage" and "<name>DeletePackage".
/// "<name>GetPackage" is called to get the pointer on the bbtk::Package of the library
/// ("<name>DeletePackage" is not used, its presence is just checked before loading the package).
-
+
/// now, filename is only the last name (no longer the full name!)
/// it will be searched within *all* the paths given in bbtk_config.xml
+
- /// verbose = true (set by "config v") displays the loading process
-
+
void Factory::LoadPackage( const std::string& name,
- bool use_configuration_file, bool verbose)
+ bool use_configuration_file)
{
// Note : in the following :
// name : the user supplied name
return;
}
- // std::string path = Utilities::ExpandLibName(upath, verbose);
- std::string path = Utilities::ExpandLibName(name, verbose); // keep last item, here.
+ // std::string path = Utilities::ExpandLibName(upath, false);
+ std::string path = Utilities::ExpandLibName(name,false); // keep last item, here.
if (path != "")
{
// The following is *NOT* a debug time message :
// It's a user intended message.
// Please don't remove it.
- if (verbose)
- std::cout <<" [" <<libname <<"] : doesn't exist" <<std::endl;
+ bbtkMessage("Output",3," [" <<libname
+ <<"] : doesn't exist" <<std::endl);
}
else
{
- ok = DoLoadPackage( libname, pkgname, path, verbose);
+ ok = DoLoadPackage( libname, pkgname, path);
}
}
else
// The following is *NOT* a debug time message :
// It's a user intended message.
// Please don't remove it.
- if (verbose)
- std::cout <<" [" <<libname <<"] : doesn't exist" <<std::endl;
+ bbtkMessage("Output",3,
+ " [" <<libname <<"] : doesn't exist" <<std::endl);
continue; // try next path
}
foundFile = true;
// Try to Load the library
- ok = DoLoadPackage( libname, pkgname, path, verbose);
+ ok = DoLoadPackage( libname, pkgname, path);
if (ok)
{
bbtkMessage("Debug",2," OK"<<std::endl);
{
if (!foundFile)
{
- bbtkError("could not find package ["<<pkgname<< "]");
+ bbtkError("Could not find package ["<<pkgname<< "]");
}
else
{
#if defined(__GNUC__)
- bbtkError("could not load package ["<< pkgname
+ bbtkError("Could not load package ["<< pkgname
<<"] :" << std::endl << " " << dlerror());
#elif defined(_WIN32)
- bbtkError("could not load package ["<<pkgname
+ bbtkError("Could not load package ["<<pkgname
<<"] : " << std::endl << " " <<libname<<" not found");
// look how to get the error message on win
#ifdef _USE_WXWIDGETS_
+
#include "bbtkWxBrowser.h"
#include "bbtkWxBlackBox.h"
+#include "bbtkWxConsole.h"
#include "bbtkConfigurationFile.h"
#include "bbtkUtilities.h"
fwd_id,
home_id,
reload_id,
- index_id,
+ include_id,
url_id,
html_id
};
EVT_BUTTON(fwd_id, WxBrowser::OnForwardButton )
EVT_BUTTON(home_id, WxBrowser::OnHomeButton )
EVT_BUTTON(reload_id, WxBrowser::OnReloadButton )
- EVT_BUTTON(index_id, WxBrowser::OnMakeIndexButton )
+ EVT_BUTTON(include_id, WxBrowser::OnIncludeFileButton )
EVT_TEXT_ENTER(url_id, WxBrowser::OnURLEnter )
EVT_HTML_LINK_CLICKED(html_id, WxBrowser::OnLinkClicked)
END_EVENT_TABLE()
bsizer->Add ( mwxReloadButton, 0, wxALIGN_CENTRE |
wxTOP | wxBOTTOM , 10 );
- mwxMakeIndexButton = new wxButton( panel, index_id,
+ mwxIncludeFileButton = new wxButton( panel, include_id,
_T("*"),wxDefaultPosition,
wxDefaultSize,wxBU_EXACTFIT);
- bsizer->Add ( mwxMakeIndexButton, 0, wxALIGN_CENTRE |
+ bsizer->Add ( mwxIncludeFileButton, 0, wxALIGN_CENTRE |
wxLEFT | wxTOP | wxBOTTOM , 10 );
mwxURL = new wxTextCtrl(panel,url_id,_T(""),
//========================================================================
//========================================================================
- void WxBrowser::OnReloadButton(wxCommandEvent& )
+ void WxBrowser::OnReloadButton(wxCommandEvent& e)
{
- std::string s = wx2std(mwxHtmlWindow->GetOpenedPage());
- GoTo(s);
+ OnURLEnter(e);
}
//========================================================================
//========================================================================
- void WxBrowser::OnMakeIndexButton(wxCommandEvent& )
+ void WxBrowser::OnIncludeFileButton(wxCommandEvent& )
{
+ std::string filename = wx2std(mwxURL->GetValue());
+ size_t s = filename.length();
+
+ WxConsole* C = WxConsole::GetInstance();
+ if (C != 0)
+ {
+ if ((s>3) && (filename[s-1]=='s')
+ && (filename[s-2]=='b')
+ && (filename[s-3]=='b')
+ && (filename[s-4]=='.'))
+ {
+ C->SetStatusText(_T("Executing ")+mwxURL->GetValue());
+ C->InterpretFile(filename);
+ }
+ else
+ {
+ C->SetStatusText(_T("The current page is not a bbs file : cannot execute it"));
+ }
+ }
/*
std::string bbdoc = ConfigurationFile::GetInstance().Get_url();
bbdoc += "/bbdoc";