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

Diff for /pegasus/src/Pegasus/Common/TraceFileHandler.cpp between version 1.6.14.1 and 1.19

version 1.6.14.1, 2003/08/13 19:39:51 version 1.19, 2005/02/05 22:59:24
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2005////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // The Open Group, Tivoli Systems  // 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.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 25 
Line 31 
 // //
 // Modified By: Rudy Schuet (rudy.schuet@compaq.com) 11/12/01 // Modified By: Rudy Schuet (rudy.schuet@compaq.com) 11/12/01
 //              added nsk platform support //              added nsk platform support
   //              Amit K Arora, IBM (amita@in.ibm.com) for Bug#1527
   //              Roger Kumpf, Hewlett-Packard Company (roger_kumpf@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 57 
Line 65 
     _fileName = 0;     _fileName = 0;
     _fileHandle = 0;     _fileHandle = 0;
     _wroteToLog = false;     _wroteToLog = false;
   #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       _baseFileName = 0;
       _fileCount = 0;
   #endif
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 74 
Line 86 
     {     {
         delete []_fileName;         delete []_fileName;
     }     }
   #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       if (_baseFileName)
       {
           delete []_baseFileName;
       }
   #endif
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 83 
Line 101 
  
 Uint32 TraceFileHandler::setFileName(const char* fileName) Uint32 TraceFileHandler::setFileName(const char* fileName)
 { {
       // If a file is already open, close it
       if (_fileHandle)
       {
           fclose(_fileHandle);
           _fileHandle = 0;
       }
   
       delete [] _fileName;
       _fileName = 0;
   #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       delete [] _baseFileName;
       _baseFileName = 0;
   #endif
   
     if (!isValidFilePath(fileName))     if (!isValidFilePath(fileName))
     {     {
         return 1;         return 1;
     }     }
     // Check if a file is already open, if so close it  
     if (_fileHandle)      _fileHandle = _openFile(fileName);
   
       if (!_fileHandle)
     {     {
         fclose(_fileHandle);          return 1;
     }     }
  
     // Now open the file      _fileName = new char[strlen(fileName)+1];
     _fileHandle = fopen(fileName,"a+");      strcpy(_fileName, fileName);
     if (!_fileHandle)  #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       _baseFileName = new char[strlen(fileName)+1];
       strcpy(_baseFileName, fileName);
   #endif
   
       return 0;
   }
   
   FILE* TraceFileHandler::_openFile(const char* fileName)
   {
       FILE* fileHandle = fopen(fileName,"a+");
       if (!fileHandle)
     {     {
         // Unable to open file, log a message         // Unable to open file, log a message
         //l10n  
         //Logger::put(Logger::DEBUG_LOG,"Tracer",Logger::WARNING,  
            //"Failed to open File $0",fileName);  
         Logger::put_l(Logger::DEBUG_LOG,"Tracer",Logger::WARNING,         Logger::put_l(Logger::DEBUG_LOG,"Tracer",Logger::WARNING,
            "Common.TraceFileHandler.FAILED_TO_OPEN_FILE",            "Common.TraceFileHandler.FAILED_TO_OPEN_FILE",
            "Failed to open File $0",fileName);              "Failed to open file $0", fileName);
             return 1;          return 0;
     }     }
     else  
     {      //
         if (_fileName)      // Set the file permissions to 0600
       //
   #if !defined(PEGASUS_OS_TYPE_WINDOWS)
       if (!FileSystem::changeFilePermissions(
               String(fileName), (S_IRUSR|S_IWUSR)) )
   #else
       if (!FileSystem::changeFilePermissions(
               String(fileName), (_S_IREAD|_S_IWRITE)) )
   #endif
         {         {
             delete [] _fileName;          Logger::put_l(Logger::DEBUG_LOG, "Tracer", Logger::WARNING,
         }             "Common.TraceFileHandler.FAILED_TO_SET_FILE_PERMISSIONS",
         _fileName = new char [strlen(fileName)+1];             "Failed to set permissions on file $0", fileName);
         strcpy (_fileName,fileName);          fclose(fileHandle);
           return 0;
     }     }
   
       //
       // Verify that the file has the correct owner
       //
       if (!System::verifyFileOwnership(fileName))
       {
           Logger::put_l(Logger::ERROR_LOG, "Tracer", Logger::WARNING,
              "Common.TraceFileHandler.UNEXPECTED_FILE_OWNER",
              "File $0 is not owned by user $1.", fileName,
              System::getEffectiveUserName());
           fclose(fileHandle);
     return 0;     return 0;
 } }
  
       return fileHandle;
   }
   
 Boolean TraceFileHandler::isValidFilePath(const char* filePath) Boolean TraceFileHandler::isValidFilePath(const char* filePath)
 { {
     String fileName = String(filePath);     String fileName = String(filePath);


Legend:
Removed from v.1.6.14.1  
changed lines
  Added in v.1.19

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2