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

Diff for /pegasus/src/Pegasus/Common/StatisticalData.cpp between version 1.12 and 1.23

version 1.12, 2005/07/22 23:22:12 version 1.23, 2013/10/13 22:46:58
Line 1 
Line 1 
 //%2005////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development  // Licensed to The Open Group (TOG) under one or more contributor license
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.  // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;  // this work for additional information regarding copyright ownership.
 // IBM Corp.; EMC Corporation, The Open Group.  // Each contributor licenses this file to you under the OpenPegasus Open
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;  // Source License; you may not use this file except in compliance with the
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.  // License.
 // 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 of this software and associated documentation files (the "Software"),
 // Permission is hereby granted, free of charge, to any person obtaining a copy  // to deal in the Software without restriction, including without limitation
 // of this software and associated documentation files (the "Software"), to  // the rights to use, copy, modify, merge, publish, distribute, sublicense,
 // deal in the Software without restriction, including without limitation the  // and/or sell copies of the Software, and to permit persons to whom the
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  // Software is furnished to do so, subject to the following conditions:
 // sell copies of the Software, and to permit persons to whom the Software is  //
 // furnished to do so, subject to the following conditions:  // The above copyright notice and this permission notice shall be included
 //  // in all copies or substantial portions of the Software.
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  //
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //  //
 //==============================================================================  //////////////////////////////////////////////////////////////////////////
 //  
 // Author: Arthur Pichlkostner  
 //             (checked in: Markus Mueller sedgewick_de@yahoo.de)  
 // Modified By: Amit K Arora, IBM (amita@in.ibm.com) for Bug#1090  
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 38 
Line 34 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   
   // The table on the right represents the mapping from the enumerated types
   // in the CIM_CIMOMStatisticalDate class ValueMap versus the internal
   // message type defined in Message.h. This conversion is performed by
   // getOpType() in CIMOMStatDataProvider.cpp.
   //
   
 String StatisticalData::requestName[] = String StatisticalData::requestName[] =
 { {
     "GET_CLASS",                                      // Enumerated     ValueMap Value
     "GET_INSTANCE",                                      // value from     from class
     "EXPORT_INDICATION",                                      // Pegasus        CIM_StatisticalData
     "DELETE_CLASS",                                      // message type
     "DELETE_INSTANCE",                                      // -------------- -------------------
     "CREATE_CLASS",  //"Unknown",                        //                 0   default
     "CREATE_INSTANCE",  //"Other",                          //                 1   mapped
     "MODIFY_CLASS",  //"Batched",                        //                 2   not used
     "MODIFY_INSTANCE",    "GetClass",                       //     1           3
     "ENUMERATE_CLASSES",    "GetInstance",                    //     2           4
     "ENUMERATE_CLASS_NAMES",    "IndicationDelivery",             //     3          26
     "ENUMERATE_INSTANCES",    "DeleteClass",                    //     4           5
     "ENUMERATE_INSTANCE_NAMES",    "DeleteInstance",                 //     5           6
     "EXEC_QUERY",    "CreateClass",                    //     6           7
     "ASSOCIATORS",    "CreateInstance",                 //     7           8
     "ASSOCIATOR_NAMES",    "ModifyClass",                    //     8           9
     "REFERENCES",    "ModifyInstance",                 //     9          10
     "REFERENCE_NAMES",    "EnumerateClasses",               //    10          11
     "GET_PROPERTY",    "EnumerateClassNames",            //    12          12
     "SET_PROPERTY",    "EnumerateInstances",             //    13          13
     "GET_QUALIFIER",    "EnumerateInstanceNames",         //    14          14
     "SET_QUALIFIER",    "ExecQuery",                      //    15          15
     "DELETE_QUALIFIER",    "Associators",                    //    16          16
     "ENUMERATE_QUALIFIERS",    "AssociatorNames",                //    17          17
     "INVOKE_METHOD"    "References",                     //    18          18
     "ReferenceNames",                 //    19          20
     "GetProperty",                    //    20          20
     "SetProperty",                    //    21          21
     "GetQualifier",                   //    22          22
     "SetQualifier",                   //    23          23
     "DeleteQualifier",                //    24          24
     "EnumerateQualifiers",            //    25          25
   // Entries below this point are not part of the CIM Class and are treated
   // as OtherOperationTypes in the CIM_CIMOMStatisticalData instance.
     "InvokeMethod"                    //    26          Not Present index = 26
   
 }; };
  
 const Uint32 StatisticalData::length = NUMBER_OF_TYPES; const Uint32 StatisticalData::length = NUMBER_OF_TYPES;
  
 StatisticalData* StatisticalData::cur = NULL;  // Pointer to StatisticalData table if it exists.
   StatisticalData* StatisticalData::table = NULL;
  
   // If first call, create the statistical data array
 StatisticalData* StatisticalData::current() StatisticalData* StatisticalData::current()
 { {
     if (cur == NULL)      if (table == NULL)
     {     {
         cur = new StatisticalData();          table = new StatisticalData();
     }     }
     return cur;      return table;
 } }
  
   // Constructor clears the statisticalData Array and sets the gatherint
   // flag to zero
 StatisticalData::StatisticalData() StatisticalData::StatisticalData()
 { {
     copyGSD = 0;     copyGSD = 0;
       clear();
   }
  
   void StatisticalData::clear()
   {
       AutoMutex autoMut(_mutex);
     for (unsigned int i=0; i<StatisticalData::length; i++)     for (unsigned int i=0; i<StatisticalData::length; i++)
     {     {
         numCalls[i] = 0;         numCalls[i] = 0;
Line 94 
Line 117 
     }     }
 } }
  
 void StatisticalData::addToValue(Sint64 value, Uint16 type, Uint32 t)  
   String StatisticalData::getRequestName(Uint16 i)
 { {
       return requestName[i];
   }
   
   void StatisticalData::addToValue(Sint64 value,
       MessageType msgType,
       StatDataType t)
   {
       // Map MessageType to statistic type. Requires multiple tests because
       // mapping request and responses to the request types.
       Uint16 type;
   
       // if is response type, substract starting point of responses.
       if (msgType >= CIM_GET_CLASS_RESPONSE_MESSAGE)
       {
           type = msgType - CIM_GET_CLASS_RESPONSE_MESSAGE;
       }
       else
       {
           type = msgType - 1;
       }
   
       // Test if valid statistic type
     if (type >= NUMBER_OF_TYPES)     if (type >= NUMBER_OF_TYPES)
     {     {
          Tracer::trace(TRC_DISCARDED_DATA, Tracer::LEVEL2,           PEG_TRACE((TRC_DISCARDED_DATA, Tracer::LEVEL2,
              "StatData: Statistical Data Discarded.  "              "StatData: Statistical Data Discarded.  "
                  "Invalid Request Type =  %u", type);                   "Invalid Request Type =  %u", type));
          return;          return;
     }     }
  
Line 112 
Line 158 
             case PEGASUS_STATDATA_SERVER:             case PEGASUS_STATDATA_SERVER:
                 numCalls[type] += 1;                 numCalls[type] += 1;
                 cimomTime[type] += value;                 cimomTime[type] += value;
                 Tracer::trace(TRC_STATISTICAL_DATA, Tracer::LEVEL2,                  PEG_TRACE((TRC_STATISTICAL_DATA, Tracer::LEVEL4,
                     "StatData: SERVER: %s(%d): count = %"                     "StatData: SERVER: %s(%d): count = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"                         PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"                         PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d",                         PEGASUS_64BIT_CONVERSION_WIDTH "d",
                     (const char *)requestName[type].getCString(), type,                     (const char *)requestName[type].getCString(), type,
                     numCalls[type], value, cimomTime[type]);                      numCalls[type], value, cimomTime[type]));
                 break;                 break;
             case PEGASUS_STATDATA_PROVIDER:             case PEGASUS_STATDATA_PROVIDER:
                 providerTime[type] += value;                 providerTime[type] += value;
                 Tracer::trace(TRC_STATISTICAL_DATA, Tracer::LEVEL2,                  PEG_TRACE((TRC_STATISTICAL_DATA, Tracer::LEVEL4,
                     "StatData: PROVIDER: %s(%d): count = %"                     "StatData: PROVIDER: %s(%d): count = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"                         PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"                         PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d",                         PEGASUS_64BIT_CONVERSION_WIDTH "d",
                     (const char *)requestName[type].getCString(), type,                     (const char *)requestName[type].getCString(), type,
                     numCalls[type], value, providerTime[type]);                      numCalls[type], value, providerTime[type]));
                 break;                 break;
         case PEGASUS_STATDATA_BYTES_SENT:         case PEGASUS_STATDATA_BYTES_SENT:
                 responseSize[type] += value;                 responseSize[type] += value;
                 Tracer::trace(TRC_STATISTICAL_DATA, Tracer::LEVEL2,                  PEG_TRACE((TRC_STATISTICAL_DATA, Tracer::LEVEL4,
                     "StatData: BYTES_SENT: %s(%d): count = %"                     "StatData: BYTES_SENT: %s(%d): count = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"                         PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"                         PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d",                         PEGASUS_64BIT_CONVERSION_WIDTH "d",
                     (const char *)requestName[type].getCString(), type,                     (const char *)requestName[type].getCString(), type,
                     numCalls[type], value, responseSize[type]);                      numCalls[type], value, responseSize[type]));
                 break;                 break;
         case PEGASUS_STATDATA_BYTES_READ:         case PEGASUS_STATDATA_BYTES_READ:
                 requestSize[type] += value;                 requestSize[type] += value;
                 Tracer::trace(TRC_STATISTICAL_DATA, Tracer::LEVEL2,                  PEG_TRACE((TRC_STATISTICAL_DATA, Tracer::LEVEL4,
                     "StatData: BYTES_READ: %s(%d): count = %"                     "StatData: BYTES_READ: %s(%d): count = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"                         PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"                         PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"
                         PEGASUS_64BIT_CONVERSION_WIDTH "d",                         PEGASUS_64BIT_CONVERSION_WIDTH "d",
                     (const char *)requestName[type].getCString(), type,                     (const char *)requestName[type].getCString(), type,
                     numCalls[type], value, requestSize[type]);                      numCalls[type], value, requestSize[type]));
                 break;                 break;
         }         }
     }     }
Line 156 
Line 202 
  
  void StatisticalData::setCopyGSD(Boolean flag)  void StatisticalData::setCopyGSD(Boolean flag)
 { {
   
         copyGSD = flag;         copyGSD = flag;
 } }
  


Legend:
Removed from v.1.12  
changed lines
  Added in v.1.23

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2