(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.7 and 1.22.8.5

version 1.7, 2004/08/12 10:47:43 version 1.22.8.5, 2013/10/13 21:31:59
Line 1 
Line 1 
 //%2003////////////////////////////////////////////////////////////////////////  //%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
 //  // Source License; you may not use this file except in compliance with the
 // Permission is hereby granted, free of charge, to any person obtaining a copy  // License.
 // of this software and associated documentation files (the "Software"), to  //
 // deal in the Software without restriction, including without limitation the  // Permission is hereby granted, free of charge, to any person obtaining a
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  // copy of this software and associated documentation files (the "Software"),
 // sell copies of the Software, and to permit persons to whom the Software is  // to deal in the Software without restriction, including without limitation
 // furnished to do so, subject to the following conditions:  // the rights to use, copy, modify, merge, publish, distribute, sublicense,
 //  // and/or sell copies of the Software, and to permit persons to whom the
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  // Software is furnished to do so, subject to the following conditions:
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  //
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  // The above copyright notice and this permission notice shall be included
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  // in all copies or substantial portions of the Software.
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  //
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 //  // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 //==============================================================================  // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 //  // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 // Author: Arthur Pichlkostner  // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //             (checked in: Markus Mueller sedgewick_de@yahoo.de)  //
 // Modified By: Amit K Arora, IBM (amita@in.ibm.com) for Bug#1090  //////////////////////////////////////////////////////////////////////////
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "StatisticalData.h" #include "StatisticalData.h"
   #include "Tracer.h"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 String StatisticalData::requestName[] = {  
     "GET_CLASS",  // The table on the right represents the mapping from the enumerated types
     "GET_INSTANCE",  // in the CIM_CIMOMStatisticalDate class ValueMap versus the internal
         "EXPORT_INDICATION",  // message type defined in Message.h. This conversion is performed by
     "DELETE_CLASS",  // getOpType() in CIMOMStatDataProvider.cpp.
     "DELETE_INSTANCE",  //
     "CREATE_CLASS",  
     "CREATE_INSTANCE",  String StatisticalData::requestName[] =
     "MODIFY_CLASS",  {
     "MODIFY_INSTANCE",                                      // Enumerated     ValueMap Value
     "ENUMERATE_CLASSES",                                      // value from     from class
     "ENUMERATE_CLASS_NAMES",                                      // Pegasus        CIM_StatisticalData
     "ENUMERATE_INSTANCES",                                      // message type
     "ENUMERATE_INSTANCE_NAMES",                                      // -------------- -------------------
     "EXEC_QUERY",    "Unknown",                        //                 0   default
     "ASSOCIATORS",    "Other",                          //                 1   mapped
     "ASSOCIATOR_NAMES",    "Batched",                        //                 2   not used
     "REFERENCES",    "GetClass",                       //     1           3
     "REFERENCE_NAMES",    "GetInstance",                    //     2           4
     "GET_PROPERTY",    "IndicationDelivery",             //     3          26
     "SET_PROPERTY",    "DeleteClass",                    //     4           5
     "GET_QUALIFIER",    "DeleteInstance",                 //     5           6
     "SET_QUALIFIER",    "CreateClass",                    //     6           7
     "DELETE_QUALIFIER",    "CreateInstance",                 //     7           8
     "ENUMERATE_QUALIFIERS"    "ModifyClass",                    //     8           9
     "ModifyInstance",                 //     9          10
     "EnumerateClasses",               //    10          11
     "EnumerateClassNames",            //    12          12
     "EnumerateInstances",             //    13          13
     "EnumerateInstanceNames",         //    14          14
     "ExecQuery",                      //    15          15
     "Associators",                    //    16          16
     "AssociatorNames",                //    17          17
     "References",                     //    18          18
     "ReferenceNames",                 //    19          20
     "SetProperty",                    //    20          21
     "GetQualifier",                   //    21          22
     "SetQualifier",                   //    22          23
     "DeleteQualifier",                //    23          24
     "EnumerateQualifiers",            //    24          25
   // Entries below this point are not part of the CIM Class and are treated
   // as OtherOperationTypes in the instance.
     "InvokeMethod"                    //     25          Not Present index = 26
   //EXP_PULL_BEGIN
   //// TODO these are not defined in CIM_StatisticalData class and are
   ///  represented by the Other groping with supplementary property
     "OpenEnumerateInstances",         //    71          27
     "OpenEnumerateInstancePaths",     //    72
     "OpenReferences",                 //    73
     "OpenReferenceNames",             //    74
     "OpenAssociators",                //    75
     "OpenAssociatorPaths",            //    76
     "PullInstancesWithPath",          //    77
     "PullInstancePaths",              //    77
     "CloseEnumeration" ,              //    79
   //EXP_PULL_END
   
       };       };
  
 const Uint32 StatisticalData::length = NUMBER_OF_TYPES; const Uint32 StatisticalData::length = NUMBER_OF_TYPES;
  
 StatisticalData* StatisticalData::cur = NULL; StatisticalData* StatisticalData::cur = NULL;
  
 StatisticalData* StatisticalData::current(){  // If first call, create the statistical data array
    if (cur == NULL){  StatisticalData* StatisticalData::current()
   {
       if (cur == NULL)
       {
       cur = new StatisticalData();       cur = new StatisticalData();
    }    }
    return cur;    return cur;
 } }
  
 StatisticalData::StatisticalData(){  // Clear the statisticalData Array
   StatisticalData::StatisticalData()
   {
    copyGSD = 0;    copyGSD = 0;
  
    for (unsigned int i=0; i<StatisticalData::length; i++){      for (unsigned int i=0; i<StatisticalData::length; i++)
       {
       numCalls[i] = 0;       numCalls[i] = 0;
       cimomTime[i] = 0;       cimomTime[i] = 0;
           providerTime[i] = 0;           providerTime[i] = 0;
       responseSize[i] = 0;       responseSize[i] = 0;
       requestSize[i] = 0;       requestSize[i] = 0;
       }
   }
  
   void StatisticalData::addToValue(Sint64 value,
       MessageType msgType,
       StatDataType t)
   {
       // Map MessageType to statistic type
       Uint16 type;
       if ((msgType) >= CIM_OPEN_ENUMERATE_INSTANCES_RESPONSE_MESSAGE)
       {
           type = msgType - CIM_SET_QUALIFIER_RESPONSE_MESSAGE;
       }
       else if (msgType >= CIM_ENUMERATE_CLASSES_RESPONSE_MESSAGE)
       {
          type = msgType - CIM_OPEN_ENUMERATE_INSTANCES_REQUEST_MESSAGE;
       }
       else if (msgType >= CIM_GET_CLASS_RESPONSE_MESSAGE)
       {
           type = msgType - CIM_GET_CLASS_RESPONSE_MESSAGE;
       }
       else
       {
           type = msgType;
    }    }
   
       //// KS_TODO diagnostic to confirm that the above if statements are correct
       //// KS_DELETE when we get bug 9786 completely integrated.
       PEG_TRACE((TRC_STATISTICAL_DATA, Tracer::LEVEL4,
        "StatisticalData::addToValue msgType %s %u. stat type %u",
                  MessageTypeToString(msgType),
                  msgType, type ));
   
       // Test if valid statistic type
       if (type >= NUMBER_OF_TYPES)
       {
            PEG_TRACE((TRC_DISCARDED_DATA, Tracer::LEVEL2,
                "StatData: Statistical Data Discarded.  "
                    "Invalid Request Type =  %u", type));
            return;
 } }
  
 void StatisticalData::addToValue(Sint64 value, Uint16 type, Uint32 t){      if (copyGSD)
       {
    AutoMutex autoMut(_mutex);    AutoMutex autoMut(_mutex);
    switch(t){          switch (t)
           case SERVER:          numCalls[type] += 1;          {
               case PEGASUS_STATDATA_SERVER:
                   numCalls[type] += 1;
                         cimomTime[type] += value;                         cimomTime[type] += value;
                   PEG_TRACE((TRC_STATISTICAL_DATA, Tracer::LEVEL4,
                       "StatData: SERVER: %s(%d): count = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d",
                       (const char *)requestName[type].getCString(), type,
                       numCalls[type], value, cimomTime[type]));
                         break;                         break;
       case PROVIDER:    providerTime[type] += value;              case PEGASUS_STATDATA_PROVIDER:
                   providerTime[type] += value;
                   PEG_TRACE((TRC_STATISTICAL_DATA, Tracer::LEVEL4,
                       "StatData: PROVIDER: %s(%d): count = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d",
                       (const char *)requestName[type].getCString(), type,
                       numCalls[type], value, providerTime[type]));
                         break;                         break;
       case BYTES_SENT:  responseSize[type] += value;          case PEGASUS_STATDATA_BYTES_SENT:
                   responseSize[type] += value;
                   PEG_TRACE((TRC_STATISTICAL_DATA, Tracer::LEVEL4,
                       "StatData: BYTES_SENT: %s(%d): count = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d",
                       (const char *)requestName[type].getCString(), type,
                       numCalls[type], value, responseSize[type]));
                         break;                         break;
       case BYTES_READ:  requestSize[type] += value;          case PEGASUS_STATDATA_BYTES_READ:
                   requestSize[type] += value;
                   PEG_TRACE((TRC_STATISTICAL_DATA, Tracer::LEVEL4,
                       "StatData: BYTES_READ: %s(%d): count = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d; value = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d; total = %"
                           PEGASUS_64BIT_CONVERSION_WIDTH "d",
                       (const char *)requestName[type].getCString(), type,
                       numCalls[type], value, requestSize[type]));
                         break;                         break;
    }    }
 } }
   }
  
  void StatisticalData::setCopyGSD(Boolean flag)  void StatisticalData::setCopyGSD(Boolean flag)
 { {
   
         copyGSD = flag;         copyGSD = flag;
 } }
  


Legend:
Removed from v.1.7  
changed lines
  Added in v.1.22.8.5

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2