]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkFactory.cxx
comment out cout s
[bbtk.git] / kernel / src / bbtkFactory.cxx
index eb0b829339d9e4e6330f7071e70bf995c9efa629..5c060075c20806d05dde4e55871ac1d4b24841b8 100644 (file)
@@ -4,8 +4,8 @@ Program:   bbtk
 Module:    $RCSfile: bbtkFactory.cxx,v $
 Language:  C++
 
-Date:      $Date: 2008/01/22 15:02:00 $
-Version:   $Revision: 1.1 $
+Date:      $Date: 2008/01/29 14:01:31 $
+Version:   $Revision: 1.6 $
                                                                                 
 
 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
@@ -27,6 +27,7 @@ PURPOSE.  See the above copyright notices for more information.
 #include "bbtkMessageManager.h"
 #include "bbtkConnection.h"
 #include "bbtkConfigurationFile.h"
+#include "bbtkUtilities.h"
 
 #include <sys/stat.h> // for struct stat stFileInfo
 
@@ -97,232 +98,35 @@ namespace bbtk
   }
   //===================================================================
 
-// --> usefull in many places (at least : ConfigurationFile, Factory, Interpreter)
-// should be factorized ( "bbtk::Util class ?)
-/*
-bool Factory::FileExists(std::string strFilename)
-bool Factory::IsAtRoot(std::string cwd)
-std::string Factory::ExtractPackageName(const std::string  &name)
-std::string Factory::ExpandLibName(const std::string &name, bool verbose)
-std::string Factory::MakeLibnameFromPath(std::string path, std::string pkgname)
-bool Factory::CheckIfLibraryContainsPackage(std::string libname,std::string pkgname, bool verbose)
-*/
-
-// See : http://www.techbytes.ca/techbyte103.html for more O.S.
-bool Factory::FileExists(std::string strFilename) {
-  struct stat stFileInfo;
-  bool blnReturn;
-  int intStat;
-
-  // Attempt to get the file attributes
-  intStat = stat(strFilename.c_str(),&stFileInfo);
-  if(intStat == 0) {
-    // We were able to get the file attributes
-    // so the file obviously exists.
-    blnReturn = true;
-  } else {
-    // We were not able to get the file attributes.
-    // This may mean that we don't have permission to
-    // access the folder which contains this file. If you
-    // need to do that level of checking, lookup the
-    // return values of stat which will give you
-    // more details on why stat failed.
-    blnReturn = false;
-  }
 
-  return(blnReturn);
-}
-  
-// ===================================================================================
-
-  std::string Factory::ExtractPackageName(const std::string  &name, 
-                                         std::string& path)
-  {
-    std::string pkgname;
-    path = "";
-
-    std::string::size_type slash_position = name.find_last_of("/\\");
-    if (slash_position != std::string::npos) 
-      {
-       pkgname = name.substr(slash_position+1,std::string::npos);   
-       path = name.substr(0,slash_position); 
-       //      std::cout << "F:P='"<<path<<"'"<<std::endl;//+1,std::string::npos); 
-      } 
-    else 
-      {
-       pkgname = name;  
-      }      
-          
-    // remove {.so | dll} if any
-    std::string::size_type dot_position = pkgname.find_last_of('.');      
-    if (dot_position != std::string::npos){
-      pkgname = pkgname.substr(0,dot_position);
-    }      
-#if defined(__GNUC__)
-    
-    // GCC mechanism
-    // shared lib name = libbb<name>.so
-
-      // remove {libbb} if any
-    if (memcmp ( pkgname.c_str(), "libbb", 5) == 0) {
-      pkgname =  pkgname.substr(5, pkgname.length());
-    }
-      /*
-      /// \ \todo     what would happen if (stupid) user names his package 'libbb' ?!?
-      /// \ --> Should be forbidden!
-      */
-#elif defined(_WIN32)
-
-       // WIN 32 mechanism
-       // shared lib name = <name>.dll
-
-     // remove {bb} if any
-    if (memcmp (pkgname.c_str(), "bb", 2) == 0) {
-       pkgname =  pkgname.substr(2, pkgname.length());  
-    } 
-         
-     /*
-     /// \ \todo     what would happen if (stupid) user names his package 'bb' ?!?
-     /// \ --> Should be forbidden!
-     */
-#else
-    bbtkError("neither __GNUC__ nor _WIN32 ?!? How did you compile ?");
-#endif      
-    return pkgname;
-  }
-  
-// ===================================================================================
-
-  std::string Factory::ExpandLibName(const std::string &name, bool verbose)
-  {
-     // -----   Think of expanding path name ( ./ ../ ../../ )
-
-    char buf[2048]; // for getcwd
-    char * currentDir = getcwd(buf, 2048);
-    std::string cwd(currentDir);
-    std::string libname(name);
-    
-    // tooHigh : true is user supplies a library pathname with too many "../"
-    bool tooHigh = false;
-
-    if ( name[0] == '/' ||  name[0] == '\\' )
-    {
-
-      return(libname);
-    } 
-    else if  (name[0] == '.' && (name[1] == '/' || name[1] == '\\') ) 
-    {
-      libname = cwd  + ConfigurationFile::GetInstance().Get_file_separator () + name.substr(2, name.length());
-      return(libname);  
-    } 
-    else if ( name[0] == '.' &&  name[1] == '.' && (name[2] == '/' || name[2] == '\\') ) 
-    {       
-      if ( IsAtRoot(cwd) )  // hope it gets / (for Linux),  C: D: (for Windows)
-      {  
-     // if we are already at / or c: --> hopeless  
-         if (verbose)
-           std::cout << "   File path [" <<  name << "] doesn't exist" << std::endl;
-         tooHigh = true;
-      }
-      else
-      {
-         // iterate on ../ and go up from the current working dir!
-         std::string a(name); 
-         bool alreadyProcessRoot = false;                
-         for(;;) 
-         { 
-            std::string::size_type slash_position = cwd.find_last_of(ConfigurationFile::GetInstance().Get_file_separator ());
-            if (slash_position != std::string::npos) {
-              if (slash_position == 0)
-               slash_position = 1;  
-              cwd = cwd.substr(0,slash_position/*+1*/);
-              a =  a.substr(3, name.length());  // remove ../  
-              if (a == "" || alreadyProcessRoot)
-              {
-                if (verbose)
-                  std::cout << "   File path [" <<  name << "] doesn't exist" << std::endl;
-                tooHigh = true;
-                break;
-              }
-              libname =  cwd;
-              char c = cwd[cwd.size()-1];
-              if (c != '/' && c != '\\' )
-                libname += ConfigurationFile::GetInstance().Get_file_separator ();
-              libname += a;
-                          
-              if ( a[0] != '.' ) // if . (probabely ../), loop again
-                break;
-               
-              if (IsAtRoot(cwd))
-                alreadyProcessRoot = true;                            
-            }                  
-         } // end iterating on ../
-      }
-      if (tooHigh)
-         libname="";
-//  std::cout << "=======================================3 libname [" << libname << "]" << std::endl;
-         
-      return (libname);
-      
-    }  // -----   End of expanding path name   ( ./ ../ ../../ )
-    // avoid warnings
-    return(""); // will never get here!
-  } 
-   
-// ===================================================================================
-
-  std::string Factory::MakeLibnameFromPath(std::string path, std::string pkgname)
-  {
-    std::string libname = path;
-    char c = path[path.size()-1];    
-#if defined(__GNUC__)
-       if (c != '/')
-          libname += "/libbb";
-       libname += pkgname;
-       libname += ".so";
-         
-#elif defined(_WIN32)
-       if (c != '\\')
-          libname = path+"\\bb";
-       libname += pkgname;
-       libname += ".dll";
-#endif
-    return libname;    
-  }
-   
-// ===================================================================================
-
-
-  bool  Factory::IsAtRoot(std::string cwd)
-  {
-    if ( cwd == "/"                             // hope it gets /     (for Linux)
-        || (cwd.size() <= 3 && cwd[1] == ':') ) // hope it gets C: D: (for Windows)
-      return (true);
-    else
-      return(false);
-}
 // ===================================================================================
 
   bool Factory::DoLoadPackage(std::string libname,
-                             std::string pkgname, 
-                             std::string path, 
-                             bool verbose)
+                              std::string pkgname,
+                              std::string path,
+                              bool verbose)
   {
 
 #if defined(__GNUC__)
 
-        void *handler;            
-        handler = dlopen(libname.c_str(), 
+        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
         }
-      
+
+        // 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;
 
@@ -347,17 +151,20 @@ bool Factory::FileExists(std::string strFilename) {
           dlclose(handler);
           bbtkError("DeletePackage : could not load package \""<<pkgname
                     <<"\" [symbol "<<delfname<<"] :"<<dlerror());
-        } 
+        }
 
 #elif defined(_WIN32)
 
         HINSTANCE handler;
-     
+
         SetErrorMode(0);
         handler = LoadLibrary(libname.c_str());
         if (!handler){
           if (verbose)
-            std::cout <<"   no handler for [" <<libname<<"];" << std::endl;     
+        // 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)
@@ -375,7 +182,6 @@ bool Factory::FileExists(std::string strFilename) {
           <<"\" : "<<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);
@@ -388,11 +194,11 @@ bool Factory::FileExists(std::string strFilename) {
                      <<"\" : "<<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 ?");
-#endif   
-  
+#endif
+
     // Stores the package
         PackageInfoType pack;
         pack.mDynamicLibraryHandler = handler;
@@ -407,32 +213,31 @@ bool Factory::FileExists(std::string strFilename) {
           std::string v(pack.mPackage->GetBBTKVersion());
           UnLoadPackage(pkgname);
           bbtkError(" package build with bbtk version "
-                   << v
-                   << " whereas application build with version "
-                   << bbtk::GetVersion());
+                    << 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 + "packages" + separator + pkgname 
-         + separator + "bbdoc" + separator + "index.html";
-       std::string reldoc = ".." + separator + ".." + separator 
-         + ".." + docreldoc;
-       std::string doc = path + separator + ".." + separator
-         + BBTK_STRINGIFY_SYMBOL(BBTK_DOC_REL_PATH) 
-         + docreldoc; 
-       std::cout << "doc='"<<doc<<"'"<<std::endl;
-       
-       pack.mPackage->SetDocURL(doc);
-       pack.mPackage->SetDocRelativeURL(reldoc);
-       
+        std::string separator =
+        ConfigurationFile::GetInstance().Get_file_separator ();
+        //BBTK_STRINGIFY_SYMBOL(BBTK_DOC_REL_PATH)
+        std::string docreldoc = separator + "packages" + separator + pkgname
+         + separator + "bbdoc" + separator + "index.html";
+        std::string reldoc = ".." + separator + ".." + 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() 
+           <<pack.mPackage->GetAuthor()
            <<std::endl);
         bbtkMessage("Output",2,pack.mPackage->GetDescription()<<std::endl);
     //===================================================================
@@ -441,7 +246,7 @@ bool Factory::FileExists(std::string strFilename) {
         return true;
   }
 
- //===================================================================
 //===================================================================
   /// \brief Loads a package.
   ///
   /// The name is the system-independant name of the package (the name of the instance of bbtk::Package).
@@ -456,27 +261,30 @@ bool Factory::FileExists(std::string strFilename) {
   /// 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)
   {
   // Note : in the following :
-  // name : the user supplied name 
-  //      - abreviated name    e.g.       pkg   pkg.so   libbpkg   libbbpkg.so 
-  //      - relative full name e.g.       ./libbbpkg.so   ../../libbbpkg.so 
+  // name : the user supplied name
+  //      - abreviated name    e.g.       pkg   pkg.so   libbpkg   libbbpkg.so
+  //      - relative full name e.g.       ./libbbpkg.so   ../../libbbpkg.so
   //      - absolute full name e.g.       /home/usrname/proj/lib/libbbpkg.so
   //          same for Windows, with      c:, d: ...
   //
-    bbtkDebugMessageInc("Core",7,"Factory::LoadPackage(\""<<name<<"\")"<<std::endl);    
-    bbtkMessage("Debug",1,"Factory::LoadPackage(\""<<name<<"\")"<<std::endl);    
-    bbtkMessage("Debug",1,"use_configuration_file [" 
-               << use_configuration_file << "]" << std::endl);
-  
+  // lastname : string before the last / (if any), or user supplied name
+
+    bbtkDebugMessageInc("Core",7,"Factory::LoadPackage(\""<<name<<"\")"<<std::endl);
+    bbtkMessage("Debug",1,"Factory::LoadPackage(\""<<name<<"\")"<<std::endl);
+    bbtkMessage("Debug",1,"use_configuration_file ["
+                 << use_configuration_file << "]" << std::endl);
+
     std::vector<std::string> package_paths;
     std::string libname;  // full path library name
     std::string pkgname;  // e.g. libbb<pkgname>.so
-    
+
     std::string upath;
-    pkgname = ExtractPackageName(name,upath);
+    pkgname = Utilities::ExtractPackageName(name,upath);
 
     bbtkMessage("Debug",1,"Package name ["<<pkgname<<"]"<<std::endl);
     bbtkMessage("Debug",1,"Package path ["<<upath<<"]"<<std::endl);
@@ -484,70 +292,112 @@ bool Factory::FileExists(std::string strFilename) {
     // no loading package if already loaded
     PackageMapType::iterator iUnload;
     iUnload = mPackageMap.find(pkgname);
-    if (iUnload != mPackageMap.end()) 
+    if (iUnload != mPackageMap.end())
     {
-      bbtkMessage("Output",2,"["<<pkgname<<"] already loaded"<<std::endl);
-      return; 
+      bbtkMessage("Output",2,"["<< pkgname <<"] already loaded" << std::endl);
+      return;
     }
-    
-   // If path provided by user will be the first scanned : 
-    // push it into vector of paths
-    if (upath.length()>0) package_paths.push_back(upath);
 
-    // Add the path of config file 
-    if (use_configuration_file)
+// =================================================
+// The following structure was checked to work
+// with any type of relative/absolute path.
+// Please don't modify it without checking
+// *all* the cases. JP
+//==================================================
+
+//std::cout << "upath [" << upath << "]" << std::endl;
+
+    bool ok = false;
+    bool foundFile = false;
+
+    // If path provided by user will be the first scanned :
+    // push it into vector of paths
+    if (upath.length()>0)   // ------------------------------------- check user supplied location
     {
-      std::vector<std::string>::const_iterator pi;
-      for (pi =ConfigurationFile::GetInstance().Get_package_paths().begin();
-               pi!=ConfigurationFile::GetInstance().Get_package_paths().end();
-             ++pi)
-            package_paths.push_back(*pi);
+       if (name[0] != '.' && name[0] != '/' && name[1]!= ':')
+       {
+          bbtkError("Use absolute or relative path name! ["<<name<<"] is an illegal name");
+          return;
+       }
+       
+      // std::string path = Utilities::ExpandLibName(upath, verbose);
+       std::string path;
+       if (name[1]!= ':')  // Absolute name, under Windows
+          path = Utilities::ExpandLibName(name, verbose); // keep last item, here.
+          
+       if (path != "")
+       {
+          std::string p2;
+          Utilities::ExtractPackageName(path,p2);
+          //libname = Utilities::MakeLibnameFromPath(path, pkgname);
+          libname = Utilities::MakeLibnameFromPath(p2, pkgname); // remove last item
+          // Check if library exists
+          if ( !Utilities::FileExists(libname) )
+          {
+          // 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;
+          }
+          else
+          {
+             ok = DoLoadPackage( libname, pkgname, path, verbose);         
+          }
+       }
+       else
+       {
+          bbtkError("Path ["<<upath<<"] doesn't exist");
+          return;
+       }
     }
-   
-    bool ok = false; 
-    bool foundFile = false;    
+    else     // ----------------------------------------------------- iterate on the paths  
+    {
 
+    std::string path;
+    package_paths = ConfigurationFile::GetInstance().Get_package_paths();
     std::vector<std::string>::iterator i;
     for (i=package_paths.begin();i!=package_paths.end();++i)
-      {
-        foundFile = false;    
-            std::string path = *i;
-       
-       // we *really* want '.' to be the current working directory
-        if (path == ".") {
+    {
+        foundFile = false;
+        path = *i;
+
+        // we *really* want '.' to be the current working directory
+        if (path == ".")
+        {
           char buf[2048]; // for getcwd
           char * currentDir = getcwd(buf, 2048);
-          std::string cwd(currentDir);        
+          std::string cwd(currentDir);
           path = currentDir;
         }
-       
-        libname = MakeLibnameFromPath(path, pkgname);
-       
-            bbtkMessage("Debug",2,"-> Trying to load ["<<libname<<"]"<<std::endl);
+
+        libname = Utilities::MakeLibnameFromPath(path, pkgname);
+
+        bbtkMessage("Debug",2,"-> Trying to load [" << libname << "]" <<std::endl);
 
       // Check if library exists           
-        if ( !FileExists(libname) )
+        if ( !Utilities::FileExists(libname) )
         {
         // 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;
-            continue;  // try next path
+           if (verbose)
+              std::cout <<"   [" <<libname <<"] : doesn't exist" <<std::endl;
+           continue;  // try next path
         }
         foundFile = true; 
 
       // Try to Load the library
-         
+
         ok = DoLoadPackage( libname, pkgname, path, verbose);
         if (ok)
-            {
-               bbtkMessage("Debug",2,"   OK"<<std::endl);
-               break; // a package was found; we stop iterating
-            }
+        {
+           bbtkMessage("Debug",2,"   OK"<<std::endl);
+           break; // a package was found; we stop iterating
+        }
     } //------------------ // end for ( package_paths.begin();i!=package_paths.end() )
-      //  }
+
+}
 
     if( !ok )  // nothing was loaded
     {
@@ -558,11 +408,11 @@ bool Factory::FileExists(std::string strFilename) {
       else
       {
 #if defined(__GNUC__)
-        bbtkError("could not load package \""<< pkgname
-                  <<"\" :" << std::endl << "   " <<dlerror());
+        bbtkError("could not load package ["<< pkgname
+                  <<"] :" << std::endl << "   " << dlerror());
 #elif defined(_WIN32)
-        bbtkError("could not load package \""<<pkgname
-                 <<"\" : " << std::endl << "   " <<libname<<" not found");
+        bbtkError("could not load package ["<<pkgname
+                 <<"] : " << std::endl << "   " <<libname<<" not found");
 
     // look how to get the error message on win
     //<<dlerror());
@@ -574,16 +424,14 @@ bool Factory::FileExists(std::string strFilename) {
     bbtkMessage("Output",2,"[" << libname << "] loaded" << std::endl);
 
   }
-    
+
   //===================================================================
   /// \brief UnLoads a package.
   ///
   /// The package must have been previously loaded by LoadPackage.
   /// If the entry is found in the map, calls ClosePackage
- void Factory::UnLoadPackage( const std::string& userSuppliedName )
-  { 
-    std::string path;
-    std::string name = ExtractPackageName(userSuppliedName,path);
+ void Factory::UnLoadPackage( const std::string& name )
+ {
     bbtkDebugMessageInc("Core",7,"Factory::UnLoadPackage(\""
                        <<name<<"\")"<<std::endl);
   
@@ -632,16 +480,16 @@ bool Factory::FileExists(std::string strFilename) {
                      <<"\" :"<<dlerror());
         }    
 #elif defined(_WIN32)
-        void *delf = GetProcAddress(i->second.mDynamicLibraryHandler, 
+   void *delf = GetProcAddress(i->second.mDynamicLibraryHandler, 
                                  delfname.c_str());
-        if (!delf)
-        {  
-           bbtkError("could not close package \""
+     if (!delf)
+     {  
+       bbtkError("could not close package \""
                 <<i->second.mPackage->GetName()
                 <<"\" : "<<delfname
                 <<" symbol not found (how did you open it ???");
                //<<"\" :"<<dlerror());
-        }    
+     }    
 #endif     
 
    // deletes the package
@@ -690,9 +538,8 @@ bool Factory::FileExists(std::string strFilename) {
 
   //===================================================================  
   /// Displays help on a package
-  void Factory::HelpPackage(const std::string& name/* &userSuppliedName */, bool adaptors) const
+  void Factory::HelpPackage(const std::string& name, bool adaptors) const
   {
-   // std::string name = ExtractPackageName(userSuppliedName);
     bbtkDebugMessageInc("Core",9,"Factory::HelpPackage(\""<<name<<"\")"
                         <<std::endl);
 
@@ -979,13 +826,12 @@ bool Factory::FileExists(std::string strFilename) {
     fprintf( ff , "  color=lightgrey%s\n",";");
     fprintf( ff , "  rankdir=TB%s\n",";");
 
+    std::string url;
     PackageMapType::const_iterator i;
     for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i )
     {
-       std::string url = GetPackage(i->first)->GetDocURL();
-       fprintf(ff,"  %s [shape=ellipse, URL=\"%s\"]%s\n",
-              i->first.c_str(),
-              url.c_str(),";" );
+       url=GetPackage(i->first)->GetDocURL();
+       fprintf(ff,"  %s [shape=ellipse, URL=\"%s\"]%s\n",i->first.c_str(),url.c_str(),";" );
     }
     fprintf( ff , "}\n\n");
     bbtkDebugDecTab("Core",9);
@@ -993,49 +839,49 @@ bool Factory::FileExists(std::string strFilename) {
   //===================================================================
 
 
-  void Factory::ShowGraphTypes(const std::string& name) const
-  {
-    bool found = false;
-    PackageMapType::const_iterator i;
-    for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i )
+ void Factory::ShowGraphTypes(const std::string& name) const
+ {
+   bool found = false;
+   PackageMapType::const_iterator i;
+   for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i )
+   {
+      if (i->second.mPackage->ContainsBlackBox(name)) 
       {
-       if (i->second.mPackage->ContainsBlackBox(name)) 
-         {
-           std::string separator = ConfigurationFile::GetInstance().Get_file_separator ();
-           
+         std::string separator = ConfigurationFile::GetInstance().Get_file_separator ();
+
             // Don't pollute the file store with  "doc_tmp" directories ...    
-           std::string default_doc_dir = ConfigurationFile::GetInstance().Get_default_doc_tmp();
-           std::string directory = "\"" + default_doc_dir + separator + "doc_tmp"  +separator + "\"";
-           std::string filename2 =  default_doc_dir + separator + "doc_tmp" + separator + "tmp.html"; 
-           
+         std::string default_doc_dir = ConfigurationFile::GetInstance().Get_default_doc_tmp();
+         std::string directory = "\"" + default_doc_dir + separator + "doc_tmp"  +separator + "\"";
+         std::string filename2 =  default_doc_dir + separator + "doc_tmp" + separator + "tmp.html"; 
+
 #if defined(_WIN32)  
-           std::string command("start \"Titre\" /D ");
+        std::string command("start \"Titre\" /D ");
 #else 
-           std::string command("gnome-open ");
+        std::string command("gnome-open ");
 #endif
-           command=command + directory +" tmp.html";
-           FILE *ff;
-           ff=fopen(filename2.c_str(),"w");
-           
-           fprintf(ff,"<html><head><title>TMP</title> <script type=\"text/javascript\"> <!--\n");
-           fprintf(ff,"  window.location=\"%s#%s\";\n" , i->second.mPackage->GetDocURL().c_str(),name.c_str() );
-           fprintf(ff,"//--></script></head><body></body></html>\n");
-           
-           
-           //fprintf(ff, "<a  href=\"%s#%s\">Link</a>\n", i->second.mPackage->GetDocURL().c_str(),name.c_str() );
-           fclose(ff);
-           system( command.c_str() );      
-           found = true;
-         }
-      }
+        command=command + directory +" tmp.html";
+        FILE *ff;
+        ff=fopen(filename2.c_str(),"w");
+
+        fprintf(ff,"<html><head><title>TMP</title> <script type=\"text/javascript\"> <!--\n");
+        fprintf(ff,"  window.location=\"%s#%s\";\n" , i->second.mPackage->GetDocURL().c_str(),name.c_str() );
+        fprintf(ff,"//--></script></head><body></body></html>\n");
+
+
+        //fprintf(ff, "<a  href=\"%s#%s\">Link</a>\n", i->second.mPackage->GetDocURL().c_str(),name.c_str() );
+        fclose(ff);
+        system( command.c_str() );      
+        found = true;
+     }
+   }
     
-    bbtkDebugDecTab("Core",9);
-    if (!found) 
-      {
-       bbtkError("No package of the factory contains any black box <"
-                 <<name<<">");
-      }
 }
+   bbtkDebugDecTab("Core",9);
+   if (!found) 
+   {
+      bbtkError("No package of the factory contains any black box <"
+                <<name<<">");
+   }
+ }
 
 }