(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.15 and 1.21

version 1.15, 2006/02/08 11:56:40 version 1.21, 2008/12/01 17:49:56
Line 1 
Line 1 
 //%2006////////////////////////////////////////////////////////////////////////  //%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
 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;  // copy of this software and associated documentation files (the "Software"),
 // EMC Corporation; Symantec Corporation; The Open Group.  // to deal in the Software without restriction, including without limitation
 //  // the rights to use, copy, modify, merge, publish, distribute, sublicense,
 // Permission is hereby granted, free of charge, to any person obtaining a copy  // and/or sell copies of the Software, and to permit persons to whom the
 // of this software and associated documentation files (the "Software"), to  // Software is furnished to do so, subject to the following conditions:
 // deal in the Software without restriction, including without limitation the  //
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  // The above copyright notice and this permission notice shall be included
 // sell copies of the Software, and to permit persons to whom the Software is  // in all copies or substantial portions of the Software.
 // furnished to do so, subject to the following conditions:  //
 //  // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  //
 // WITH THE 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 43 
Line 37 
  
 // The table on the right represents the mapping from the enumerated types // The table on the right represents the mapping from the enumerated types
 // in the CIM_CIMOMStatisticalDate class ValueMap versus the internal // in the CIM_CIMOMStatisticalDate class ValueMap versus the internal
 // message type defined in Message.cpp. This conversion is performed by  // message type defined in Message.h. This conversion is performed by
 // getOpType() in CIMOMStatDataProvider.cpp. // getOpType() in CIMOMStatDataProvider.cpp.
 // //
  
Line 54 
Line 48 
                                     // internal       CIM_StatisticalData                                     // internal       CIM_StatisticalData
                                     // message type                                     // message type
                                     // -------------- -------------------                                     // -------------- -------------------
   "GetClass",                       //     0           3    "GetClass",                       //     1           3
   "GetInstance",                    //     1           4    "GetInstance",                    //     2           4
   "IndicationDelivery",             //     2           26    "IndicationDelivery",             //     3           26
   "DeleteClass",                    //     3           5    "DeleteClass",                    //     4           5
   "DeleteInstance",                 //     4           6    "DeleteInstance",                 //     5           6
   "CreateClass",                    //     5           7    "CreateClass",                    //     6           7
   "CreateInstance",                 //     6           8    "CreateInstance",                 //     7           8
   "ModifyClass",                    //     7           9    "ModifyClass",                    //     8           9
   "ModifyInstance",                 //     8          10    "ModifyInstance",                 //     9          10
   "EnumerateClasses",               //     9          11    "EnumerateClasses",               //    10          11
   "EnumerateClassNames",            //    10          12    "EnumerateClassNames",            //    11          12
   "EnumerateInstances",             //    11          13    "EnumerateInstances",             //    12          13
   "EnumerateInstanceNames",         //    12          14    "EnumerateInstanceNames",         //    13          14
   "ExecQuery",                      //    13          15    "ExecQuery",                      //    14          15
   "Associators",                    //    14          16    "Associators",                    //    15          16
   "AssociatorNames",                //    15          17    "AssociatorNames",                //    16          17
   "References",                     //    16          18    "References",                     //    17          18
   "ReferenceNames",                 //    17          19    "ReferenceNames",                 //    18          19
   "GetProperty",                    //    18          20    "GetProperty",                    //    19          20
   "SetProperty",                    //    19          21    "SetProperty",                    //    20          21
   "GetQualifier",                   //    20          22    "GetQualifier",                   //    21          22
   "SetQualifier",                   //    21          23    "SetQualifier",                   //    22          23
   "DeleteQualifier",                //    22          24    "DeleteQualifier",                //    23          24
   "EnumerateQualifiers",            //    23          25    "EnumerateQualifiers",            //    24          25
   "InvokeMethod"                    //    24          Not Present    "InvokeMethod"                    //    25          Not Present
 }; };
  
 const Uint32 StatisticalData::length = NUMBER_OF_TYPES; const Uint32 StatisticalData::length = NUMBER_OF_TYPES;
Line 112 
Line 106 
 { {
     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 126 
Line 120 
             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 170 
Line 164 
  
  void StatisticalData::setCopyGSD(Boolean flag)  void StatisticalData::setCopyGSD(Boolean flag)
 { {
   
         copyGSD = flag;         copyGSD = flag;
 } }
  


Legend:
Removed from v.1.15  
changed lines
  Added in v.1.21

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2