(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.12

version 1.3, 2005/05/20 21:09:46 version 1.12, 2008/06/19 17:57:06
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 72 
Line 69 
  
     try     try
     {     {
           PEG_TRACE ((TRC_INDICATION_GENERATION, Tracer::LEVEL4,
               "SystemLogListenerDestination %s:%s.%s processing %s Indication",
              (const char*)(nameSpace.getCString()),
              (const char*)(handler.getClassName().getString().getCString()),
              (const char*)(handler.getProperty(
              handler.findProperty(PEGASUS_PROPERTYNAME_NAME)).
              getValue().toString().getCString()),
              (const char*)(indication.getClassName().getString().
              getCString())));
         // gets formatted indication message         // gets formatted indication message
         indicationText = IndicationFormatter::getFormattedIndText(         indicationText = IndicationFormatter::getFormattedIndText(
             subscription, indication, contentLanguages);             subscription, indication, contentLanguages);
Line 83 
Line 89 
         // 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 134 
  
                     default:                     default:
                     {                     {
                         Tracer::trace(TRC_IND_HANDLER, Tracer::LEVEL4,                          PEG_TRACE((TRC_IND_HANDLER, Tracer::LEVEL2,
                             "PerceivedSeverity = %d is not a valid value."                             "PerceivedSeverity = %d is not a valid value."
                             " Using default severity.", perceivedSeverity);                              " Using default severity.", perceivedSeverity));
                         break;                         break;
                     }                     }
                 }                 }
             }             }
         }         }
  
          PEG_TRACE ((TRC_INDICATION_GENERATION, Tracer::LEVEL4,
              "SystemLogListenerDestination writing %s Indication to system log",
              (const char*)(indication.getClassName().getString().getCString())));
         // 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);
          PEG_TRACE ((TRC_INDICATION_GENERATION, Tracer::LEVEL4,
              "%s Indication written to system log successfully",
              (const char*)(indication.getClassName().getString().getCString())));
     }     }
     catch (CIMException & c)     catch (CIMException & c)
     {     {
         PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL4, c.getMessage());          PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL1, c.getMessage());
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
  
         throw PEGASUS_CIM_EXCEPTION (CIM_ERR_FAILED, c.getMessage());         throw PEGASUS_CIM_EXCEPTION (CIM_ERR_FAILED, c.getMessage());
     }     }
     catch (Exception& e)     catch (Exception& e)
     {     {
         PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL4, e.getMessage());          PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL1, e.getMessage());
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
  
         throw PEGASUS_CIM_EXCEPTION (CIM_ERR_FAILED, e.getMessage());         throw PEGASUS_CIM_EXCEPTION (CIM_ERR_FAILED, e.getMessage());
     }     }
     catch (...)     catch (...)
     {     {
         PEG_TRACE_STRING(TRC_IND_HANDLER, Tracer::LEVEL4,          PEG_TRACE_CSTRING(TRC_IND_HANDLER, Tracer::LEVEL1,
             "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 184 
Line 195 
  
 #else #else
  
       PEG_TRACE_CSTRING((TRC_INDICATION_GENERATION, Tracer::LEVEL3,
          "SystemLogListenerDestination writing to PegasusStandard.log"));
     // PEGASUS_USE_SYSLOGS is not defined, writes the formatted     // PEGASUS_USE_SYSLOGS is not defined, writes the formatted
     // indications into PegasusStandard.log file     // indications into PegasusStandard.log file
     Logger::put (Logger::STANDARD_LOG , identifier, severity,     Logger::put (Logger::STANDARD_LOG , identifier, severity,
Line 195 
Line 208 
  
 } }
  
 // 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.12

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2