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

Diff for /pegasus/src/Pegasus/Handler/snmpIndicationHandler/snmpIndicationHandler.cpp between version 1.11 and 1.18

version 1.11, 2002/07/31 22:05:08 version 1.18, 2003/08/22 14:49:49
Line 25 
Line 25 
 // //
 // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company
 //                (carolann_graves@hp.com) //                (carolann_graves@hp.com)
   //            : Yi Zhou, Hewlett-Packard Company (yi_zhou@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 43 
Line 44 
 #include "snmpDeliverTrap_stub.h" #include "snmpDeliverTrap_stub.h"
 #endif #endif
  
   // l10n
   #include <Pegasus/Common/MessageLoader.h>
   
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 PEGASUS_USING_STD; PEGASUS_USING_STD;
  
 //#define DDD(X) X  
 #define DDD(X) // X  
   
 DDD(static const char* _SNMPINDICATIONHANDLER = "snmpIndicationHandler::";)  
   
 void snmpIndicationHandler::initialize(CIMRepository* repository) void snmpIndicationHandler::initialize(CIMRepository* repository)
 { {
     _repository = repository;     _repository = repository;
     DDD(cout << _SNMPINDICATIONHANDLER << "initialize()" << endl;)  
 } }
  
 void snmpIndicationHandler::handleIndication(CIMInstance& handler,  // l10n - note: ignoring indication language
     CIMInstance& indication, String nameSpace)  void snmpIndicationHandler::handleIndication(
       const OperationContext& context,
       CIMInstance& handler,
       CIMInstance& indication, String nameSpace,
       ContentLanguages & contentLanguages)
 { {
     Array<String> propOIDs;     Array<String> propOIDs;
     Array<String> propTYPEs;     Array<String> propTYPEs;
Line 78 
Line 80 
     CIMClass indicationClass = _repository->getClass(     CIMClass indicationClass = _repository->getClass(
         nameSpace, indication.getClassName(), false);         nameSpace, indication.getClassName(), false);
  
     for (Uint32 i=0; i<indication.getPropertyCount();i++)      Uint32 propertyCount = indication.getPropertyCount();
   
       for (Uint32 i=0; i < propertyCount; i++)
     {     {
         prop = indication.getProperty(i);         prop = indication.getProperty(i);
  
         if (!prop.isUninitialized())         if (!prop.isUninitialized())
         {         {
             String propName = prop.getName();              CIMName propName = prop.getName();
             Uint32 propPos = indicationClass.findProperty(propName);             Uint32 propPos = indicationClass.findProperty(propName);
             if (propPos != PEG_NOT_FOUND)             if (propPos != PEG_NOT_FOUND)
             {             {
             CIMProperty trapProp = indicationClass.getProperty(propPos);             CIMProperty trapProp = indicationClass.getProperty(propPos);
  
             qualifierPos = trapProp.findQualifier("MappingStrings");              qualifierPos = trapProp.findQualifier(CIMName ("MappingStrings"));
             if (qualifierPos != PEG_NOT_FOUND)             if (qualifierPos != PEG_NOT_FOUND)
             {             {
                 trapQualifier = trapProp.getQualifier(qualifierPos);                 trapQualifier = trapProp.getQualifier(qualifierPos);
Line 136 
Line 140 
         snmpDeliverTrap_stub emanateTrap;         snmpDeliverTrap_stub emanateTrap;
 #endif #endif
  
     if ((handler.findProperty("TrapDestination") != PEG_NOT_FOUND) &&      Uint32 targetHostPos = handler.findProperty(CIMName ("TargetHost"));
         (handler.findProperty("SNMPVersion") != PEG_NOT_FOUND) &&      Uint32 targetHostFormatPos = handler.findProperty(CIMName ("TargetHostFormat"));
         (indicationClass.findQualifier("MappingStrings") != PEG_NOT_FOUND))      Uint32 otherTargetHostFormatPos = handler.findProperty(CIMName (
                                         "OtherTargetHostFormat"));
       Uint32 portNumberPos = handler.findProperty(CIMName ("PortNumber"));
       Uint32 snmpVersionPos = handler.findProperty(CIMName ("SNMPVersion"));
       Uint32 securityNamePos =  handler.findProperty(CIMName ("SNMPSecurityName"));
       Uint32 engineIDPos =  handler.findProperty(CIMName ("SNMPEngineID"));
   
       if ((targetHostPos != PEG_NOT_FOUND) &&
           (targetHostFormatPos != PEG_NOT_FOUND) &&
           (snmpVersionPos != PEG_NOT_FOUND) &&
           (indicationClass.findQualifier(CIMName ("MappingStrings")) !=
               PEG_NOT_FOUND))
       {
           // properties from the handler instance
           String targetHost, otherTargetHostFormat;
           String securityName, engineID;
           Uint16 targetHostFormat, snmpVersion;
           Uint32 portNumber;
   
           String trapOid;
           //
           //  Get snmpTrapOid from context
           //
           try
     {     {
         String community, trapType, destination;   // from handler instance              SnmpTrapOidContainer trapContainer = context.get
         String trapOid;     // from indication Class                  (SnmpTrapOidContainer::NAME);
  
         trapOid = indicationClass.getQualifier(              trapOid = trapContainer.getSnmpTrapOid();
             indicationClass.findQualifier("MappingStrings")).getValue().toString();          }
           catch (Exception& e)
           {
               // get trapOid from indication Class
  
         trapOid = trapOid.subString(trapOid.find("OID.IETF | SNMP.")+16);              Uint32 pos = indicationClass.findQualifier(CIMName ("MappingStrings"));
               if (pos != PEG_NOT_FOUND)
               {
                   trapOid = indicationClass.getQualifier(pos).getValue().toString();
  
         community = handler.getProperty(                  trapOid = trapOid.subString(11, PEG_NOT_FOUND);
             handler.findProperty("SNMPCommunityName")).getValue().toString();  
  
         destination = handler.getProperty(                  if ((String::compare(trapOid, "SNMP.", 5)) == 0)
             handler.findProperty("TrapDestination")).getValue().toString();                  {
                       trapOid = trapOid.subString(5, (trapOid.size()-6));
                   }
                   else
                   {
                       // l10n
                       // throw PEGASUS_CIM_EXCEPTION(CIM_ERR_FAILED, "Invalid MappingStrings Value");
                       throw PEGASUS_CIM_EXCEPTION_L (CIM_ERR_FAILED,
                                                      MessageLoaderParms("Handler.snmpIndicationHandler.snmpIndicationHandler.INVALID_MS_VALUE",
                                                                          "Invalid MappingStrings Value"));
                   }
               }
               else
               {
                   //L10N_ TODO DONE
                   //throw PEGASUS_CIM_EXCEPTION(CIM_ERR_FAILED, "Qualifier MappingStrings can not be found");
                   MessageLoaderParms parms("Handler.snmpIndicationHandler.snmpIndicationHandler.QUALIFIER_MAPPINGS_NOT_FOUND",
                                                                    "Qualifier MappingStrings can not be found");
                   throw PEGASUS_CIM_EXCEPTION_L(CIM_ERR_FAILED, parms);
               }
           }
  
         trapType = handler.getProperty(          handler.getProperty(targetHostPos).getValue().get(targetHost);
             handler.findProperty("SNMPVersion")).getValue().toString();          handler.getProperty(targetHostFormatPos).getValue().get(targetHostFormat);
           handler.getProperty(otherTargetHostFormatPos).getValue().get
                   (otherTargetHostFormat);
           handler.getProperty(portNumberPos).getValue().get(portNumber);
           handler.getProperty(snmpVersionPos).getValue().get(snmpVersion);
           handler.getProperty(securityNamePos).getValue().get(securityName);
           handler.getProperty(engineIDPos).getValue().get(engineID);
  
         emanateTrap.deliverTrap(         emanateTrap.deliverTrap(
             trapOid,             trapOid,
             community,              securityName,
             destination,              targetHost,
             trapType,              targetHostFormat,
               otherTargetHostFormat,
               portNumber,
               snmpVersion,
               engineID,
             propOIDs,             propOIDs,
             propTYPEs,             propTYPEs,
             propVALUEs);             propVALUEs);
     }     }
     else     else
         cout << "Invalid Indication" << endl;      {
         // l10n
   
         // throw PEGASUS_CIM_EXCEPTION(CIM_ERR_FAILED,
         // "Invalid IndicationHandlerSNMPMapper instance");
   
         throw PEGASUS_CIM_EXCEPTION_L (CIM_ERR_FAILED,
                                        MessageLoaderParms("Handler.snmpIndicationHandler.snmpIndicationHandler.INVALID_SNMP_INSTANCE",
                                                           "Invalid IndicationHandlerSNMPMapper instance"));
       }
 } }
  
 // This is the dynamic entry point into this dynamic module. The name of // This is the dynamic entry point into this dynamic module. The name of
 // this handler is "snmpIndicationHandler" which is appened to "PegasusCreateHandler_"  // this handler is "snmpIndicationHandler" which is appended to "PegasusCreateHandler_"
 // to form a symbol name. This function is called by the HandlerTable // to form a symbol name. This function is called by the HandlerTable
 // to load this handler. // to load this handler.
  
 extern "C" PEGASUS_EXPORT CIMHandler* extern "C" PEGASUS_EXPORT CIMHandler*
     PegasusCreateHandler_snmpIndicationHandler() {     PegasusCreateHandler_snmpIndicationHandler() {
     DDD(cout << "Called PegasusCreateHandler_snmpIndicationHandler" << endl;)  
     return new snmpIndicationHandler;     return new snmpIndicationHandler;
 } }
  


Legend:
Removed from v.1.11  
changed lines
  Added in v.1.18

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2