]> Creatis software - crea.git/blobdiff - src/creaSystem.cxx
boost libraries
[crea.git] / src / creaSystem.cxx
index 69293a982369586e718dd76c6bfe73a4062a7ea4..1346a08a085d16efc80fe686fde8a6d75f5ab975 100644 (file)
@@ -4,10 +4,17 @@
 #include <iostream>
 
 #ifdef WIN32
-#include <windows.h> /* GetModuleFileName */
-#include <io.h>
+       #include <windows.h> /* GetModuleFileName */
+       #include <io.h>
+       
 #endif /* WIN32 */
 
+#ifdef LINUX
+       #include <sys/types.h>
+       #include <sys/stat.h>
+       #include <errno.h> 
+#endif 
+
 #ifdef __APPLE__  /* assume this is OSX */
 #include <sys/param.h>
 #include <mach-o/dyld.h> /* _NSGetExecutablePath : must add -framework
@@ -180,6 +187,22 @@ std::string System::GetDllAppPath(std::string &nomdll){
        return path;
 }
 
+
+std::string System::GetDllAppPath(const char *nomdll){
+       std::string path = ".";
+#ifdef WIN32
+       char currentPath[_MAX_PATH];
+       HMODULE hand = GetModuleHandle(nomdll);
+       GetModuleFileName(hand, currentPath, _MAX_PATH);
+
+       path = currentPath;
+
+       path = path.substr(0,path.find_last_of("\\"));
+#endif
+       return path;
+}
+
+
 #if defined(_WIN32)
 #define CREACONTOUR_VALID_FILE_SEPARATOR_CHAR '\\'
 #else
@@ -204,5 +227,38 @@ std::string System::GetExecutablePath(){
                }
                return name;
        }
+       
+       void System::createDirectory(const char* directorypath){
+               #ifdef WIN32
+                       if (CreateDirectory(directorypath, NULL) == ERROR_ALREADY_EXISTS) 
+                       { 
+                               std::cout<<"directory already exists "<<directorypath<<std::endl;
+                       }else if(CreateDirectory(directorypath, NULL) == ERROR_PATH_NOT_FOUND){
+                               std::string error = "Directory could not be created ";
+                               error.append(directorypath);
+                               throw error.c_str();
+                       }
+               #endif
+               #ifdef LINUX
+                       //! include sys/types.h
+                       //! include sys/stat.h
+                       //! int mkdir(const char *path, mode_t mode);
+                       //! read/write/search permissions for owner and group, and with read/search permissions for others S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH
+                       int returnval = mkdir(directorypath, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
+                       
+                       if(returnval != 0){
+                               if(errno == EEXIST){
+                                       std::cout<<"directory already exists "<<directorypath<<std::endl;
+                               }else{
+                                       std::string error = "Directory could not be created ";
+                                       error.append(directorypath);
+                                       throw error.c_str();
+                               }
+                       }
+               #endif
+               #ifdef MACOSX
+               //TODO
+               #endif
+       }
 
 } // namespace crea