(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.3 and 1.37

version 1.3, 2002/05/01 07:08:38 version 1.37, 2008/10/01 08:35:46
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // The Open Group, Tivoli Systems, Compaq Computer Corporation  // 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.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec 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 21 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Sushma Fernandes, Hewlett-Packard Company (sushma_fernandes@hp.com)  
 //  
 // Modified By: Rudy Schuet (rudy.schuet@compaq.com) 11/12/01  
 //              added nsk platform support  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <fstream>  
 #include <iostream>  
 #include <Pegasus/Common/FileSystem.h> #include <Pegasus/Common/FileSystem.h>
   #include <Pegasus/Common/Tracer.h>
 #include <Pegasus/Common/TraceFileHandler.h> #include <Pegasus/Common/TraceFileHandler.h>
  
 #if defined(PEGASUS_OS_TYPE_WINDOWS) #if defined(PEGASUS_OS_TYPE_WINDOWS)
 # include <Pegasus/Common/TraceFileHandlerWindows.cpp> # include <Pegasus/Common/TraceFileHandlerWindows.cpp>
 #elif defined(PEGASUS_OS_TYPE_UNIX)  #elif defined(PEGASUS_OS_TYPE_UNIX) || defined(PEGASUS_OS_VMS)
 # include <Pegasus/Common/TraceFileHandlerUnix.cpp>  # include <Pegasus/Common/TraceFileHandlerPOSIX.cpp>
 #elif defined(PEGASUS_OS_TYPE_NSK)  
 # include <Pegasus/Common/TraceFileHandlerNsk.cpp>  
 #else #else
 # error "Unsupported platform" # error "Unsupported platform"
 #endif #endif
Line 57 
Line 57 
     _fileName = 0;     _fileName = 0;
     _fileHandle = 0;     _fileHandle = 0;
     _wroteToLog = false;     _wroteToLog = false;
       _configHasChanged = true;
   #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       _baseFileName = 0;
       _fileCount = 0;
   #endif
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 70 
Line 75 
     {     {
         fclose(_fileHandle);         fclose(_fileHandle);
     }     }
     if (_fileName)      free(_fileName);
     {  #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
         delete []_fileName;      free(_baseFileName);
   #endif
     }     }
   
   ////////////////////////////////////////////////////////////////////////////////
   // The configuration of the trace has been updated.
   // At the next trace write, change to the new configuration.
   ////////////////////////////////////////////////////////////////////////////////
   void TraceFileHandler::configurationUpdated()
   {
       _configHasChanged = true;
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
 //  Sets the filename to the given filename and opens the file in append  // If the trace configuration has been updated,
 //  mode  // close the old file and open the new file.
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
   void TraceFileHandler::_reConfigure()
   {
       AutoMutex writeLock(writeMutex);
  
 Uint32 TraceFileHandler::setFileName(const char* fileName)      if(!_configHasChanged)
 { {
     if (!isValidFilePath(fileName))          // An other thread does already the re-configuration.
           // do nothing.
           return;
       }
   
       free(_fileName);
       _fileName = 0;
   #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       free(_baseFileName);
       _baseFileName = 0;
   #endif
   
       if (Tracer::_getInstance() ->_traceFile.size() == 0)
     {     {
         return 1;          // if the file name is empty/NULL pointer do nothing
           // wait for a new trace file.
           _configHasChanged=false;
           return;
     }     }
     // Check if a file is already open, if so close it  
       _fileName = strdup((const char*)Tracer::_getInstance()
                               ->_traceFile.getCString());
   
       // If a file is already open, close it.
     if (_fileHandle)     if (_fileHandle)
     {     {
         fclose(_fileHandle);         fclose(_fileHandle);
           _fileHandle = 0;
     }     }
  
     // Now open the file      _fileHandle = _openFile(_fileName);
     _fileHandle = fopen(fileName,"a+");  
     if (!_fileHandle)     if (!_fileHandle)
     {     {
         // Unable to open file, log a message          // return with no message. _openFile() already wrote one.
         Logger::put(Logger::DEBUG_LOG,"Tracer",Logger::WARNING,          free(_fileName);
            "Failed to open File $0",fileName);          _fileName = 0;
             return 1;          // wait for a new trace file
     }          _configHasChanged=false;
     else          return;
     {  
         if (_fileName)  
         {  
             delete [] _fileName;  
         }  
         _fileName = new char [strlen(fileName)+1];  
         strcpy (_fileName,fileName);  
     }  
     return 0;  
 } }
  
 Boolean TraceFileHandler::isValidFilePath(const char* filePath)      #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
 {      _baseFileName = strdup(_fileName);
     String fileName = String(filePath);      #endif
  
     // Check if the file path is a directory      _configHasChanged=false;
     FileSystem::translateSlashes(fileName);  
     if (FileSystem::isDirectory(fileName))  
     {  
         return 0;  
     }  
  
     // Check if the file exists and is writable      return;
     if (FileSystem::exists(fileName))  
     {  
         if (!FileSystem::canWrite(fileName))  
         {  
             return 0;  
         }         }
         else  
         {  
             return 1;  
         }  
     }  
     else  
     {  
         // Check if directory is writable  
         String dirSeparator("/");  
  
         Uint32 pos = fileName.reverseFind(*(dirSeparator.getData()));  FILE* TraceFileHandler::_openFile(const char* fileName)
   
         if (pos != PEG_NOT_FOUND)  
         {         {
             String dirName = fileName.subString(0,pos);  #ifdef PEGASUS_OS_VMS
             if (!FileSystem::isDirectory(dirName))  //    FILE* fileHandle = fopen(fileName,"a+", "shr=get,put,upd");
       FILE* fileHandle = fopen(fileName,"w", "shr=get,put,upd");
   #else
       FILE* fileHandle = fopen(fileName,"a+");
   #endif
       if (!fileHandle)
             {             {
           // Unable to open file, log a message
           Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::WARNING,
               MessageLoaderParms(
                   "Common.TraceFileHandler.FAILED_TO_OPEN_FILE_SYSMSG",
                   "Failed to open file $0: $1",
                   fileName,PEGASUS_SYSTEM_ERRORMSG_NLS));
                 return 0;                 return 0;
             }             }
             if (!FileSystem::canWrite(dirName) )  
       //
       // Verify that the file has the correct owner
       //
       if (!System::verifyFileOwnership(fileName))
             {             {
           Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::WARNING,
               MessageLoaderParms(
                   "Common.TraceFileHandler.UNEXPECTED_FILE_OWNER",
                   "File $0 is not owned by user $1.", fileName,
                   System::getEffectiveUserName()));
           fclose(fileHandle);
                 return 0;                 return 0;
             }             }
             else  
             {  
                 return 1;  
             }  
         }  
         else  
         {  
             String currentDir;  
  
             // Check if there is permission to write in the      //
             // current working directory      // Set the file permissions to 0600
             FileSystem::getCurrentDirectory(currentDir);      //
   #if !defined(PEGASUS_OS_TYPE_WINDOWS)
             if (!FileSystem::canWrite(currentDir))      if (!FileSystem::changeFilePermissions(
               String(fileName), (S_IRUSR|S_IWUSR)) )
   #else
       if (!FileSystem::changeFilePermissions(
               String(fileName), (_S_IREAD|_S_IWRITE)) )
   #endif
             {             {
           Logger::put_l(
               Logger::ERROR_LOG,
               System::CIMSERVER,
               Logger::WARNING,
               MessageLoaderParms(
                   "Common.TraceFileHandler.FAILED_TO_SET_FILE_PERMISSIONS",
                   "Failed to set permissions on file $0",
                   fileName));
           fclose(fileHandle);
                 return 0;                 return 0;
             }             }
             else  
             {      return fileHandle;
                 return 1;  
             }  
         }  
     }  
     return 1;  
 } }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.3  
changed lines
  Added in v.1.37

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2