(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.4 and 1.87.10.1

version 1.4, 2001/02/26 04:33:28 version 1.87.10.1, 2013/07/30 05:38:50
Line 1 
Line 1 
 //BEGIN_LICENSE  //%LICENSE////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM  // Licensed to The Open Group (TOG) under one or more contributor license
   // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
   // this work for additional information regarding copyright ownership.
   // Each contributor licenses this file to you under the OpenPegasus Open
   // Source License; you may not use this file except in compliance with the
   // License.
 // //
 // 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 of this software and associated documentation files (the "Software"), // copy of this software and associated documentation files (the "Software"),
Line 9 
Line 14 
 // and/or sell copies of the Software, and to permit persons to whom the // and/or sell copies of the Software, and to permit persons to whom the
 // Software is furnished to do so, subject to the following conditions: // Software is 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
 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  // in all copies or substantial portions of the Software.
 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL  
 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  
 // LIABILITY, WHETHER IN AN 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  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 //BEGIN_HISTORY  // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 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.
 // //
 // Author:  //////////////////////////////////////////////////////////////////////////
 // //
 // $Log$  //%/////////////////////////////////////////////////////////////////////////////
 // Revision 1.4  2001/02/26 04:33:28  mike  
 // Fixed many places where cim names were be compared with operator==(String,String).  
 // Changed all of these to use CIMName::equal()  
 //  
 // Revision 1.3  2001/02/13 02:06:40  mike  
 // Added renameFile() method.  
 //  
 // Revision 1.2  2001/02/11 05:42:33  mike  
 // new  
 //  
 // Revision 1.1.1.1  2001/01/14 19:51:35  mike  
 // Pegasus import  
 //  
 //  
 //END_HISTORY  
  
   #include <iostream>
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
   #include <Pegasus/Common/System.h>
 #ifdef PEGASUS_OS_TYPE_WINDOWS  #include <Pegasus/Common/AutoPtr.h>
 # include <io.h>  #include <Executor/Match.h>
 # include <direct.h>  
 #else  
 # include <unistd.h>  
 # include <dirent.h>  
 #endif  
   
 #include <sys/stat.h>  
 #include <sys/types.h>  
 #include <cstdio>  
 #include "Destroyer.h"  
 #include "FileSystem.h" #include "FileSystem.h"
 #include "Dir.h" #include "Dir.h"
   #ifndef PEGASUS_OS_TYPE_WINDOWS
 // ATTN-B: porting!  #include <pwd.h>
   #endif
   #include <Pegasus/Common/Tracer.h>
  
 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 CString _clonePath(const String& path)
   
 static char* _clonePath(const String& path)  
 { {
     char* p = path.allocateCString();      String clone = path;
   
     if (!*p)  
         return p;  
  
     char* last = p + path.getLength() - 1;      if (clone.size() && clone[clone.size()-1] == '/')
           clone.remove(clone.size()-1);
  
     if (*last == '/')      return clone.getCString();
         *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  Boolean FileSystem::getCurrentDirectory(String& path)
     return _access(p.getPointer(), ACCESS_EXISTS) == 0;  {
 #else      path.clear();
     return access(p.getPointer(), F_OK) == 0;      char tmp[4096];
 #endif  
       if (!System::getCurrentDirectory(tmp, sizeof(tmp) - 1))
           return false;
   
       path.append(tmp);
       return true;
 } }
  
 Boolean FileSystem::existsIgnoreCase(const String& path, String& realPath)  Boolean FileSystem::existsNoCase(const String& path, String& realPath)
 { {
   #if !defined(PEGASUS_OS_VMS) && \
       !defined(PEGASUS_OS_TYPE_WINDOWS) && \
       !defined(PEGASUS_OS_DARWIN)
   
       // If a file exists that has the same case as the path parmater,
       // then we can bypass the expensive directory scanning below.
   
       if (FileSystem::exists(path))
       {
           realPath = path;
           return true;
       }
   
   #endif
   
     realPath.clear();     realPath.clear();
     Destroyer<char> destroyer(_clonePath(path));      CString cpath = _clonePath(path);
     char* p = destroyer.getPointer();      const char* p = cpath;
  
     char* dirPath;      const char* dirPath;
     char* fileName;      const char* fileName;
     char* slash = strrchr(p, '/');      char* slash = (char *) strrchr(p, '/');
  
     if (slash)     if (slash)
     {     {
         *slash = '\0';         *slash = '\0';
         fileName = slash + 1;         fileName = slash + 1;
         dirPath = p;         dirPath = p;
   
         if (*fileName == '\0')         if (*fileName == '\0')
             return false;             return false;
     }     }
Line 119 
Line 112 
         dirPath = ".";         dirPath = ".";
     }     }
  
   
     for (Dir dir(dirPath); dir.more(); dir.next())     for (Dir dir(dirPath); dir.more(); dir.next())
     {     {
 #ifdef PEGASUS_OS_TYPE_WINDOWS          if (System::strcasecmp(fileName, dir.getName()) == 0)
         if (stricmp(fileName, dir.getName()) == 0)  
 #else  
         if (strcasecmp(fileName, dir.getName()) == 0)  
 #endif  
         {         {
             if (strcmp(dirPath, ".") == 0)             if (strcmp(dirPath, ".") == 0)
                 realPath = dir.getName();                 realPath = dir.getName();
             else             else
             {             {
                 realPath = dirPath;                 realPath = dirPath;
                 realPath += '/';                  realPath.append('/');
                 realPath += dir.getName();                  realPath.append(dir.getName());
             }             }
             return true;             return true;
         }         }
Line 144 
Line 134 
  
 Boolean FileSystem::canRead(const String& path) Boolean FileSystem::canRead(const String& path)
 { {
     Destroyer<char> p(_clonePath(path));      return System::canRead(_clonePath(path));
   
 #ifdef PEGASUS_OS_TYPE_WINDOWS  
     return _access(p.getPointer(), ACCESS_READ) == 0;  
 #else  
     return access(p.getPointer(), R_OK) == 0;  
 #endif  
 } }
  
 Boolean FileSystem::canWrite(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 _access(p.getPointer(), ACCESS_WRITE) == 0;  
 #else  
     return access(p.getPointer(), W_OK) == 0;  
 #endif  
 }  
   
 #if 0  
 // ATTN: not implemented for NT. But not used by Pegasus.  
 Boolean FileSystem::canExecute(const String& path)  
 {  
     Destroyer<char> p(_clonePath(path));  
     return access(p.getPointer(), X_OK) == 0;  
 }  
 #endif  
   
 Boolean FileSystem::isDirectory(const String& path)  
 {  
     Destroyer<char> p(_clonePath(path));  
   
     struct stat st;  
   
 #ifdef PEGASUS_OS_TYPE_WINDOWS  
   
     if (stat(p.getPointer(), &st) != 0)  
         return false;  
   
     Boolean result = (st.st_mode & _S_IFDIR) != 0;  
     return result;  
   
 #else  
   
     if (stat(p.getPointer(), &st) != 0)  
         return false;  
   
     Boolean result = S_ISDIR(st.st_mode);  
     return result;  
   
 #endif  
 }  
   
 Boolean FileSystem::changeDirectory(const String& path)  
 {  
     Destroyer<char> p(_clonePath(path));  
     return chdir(p.getPointer()) == 0;  
 }  
   
 Boolean FileSystem::makeDirectory(const String& path)  
 {  
     Destroyer<char> p(_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(
     Array<Sint8>& array,      Buffer& array,
     const String& fileName)     const String& fileName)
 { {
     Uint32 fileSize;     Uint32 fileSize;
Line 248 
Line 161 
     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;
  
     while ((n = fread(buffer, 1, sizeof(buffer), fp)) > 0)     while ((n = fread(buffer, 1, sizeof(buffer), fp)) > 0)
         array.append(buffer, n);          array.append(buffer, static_cast<Uint32>(n));
  
     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 317 
Line 224 
     return true;     return true;
 } }
  
   Boolean FileSystem::renameFile(
       const String& oldPath,
       const String& newPath)
   {
       return System::renameFile(oldPath.getCString(), newPath.getCString());
   }
   
   Boolean FileSystem::copyFile(
       const String& fromPath,
       const String& toPath)
   {
       return System::copyFile(fromPath.getCString(), toPath.getCString());
   }
   
   Boolean FileSystem::openNoCase(PEGASUS_STD(ifstream)& is, const String& path)
   {
       String realPath;
   
       if (!existsNoCase(path, realPath))
           return false;
   
       is.open(_clonePath(realPath) PEGASUS_IOS_BINARY);
   
       return !!is;
   }
   
   Boolean FileSystem::openNoCase(
       PEGASUS_STD(fstream)& fs,
       const String& path,
       int mode)
   {
       String realPath;
   
       if (!existsNoCase(path, realPath))
           return false;
   #if defined(__GNUC__) && GCC_VERSION >= 30200
       fs.open(_clonePath(realPath), PEGASUS_STD(ios_base::openmode)(mode));
   #else
       fs.open(_clonePath(realPath), mode);
   #endif
       return !!fs;
   }
   
   Boolean FileSystem::isDirectory(const String& path)
   {
       return System::isDirectory(_clonePath(path));
   }
   
   Boolean FileSystem::changeDirectory(const String& path)
   {
       return System::changeDirectory(_clonePath(path));
   }
   
   Boolean FileSystem::makeDirectory(const String& path)
   {
       return System::makeDirectory(_clonePath(path));
   }
   
   Boolean FileSystem::removeDirectory(const String& path)
   {
       return System::removeDirectory(_clonePath(path));
   }
   
   Boolean FileSystem::removeDirectoryHier(const String& path)
   {
       Array<String> fileList;
   
       // Get contents of current directory
   
       if (!FileSystem::getDirectoryContents(path,fileList))
           return false;
   
       // for files-in-directory, delete or recall removedir
   
       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;
           }
   
           else
           {
             if (!FileSystem::removeFile(newPath))
                   return false;
           }
       }
   
       return removeDirectory(path);
   }
   
   //
   //  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( Boolean FileSystem::getDirectoryContents(
     const String& path,     const String& path,
     Array<String>& paths)     Array<String>& paths)
 { {
     paths.clear();     paths.clear();
  
       try
       {
     for (Dir dir(path); dir.more(); dir.next())     for (Dir dir(path); dir.more(); dir.next())
     {     {
         String name = dir.getName();         String name = dir.getName();
Line 332 
Line 349 
  
         paths.append(name);         paths.append(name);
     }     }
           return true;
       }
   
       // Catch the Dir exception
       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;
 } }
  
 Boolean FileSystem::renameFile(  void FileSystem::translateSlashes(String& path)
     const String& oldFileName,  {
     const String& newFileName)      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)
   {
       AutoArrayPtr<char> p_path(new char[path.size() + 1]);
       String basename = System::extract_file_name(
           (const char*)path.getCString(), p_path.get());
   
       return basename;
   }
   
   // Return just the path to the file or directory into path
   String FileSystem::extractFilePath(const String& path)
   {
       AutoArrayPtr<char> p_path(new char[path.size() + 1]);
       String newpath = System::extract_file_path(
           (const char*)path.getCString(), p_path.get());
   
       return newpath;
   }
   
   // Changes file permissions on the given file.
   Boolean FileSystem::changeFilePermissions(const String& path, mode_t mode)
   {
       CString tempPath = path.getCString();
   
       return System::changeFilePermissions(tempPath, mode);
   }
   
   String FileSystem::getAbsoluteFileName(
       const String& paths,
       const String& filename)
   {
       Uint32 pos = 0;
       Uint32 token = 0;
       String path;
       String root;
       String tempPath = paths;
   
       do
       {
           if ((pos = tempPath.find(FileSystem::getPathDelimiter())) ==
               PEG_NOT_FOUND)
           {
               pos = tempPath.size();
               token = 0;
           }
           else
           {
               token = 1;
           }
           path = tempPath.subString(0, pos);
           tempPath.remove(0,pos+token);
           if (FileSystem::exists(path + "/" + filename) == true)
 { {
     Destroyer<char> p(oldFileName.allocateCString());              root = path + "/" + filename;
     Destroyer<char> q(newFileName.allocateCString());              break;
           }
           else
           {
               //  cout << "File does not exist.\n";
           }
       } while (tempPath.size() > 0);
  
 #ifdef PEGASUS_OS_TYPE_WINDOWS      return root;
     return rename(p.getPointer(), q.getPointer()) == 0;  }
   
   #ifdef PEGASUS_ENABLE_PROTOCOL_WEB
   
   String FileSystem::getAbsoluteFileName(
       const String& filename)
   {
       char resolvedName[512];
       /*
        * ReturnValue:
        *    1) Upon successful completion, realpath() shall return a pointer to
        *        the buffer containing the resolved name. Otherwise, realpath()
        *        shall return a null pointer and set errno to indicate the error.
        *    2) If the resolved_name argument is a null pointer, the pointer
        *        returned by realpath() can be passed to free().
        *    3) If the resolved_name argument is not a null pointer and the
        *        realpath() function fails, the contents of the buffer pointed to
        *        by resolved_name are undefined.
        */
       char* result = realpath(filename.getCString(), resolvedName);
       if (!result)
       {// failed, resolvedName is undefined
           return String("");
       }
       return String(result);
   }
   
   #endif
   
   String FileSystem::buildLibraryFileName(const String &libraryName)
   {
       String fileName;
   
       //
       // Add the necessary prefix and suffix to convert the library name to its
       // corresponding file name.
       //
   #if defined(PEGASUS_OS_TYPE_WINDOWS)
       fileName = libraryName + String(".dll");
 #else #else
     return link(p.getPointer(), q.getPointer()) == 0;      fileName = String("lib") + libraryName + getDynamicLibraryExtension();
 #endif #endif
       return fileName;
   }
   
   String FileSystem::getDynamicLibraryExtension()
   {
   #if defined(PEGASUS_OS_TYPE_WINDOWS)
       return String(".dll");
   #elif defined(PEGASUS_PLATFORM_HPUX_PARISC_ACC) || \
       defined (PEGASUS_PLATFORM_HPUX_PARISC_GNU)
       return String(".sl");
   #elif defined(PEGASUS_OS_DARWIN)
       return String(".dylib");
   #elif defined(PEGASUS_OS_VMS)
       return String(".exe");
   #elif defined(PEGASUS_PLATFORM_ZOS_ZSERIES64_IBM)
       return String("64.so");
   #else
       return String(".so");
   #endif
   }
   
   Boolean GetLine(PEGASUS_STD(istream)& is, Buffer& line)
   {
       const Uint32 buffersize = 1024;
       Uint32 gcount = 0;
   
       line.clear();
   
       // Read the input line in chunks.  A non-full buffer indicates the end of
       // the line has been reached.
       do
       {
           char input[buffersize];
   
           // This reads up to buffersize-1 char, but stops before consuming
           // a newline character ('\n').
           is.get(input, buffersize);
   
           gcount = (Uint32)is.gcount();
           line.append(input, gcount);
   
           if (is.rdstate() & PEGASUS_STD(istream)::failbit)
           {
               // It is okay if we encounter the newline character without reading
               // data.
               is.clear();
               break;
           }
       } while (gcount == buffersize-1);
   
       if (!is.eof())
       {
           // we need to consume the '\n', because get() doesn't
           char c = 0;
           is.get(c);
       }
   
       return !!is;
   }
   
   //
   // changes the file owner to one specified
   //
   Boolean FileSystem::changeFileOwner(
       const String& fileName,
       const String& userName)
   {
   #if defined(PEGASUS_OS_TYPE_WINDOWS)
   
       return true;
   
   #else
   
       PEG_METHOD_ENTER(TRC_AUTHENTICATION, "FileSystem::changeFileOwner()");
   
       struct passwd* userPasswd;
   #if defined(PEGASUS_OS_SOLARIS) || \
       defined(PEGASUS_OS_HPUX) || \
       defined(PEGASUS_OS_LINUX) || \
       defined (PEGASUS_OS_VMS) || \
       defined (PEGASUS_OS_AIX)
   
       const unsigned int PWD_BUFF_SIZE = 1024;
       struct passwd pwd;
       char pwdBuffer[PWD_BUFF_SIZE];
   
       if (getpwnam_r(userName.getCString(), &pwd, pwdBuffer, PWD_BUFF_SIZE,
                     &userPasswd) != 0)
       {
           userPasswd = (struct passwd*)NULL;
       }
   
   #else
   
       userPasswd = getpwnam(userName.getCString());
   #endif
   
       if (userPasswd  == NULL)
       {
           PEG_METHOD_EXIT();
           return false;
       }
   
       Sint32 ret = chown(
           fileName.getCString(), userPasswd->pw_uid, userPasswd->pw_gid);
   
       if (ret == -1)
       {
           PEG_METHOD_EXIT();
           return false;
       }
   
       PEG_METHOD_EXIT();
   
       return true;
   #endif
   }
   
   #if defined(PEGASUS_OS_HPUX)
   void FileSystem::syncWithDirectoryUpdates(PEGASUS_STD(fstream)& fs)
   {
     #if defined (PEGASUS_PLATFORM_HPUX_IA64_GNU) || \
       defined (PEGASUS_PLATFORM_HPUX_PARISC_GNU)
       // Writes the data from the iostream buffers to the OS buffers
       fs.flush();
       // Writes the data from the OS buffers to the disk
       fs.rdbuf()->pubsync();
       #else
       // Writes the data from the iostream buffers to the OS buffers
       fs.flush();
       // Writes the data from the OS buffers to the disk
       fsync(fs.rdbuf()->fd());
       #endif
   }
   #else
   void FileSystem::syncWithDirectoryUpdates(PEGASUS_STD(fstream)&)
   {
       //Not HP-UX, do nothing (compiler will remove this fct on optimization)
   }
   #endif
   
   Boolean FileSystem::glob(
       const String& path,
       const String& pattern_,
       Array<String>& filenames)
   {
       filenames.clear();
   
       try
       {
           CString pattern(pattern_.getCString());
   
           for (Dir dir(path); dir.more(); dir.next())
           {
               const char* name = dir.getName();
   
               if (strcmp(name, ".") == 0 || strcmp(name, "..") == 0)
                   continue;
   
               if (Match(pattern, name) == 0)
                   filenames.append(name);
           }
       }
       catch (CannotOpenDirectory&)
       {
           return false;
       }
   
       return true;
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.4  
changed lines
  Added in v.1.87.10.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2