(file) Return to FileSystem.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/FileSystem.cpp between version 1.1 and 1.46

version 1.1, 2001/01/14 19:51:35 version 1.46, 2003/10/22 14:26:03
Line 1 
Line 1 
 //BEGIN_LICENSE  //%2003////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002  BMC Software, Hewlett-Packard Development
   // Company, L. P., IBM Corp., The Open Group, Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.;
   // IBM Corp.; EMC Corporation, The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a  // Permission is hereby granted, free of charge, to any person obtaining a copy
 // copy of this software and associated documentation files (the "Software"),  // of this software and associated documentation files (the "Software"), to
 // to deal in the Software without restriction, including without limitation  // deal in the Software without restriction, including without limitation the
 // the rights to use, copy, modify, merge, publish, distribute, sublicense,  // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 // and/or sell copies of the Software, and to permit persons to whom the  // sell copies of the Software, and to permit persons to whom the Software is
 // Software is furnished to do so, subject to the following conditions:  // furnished to do so, subject to the following conditions:
 // //
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL  // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING  // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER  // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 // DEALINGS IN THE SOFTWARE.  // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
   // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 // //
 //END_LICENSE  //==============================================================================
 //BEGIN_HISTORY  
 // //
 // Author:  // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // $Log$  // Modified By:
 // Revision 1.1  2001/01/14 19:51:35  mike  //         Ramnath Ravindran(Ramnath.Ravindran@compaq.com)
 // Initial revision  
 // //
 //  //%/////////////////////////////////////////////////////////////////////////////
 //END_HISTORY  
   
 #include <Pegasus/Common/Config.h>  
   
 #ifdef PEGASUS_OS_TYPE_WINDOWS  
 # include <io.h>  
 # include <direct.h>  
 #else  
 # include <unistd.h>  
 # include <dirent.h>  
 #endif  
  
 #include <sys/stat.h>  #include <iostream>
 #include <sys/types.h>  
 #include <cstdio> #include <cstdio>
   #include <Pegasus/Common/Config.h>
   #include <Pegasus/Common/System.h>
 #include "Destroyer.h" #include "Destroyer.h"
 #include "FileSystem.h" #include "FileSystem.h"
   #include "Dir.h"
 // ATTN-B: porting!  
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 #ifdef PEGASUS_OS_TYPE_WINDOWS  // Clone the path as a C String but discard trailing slash if any:
 static const int ACCESS_EXISTS = 0;  
 static const int ACCESS_WRITE = 2;  
 static const int ACCESS_READ = 4;  
 static const int ACCESS_READ_AND_WRITE = 6;  
 #endif  
   
 // Clone the path but discard trailing slash if any:  
  
 static char* _clonePath(const String& path)  static CString _clonePath(const String& path)
 { {
     char* p = path.allocateCString();      String clone = path;
  
     if (!*p)      if (clone.size() && clone[clone.size()-1] == '/')
         return p;          clone.remove(clone.size()-1);
  
     char* last = p + path.getLength() - 1;      return clone.getCString();
   
     if (*last == '/')  
         *last = '\0';  
   
     return p;  
 } }
  
 Boolean FileSystem::exists(const String& path) Boolean FileSystem::exists(const String& path)
 { {
     Destroyer<char> p(_clonePath(path));      return System::exists(_clonePath(path));
   
 #ifdef PEGASUS_OS_TYPE_WINDOWS  
     return _access(p.getPointer(), ACCESS_EXISTS) == 0;  
 #else  
     return access(p.getPointer(), F_OK) == 0;  
 #endif  
 } }
  
 Boolean FileSystem::canRead(const String& path)  Boolean FileSystem::getCurrentDirectory(String& path)
 { {
     Destroyer<char> p(_clonePath(path));      path.clear();
       char tmp[4096];
  
 #ifdef PEGASUS_OS_TYPE_WINDOWS      if (!System::getCurrentDirectory(tmp, sizeof(tmp) - 1))
     return _access(p.getPointer(), ACCESS_READ) == 0;          return false;
 #else  
     return access(p.getPointer(), R_OK) == 0;      path.append(tmp);
 #endif      return true;
 } }
  
 Boolean FileSystem::canWrite(const String& path)  Boolean FileSystem::existsNoCase(const String& path, String& realPath)
 { {
     Destroyer<char> p(_clonePath(path));  #ifdef PEGASUS_OS_OS400
       // The OS/400 file system is case insensitive, so just call exists( ).
 #ifdef PEGASUS_OS_TYPE_WINDOWS      // This is faster, but the main reason to do this is to
     return _access(p.getPointer(), ACCESS_WRITE) == 0;      // avoid multi-threading problems with the IFS directory APIs
       // (even though they claim to be threadsafe).
       realPath = path;
       return exists(path);
 #else #else
     return access(p.getPointer(), W_OK) == 0;      realPath.clear();
 #endif      CString cpath = _clonePath(path);
 }      const char* p = cpath;
  
 #if 0      const char* dirPath;
 // ATTN: not implemented for NT. But not used by Pegasus.      const char* fileName;
 Boolean FileSystem::canExecute(const String& path)      char* slash = (char *) strrchr(p, '/');
 {  
     Destroyer<char> p(_clonePath(path));  
     return access(p.getPointer(), X_OK) == 0;  
 }  
 #endif  
  
 Boolean FileSystem::isDirectory(const String& path)      if (slash)
 { {
     Destroyer<char> p(_clonePath(path));          *slash = '\0';
           fileName = slash + 1;
     struct stat st;          dirPath = p;
  
 #ifdef PEGASUS_OS_TYPE_WINDOWS          if (*fileName == '\0')
   
     if (stat(p.getPointer(), &st) != 0)  
         return false;         return false;
       }
       else
       {
           fileName = p;
           dirPath = ".";
       }
  
     Boolean result = (st.st_mode & _S_IFDIR) != 0;  
     return result;  
  
 #else      for (Dir dir(dirPath); dir.more(); dir.next())
       {
           if (System::strcasecmp(fileName, dir.getName()) == 0)
           {
               if (strcmp(dirPath, ".") == 0)
                   realPath = dir.getName();
               else
               {
                   realPath = dirPath;
                   realPath.append('/');
                   realPath.append(dir.getName());
               }
               return true;
           }
       }
  
     if (stat(p.getPointer(), &st) != 0)  
         return false;         return false;
   
     Boolean result = S_ISDIR(st.st_mode);  
     return result;  
   
 #endif #endif
 } }
  
 Boolean FileSystem::changeDirectory(const String& path)  Boolean FileSystem::canRead(const String& path)
 { {
     Destroyer<char> p(_clonePath(path));      return System::canRead(_clonePath(path));
     return chdir(p.getPointer()) == 0;  
 } }
  
 Boolean FileSystem::makeDirectory(const String& path)  Boolean FileSystem::canWrite(const String& path)
 { {
     Destroyer<char> p(_clonePath(path));      return System::canWrite(_clonePath(path));
 #ifdef PEGASUS_OS_TYPE_WINDOWS  
     return _mkdir(p.getPointer()) == 0;  
 #else  
     return mkdir(p.getPointer(), 0777) == 0;  
 #endif  
 } }
  
 Boolean FileSystem::getFileSize(const String& path, Uint32& size) Boolean FileSystem::getFileSize(const String& path, Uint32& size)
 { {
     struct stat st;      return System::getFileSize(_clonePath(path), size);
   
     Destroyer<char> p(_clonePath(path));  
   
     if (stat(p.getPointer(), &st) != 0)  
         return false;  
   
     size = st.st_size;  
     return true;  
 }  
   
 Boolean FileSystem::removeDirectory(const String& path)  
 {  
     Destroyer<char> p(_clonePath(path));  
     return rmdir(p.getPointer()) == 0;  
 } }
  
 Boolean FileSystem::removeFile(const String& path) Boolean FileSystem::removeFile(const String& path)
 { {
     Destroyer<char> p(_clonePath(path));      return System::removeFile(_clonePath(path));
     return unlink(p.getPointer()) == 0;  
 } }
  
 void FileSystem::loadFileToMemory( void FileSystem::loadFileToMemory(
Line 190 
Line 152 
     if (!getFileSize(fileName, fileSize))     if (!getFileSize(fileName, fileSize))
         throw CannotOpenFile(fileName);         throw CannotOpenFile(fileName);
  
     char* tmp = fileName.allocateCString();      FILE* fp = fopen(fileName.getCString(), "rb");
     FILE* fp = fopen(tmp, "rb");  
     delete [] tmp;  
  
     if (fp == NULL)     if (fp == NULL)
         throw CannotOpenFile(fileName);         throw CannotOpenFile(fileName);
  
     array.reserve(fileSize);      array.reserveCapacity(fileSize);
     char buffer[4096];     char buffer[4096];
     size_t n;     size_t n;
  
Line 207 
Line 167 
     fclose(fp);     fclose(fp);
 } }
  
 Boolean FileSystem::compare(  Boolean FileSystem::compareFiles(
     const String& fileName1,      const String& path1,
     const String& fileName2)      const String& path2)
 { {
     Uint32 fileSize1;     Uint32 fileSize1;
  
     if (!getFileSize(fileName1, fileSize1))      if (!getFileSize(path1, fileSize1))
         throw CannotOpenFile(fileName1);          throw CannotOpenFile(path1);
  
     Uint32 fileSize2;     Uint32 fileSize2;
  
     if (!getFileSize(fileName2, fileSize2))      if (!getFileSize(path2, fileSize2))
         throw CannotOpenFile(fileName2);          throw CannotOpenFile(path2);
  
     if (fileSize1 != fileSize2)     if (fileSize1 != fileSize2)
         return false;         return false;
  
     char* tmp1 = fileName1.allocateCString();      FILE* fp1 = fopen(path1.getCString(), "rb");
     FILE* fp1 = fopen(tmp1, "rb");  
     delete [] tmp1;  
  
     if (fp1 == NULL)     if (fp1 == NULL)
         throw CannotOpenFile(fileName1);          throw CannotOpenFile(path1);
  
     char* tmp2 = fileName2.allocateCString();      FILE* fp2 = fopen(path2.getCString(), "rb");
     FILE* fp2 = fopen(tmp2, "rb");  
     delete [] tmp2;  
  
     if (fp2 == NULL)     if (fp2 == NULL)
     {     {
         fclose(fp1);         fclose(fp1);
         throw CannotOpenFile(fileName2);          throw CannotOpenFile(path2);
     }     }
  
     int c1;     int c1;
Line 259 
Line 215 
     return true;     return true;
 } }
  
 Boolean FileSystem::getDirectoryContents(  Boolean FileSystem::renameFile(
     const String& path,      const String& oldPath,
     Array<String>& paths)      const String& newPath)
 { {
     paths.clear();      return System::renameFile(oldPath.getCString(), newPath.getCString());
   }
   
   Boolean FileSystem::copyFile(
       const String& fromPath,
       const String& toPath)
   {
       return System::copyFile(fromPath.getCString(), toPath.getCString());
   }
  
 #ifdef PEGASUS_OS_TYPE_WINDOWS  Boolean FileSystem::openNoCase(PEGASUS_STD(ifstream)& is, const String& path)
   {
       String realPath;
  
     String tmp = path;      if (!existsNoCase(path, realPath))
     tmp += "/*";          return false;
     Destroyer<char> p(tmp.allocateCString());  
  
     long file;      is.open(_clonePath(realPath) PEGASUS_IOS_BINARY);
     struct _finddata_t findData;  
  
     if ((file = _findfirst(p.getPointer(), &findData)) == -1L)      return !!is;
   }
   
   Boolean FileSystem::openNoCase(
       PEGASUS_STD(fstream)& fs,
       const String& path,
       int mode)
   {
       String realPath;
   
       if (!existsNoCase(path, realPath))
         return false;         return false;
   #if defined(__GNUC__) && GCC_VERSION >= 30200
       fs.open(_clonePath(realPath), PEGASUS_STD(ios_base::openmode)(mode));
   #else
   #if defined(PEGASUS_OS_OS400)
       fs.open(_clonePath(realPath), mode, PEGASUS_STD(_CCSID_T(1208)) );
   #else
       fs.open(_clonePath(realPath), mode);
   #endif
   #endif
       return !!fs;
   }
  
     do  Boolean FileSystem::isDirectory(const String& path)
     {     {
         const char* name = findData.name;      return System::isDirectory(_clonePath(path));
   }
  
         if (strcmp(name, ".") == 0 || strcmp(name, "..") == 0)  Boolean FileSystem::changeDirectory(const String& path)
             continue;  {
       return System::changeDirectory(_clonePath(path));
   }
  
         paths.append(name);  Boolean FileSystem::makeDirectory(const String& path)
   {
       return System::makeDirectory(_clonePath(path));
   }
  
     } while (_findnext(file, &findData) == 0);  Boolean FileSystem::removeDirectory(const String& path)
   {
       return System::removeDirectory(_clonePath(path));
   }
  
     _findclose(file);  Boolean FileSystem::removeDirectoryHier(const String& path)
   {
       Array<String> fileList;
  
 #else      // Get contents of current directory
  
     Destroyer<char> p(_clonePath(path));      if (!FileSystem::getDirectoryContents(path,fileList))
     DIR* dir = opendir(p.getPointer());          return false;
   
       // for files-in-directory, delete or recall removedir
  
     if (!dir)      for (Uint32 i = 0, n = fileList.size(); i < n; i++)
       {
           String newPath = path;   // extend path to subdir
           newPath.append("/");
           newPath.append(fileList[i]);
   
           if (FileSystem::isDirectory(newPath))
           {
               // Recall ourselves with extended path
               if (!FileSystem::removeDirectoryHier(newPath))
         return false;         return false;
           }
   
           else
           {
             if (!FileSystem::removeFile(newPath))
                   return false;
           }
       }
  
     struct dirent* entry;      return removeDirectory(path);
   }
  
     while ((entry = readdir(dir)) != NULL)  //
   //  Get the file list in the directory into the
   //  array of strings provided
   //  @return The function should return false under these circumstances:
   //
   //
   //  1. The directory does not exist.
   //  2. The file exists but is not a directory.
   //  3. The directory is inaccessible.
   //
   //
   Boolean FileSystem::getDirectoryContents(
       const String& path,
       Array<String>& paths)
   {
       paths.clear();
   
       try
       {
           for (Dir dir(path); dir.more(); dir.next())
     {     {
         const char* name = entry->d_name;              String name = dir.getName();
  
         if (strcmp(name, ".") == 0 || strcmp(name, "..") == 0)              if (String::equal(name, ".") || String::equal(name, ".."))
             continue;             continue;
  
         paths.append(name);         paths.append(name);
     }     }
           return true;
       }
  
     closedir(dir);      // Catch the Dir exception
 #endif      catch(CannotOpenDirectory&)
       {
           return false;
       }
   }
   
   Boolean FileSystem::isDirectoryEmpty(const String& path)
   {
       for (Dir dir(path); dir.more(); dir.next())
       {
           const char* name = dir.getName();
   
           if (strcmp(name, ".") != 0 && strcmp(name, "..") != 0)
               return false;
       }
  
     return true;     return true;
 } }
  
   void FileSystem::translateSlashes(String& path)
   {
       for (Uint32 i = 0; i < path.size(); i++)
       {
           if (path[i] == '\\')
               path[i] = '/';
       }
   }
   
   // Return the just the base name from the path.
   String  FileSystem::extractFileName(const String& path)
   {
     char *p_path = new char[path.size() + 1];
     String basename = System::extract_file_name((const char *)path.getCString(), p_path);
   
     delete [] p_path;
   
     return basename;
   }
   
   // Return just the path to the file or directory into path
   String FileSystem::extractFilePath(const String& path)
   {
     char *p_path = new char[path.size() + 1];
     String newpath = System::extract_file_path((const char *)path.getCString(), p_path);
   
     delete [] p_path;
   
     return newpath;
   }
   
   
   Boolean GetLine(PEGASUS_STD(istream)& is, String& line)
   {
       line.clear();
   
       Boolean gotChar = false;
       char c;
   
       while (is.get(c))
       {
           gotChar = true;
   
           if (c == '\n')
               break;
   
           line.append(c);
       }
   
       return gotChar;
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.1  
changed lines
  Added in v.1.46

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2