]> Creatis software - bbtk.git/commitdiff
*** empty log message ***
authorguigues <guigues>
Thu, 14 Feb 2008 13:44:25 +0000 (13:44 +0000)
committerguigues <guigues>
Thu, 14 Feb 2008 13:44:25 +0000 (13:44 +0000)
kernel/src/bbtkFactory.cxx
kernel/src/bbtkFactory.h
kernel/src/bbtkWxBrowser.cxx
kernel/src/bbtkWxBrowser.h
kernel/src/bbtkWxConsole.cxx

index 138006cc7a1b01ebe7e05d6c0b309b1e6c902ac1..5095c0e81b452368b4aca8f68f53464aa4cf40cc 100644 (file)
@@ -4,8 +4,8 @@ Program:   bbtk
 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
@@ -100,155 +100,151 @@ namespace bbtk
   //===================================================================
 
 
-// ===================================================================================
-
+  // ===================================================================
   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.
   ///
@@ -259,14 +255,14 @@ namespace bbtk
   /// 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
@@ -323,8 +319,8 @@ namespace bbtk
           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 != "")
        {
@@ -338,12 +334,12 @@ namespace bbtk
           // 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
@@ -382,15 +378,15 @@ namespace bbtk
         // 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);
@@ -404,15 +400,15 @@ namespace bbtk
     {
       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
index a4f84e73f6f7d0c015484d8e1f05f0c28e7cdc44..c5433cc7af73a9f544db4c8c20898a761e42ca6c 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkFactory.h,v $
   Language:  C++
-  Date:      $Date: 2008/02/14 11:38:58 $
-  Version:   $Revision: 1.6 $
+  Date:      $Date: 2008/02/14 13:44:25 $
+  Version:   $Revision: 1.7 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See doc/license.txt or
@@ -44,8 +44,7 @@ namespace bbtk
     ~Factory();
 
     void LoadPackage( const std::string& name, 
-                      bool use_configuration_file = true, 
-                     bool verbose = false );
+                      bool use_configuration_file = true );
     void UnLoadPackage( const std::string& name );
     void PrintPackages(bool details = true, bool adaptors = false) const;
     void HelpPackage(const std::string& name, bool adaptors = false) const;
@@ -87,8 +86,7 @@ namespace bbtk
 
     bool DoLoadPackage(std::string libname,
                       std::string pkgname,
-                      std::string path,
-                      bool v);
+                      std::string path);
 
     /// The structure storing info on a package
     class PackageInfoType
@@ -142,9 +140,9 @@ namespace bbtk
   }
 
   inline void LoadPackage( const std::string& name, 
-                           bool use_configuration_file = true, bool verbose = false )
+                           bool use_configuration_file = true)
   {
-    GetGlobalFactory()->LoadPackage(name,use_configuration_file, verbose);
+    GetGlobalFactory()->LoadPackage(name,use_configuration_file);
   }
 
   inline void UnLoadPackage( const std::string& name )
index b9f73ce404ad2534fd19892811ec63855db00f53..708784171c7c03a7894879c6b0fb37058ad173f1 100644 (file)
@@ -1,7 +1,9 @@
 #ifdef _USE_WXWIDGETS_
 
+
 #include "bbtkWxBrowser.h"
 #include "bbtkWxBlackBox.h"
+#include "bbtkWxConsole.h"
 
 #include "bbtkConfigurationFile.h"
 #include "bbtkUtilities.h"
@@ -33,7 +35,7 @@ namespace bbtk
       fwd_id,
       home_id,
       reload_id,
-      index_id,
+      include_id,
       url_id,
       html_id
     };
@@ -44,7 +46,7 @@ namespace bbtk
     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()
@@ -87,10 +89,10 @@ namespace bbtk
     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(""),
@@ -214,16 +216,34 @@ namespace bbtk
   //========================================================================
 
   //========================================================================
-  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";
index 131b77ee97bd020b47d7e02820108d7e2e9f49ea..26238df30e5190fd96494c7552e3d76d548e321e 100644 (file)
@@ -47,7 +47,7 @@ namespace bbtk
     void OnForwardButton(wxCommandEvent& );
     void OnHomeButton(wxCommandEvent& );
     void OnReloadButton(wxCommandEvent& );
-    void OnMakeIndexButton(wxCommandEvent& );
+    void OnIncludeFileButton(wxCommandEvent& );
     void OnLinkClicked(wxHtmlLinkEvent& );
     void OnURLEnter( wxCommandEvent&);
     void UpdateURL();
@@ -62,7 +62,7 @@ namespace bbtk
     wxButton* mwxForwardButton;
     wxButton* mwxHomeButton;
     wxButton* mwxReloadButton;
-    wxButton* mwxMakeIndexButton;
+    wxButton* mwxIncludeFileButton;
  
    // any class wishing to process wxWidgets events must use this macro
     DECLARE_EVENT_TABLE()  
index d0e862269969f191f2204b1790b97ec8d782498a..943d52a8736d3179926481e02e997fda71274a03 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxConsole.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/02/12 12:55:16 $
-  Version:   $Revision: 1.3 $
+  Date:      $Date: 2008/02/14 13:44:25 $
+  Version:   $Revision: 1.4 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -306,6 +306,7 @@ namespace bbtk
   }
   //================================================================
 
+
   //================================================================
   void WxConsole::OnCommandEnter(wxCommandEvent& event)
   {