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

Diff for /pegasus/src/Pegasus/Handler/SystemLogListenerDestination/SystemLogListenerDestination.cpp between version 1.3 and 1.7.4.1

version 1.3, 2005/05/20 21:09:46 version 1.7.4.1, 2007/04/04 11:04:48
Line 1 
Line 1 
 //%2005////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002  BMC Software, Hewlett-Packard Development  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // Company, L. P., IBM Corp., 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.; // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.;
 // IBM Corp.; EMC Corporation, The Open Group. // IBM Corp.; EMC Corporation, The Open Group.
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.; // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group. // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.; // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 // EMC Corporation; VERITAS Software Corporation; The Open Group. // 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 28 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Yi Zhou, Hewlett-Packard Company (yi.zhou@hp.com)  
 //  
 // Modified By:  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
Line 62 
Line 59 
     CIMInstance& indication,     CIMInstance& indication,
     CIMInstance& handler,     CIMInstance& handler,
     CIMInstance& subscription,     CIMInstance& subscription,
     ContentLanguages & contentLanguages)      ContentLanguageList& contentLanguages)
 { {
     PEG_METHOD_ENTER (TRC_IND_HANDLER,     PEG_METHOD_ENTER (TRC_IND_HANDLER,
         "SystemLogListenerDestination::handleIndication");         "SystemLogListenerDestination::handleIndication");
Line 83 
Line 80 
         // and maps it to Pegasus logger severity. Otherwise, default value         // and maps it to Pegasus logger severity. Otherwise, default value
         // is used.         // is used.
  
         Uint32 severityPos = indication.findProperty(CIMName          Uint32 severityPos =
             ("PerceivedSeverity"));              indication.findProperty(CIMName("PerceivedSeverity"));
  
         if (severityPos != PEG_NOT_FOUND)         if (severityPos != PEG_NOT_FOUND)
         {         {
Line 128 
Line 125 
  
                     default:                     default:
                     {                     {
                         Tracer::trace(TRC_IND_HANDLER, Tracer::LEVEL4,                          PEG_TRACE((TRC_IND_HANDLER, Tracer::LEVEL4,
                             "PerceivedSeverity = %d is not a valid value."                             "PerceivedSeverity = %d is not a valid value."
                             " Using default severity.", perceivedSeverity);                              " Using default severity.", perceivedSeverity));
                         break;                         break;
                     }                     }
                 }                 }
Line 139 
Line 136 
  
         // writes the formatted indication to a system log file         // writes the formatted indication to a system log file
         _writeToSystemLog(ident_name, severity, indicationText);         _writeToSystemLog(ident_name, severity, indicationText);
   
     }     }
     catch (CIMException & c)     catch (CIMException & c)
     {     {
Line 157 
Line 153 
     }     }
     catch (...)     catch (...)
     {     {
         PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL4,          PEG_TRACE_CSTRING(TRC_IND_HANDLER, Tracer::LEVEL4,
             "Failed to deliver indication to system log file.");             "Failed to deliver indication to system log file.");
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
  
         throw PEGASUS_CIM_EXCEPTION_L (CIM_ERR_FAILED,          throw PEGASUS_CIM_EXCEPTION_L(CIM_ERR_FAILED, MessageLoaderParms(
             MessageLoaderParms("Handler.SystemLogListenerDestination."              "Handler.SystemLogListenerDestination.SystemLogListenerDestination."
             "SystemLogListenerDestination.FAILED_TO_DELIVER_INDICATION_TO_SYSTEM_LOG",                  "FAILED_TO_DELIVER_INDICATION_TO_SYSTEM_LOG",
             "Failed to deliver indication to system log file."));             "Failed to deliver indication to system log file."));
     }     }
  
Line 195 
Line 191 
  
 } }
  
 // This is the dynamic entry point into this dynamic module. The name of  PEGASUS_NAMESPACE_END
 // this handler is "SystemLogListenerDestination" which is appended to "PegasusCreateHandler_"  
 // to form a symbol name. This function is called by the HandlerTable  PEGASUS_USING_PEGASUS;
 // to load this handler.  
  
 extern "C" PEGASUS_EXPORT CIMHandler*  // This is the entry point into this dynamic module.
     PegasusCreateHandler_SystemLogListenerDestination() {  
   extern "C" PEGASUS_EXPORT CIMHandler* PegasusCreateHandler(
       const String& handlerName)
   {
       if (handlerName == "SystemLogListenerDestination")
       {
     return new SystemLogListenerDestination;     return new SystemLogListenerDestination;
 } }
  
 PEGASUS_NAMESPACE_END      return 0;
   }


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2