gauge.cpp
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:3k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*===================================================================
  2.   Copyright (c) 1999
  3.   Hewlett-Packard Company
  4.  
  5.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  6.   Permission to use, copy, modify, distribute and/or sell this software 
  7.   and/or its documentation is hereby granted without fee. User agrees 
  8.   to display the above copyright notice and this license notice in all 
  9.   copies of the software and any documentation of the software. User 
  10.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  11.   makes no representations about the suitability of this software for any 
  12.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  13.   or implied. User hereby grants a royalty-free license to any and all 
  14.   derivatives based upon this software code base. 
  15.   G A U G E. C P P
  16.   GAUGE32 CLASS IMPLEMTATION
  17.   VERSION:
  18.   2.8
  19.   DESIGN:
  20.   Peter E Mellquist
  21.   AUTHOR:
  22.   Peter E Mellquist
  23.   LANGUAGE:
  24.   ANSI C++
  25.   OPERATING SYSTEMS:
  26.   MS-Windows Win32
  27.   BSD UNIX
  28.   DESCRIPTION:
  29.   Class implemtation for SMI Gauge32 class.
  30. =====================================================================*/
  31. char gauge_cpp_version[]="@(#)SNMP++ 2.8 $Header: gauge.cpp,v 1.10 96/09/11 14:01:50 hmgr Exp $";
  32. #include "gauge.h"   // header file for gauge class
  33. // constructor, no value
  34. Gauge32::Gauge32( void):SnmpUInt32()
  35.    { smival.syntax = sNMP_SYNTAX_GAUGE32;};
  36. // constructor with a value
  37. Gauge32::Gauge32( const unsigned long i):SnmpUInt32(i)
  38.    { smival.syntax = sNMP_SYNTAX_GAUGE32;};
  39. // copy constructor
  40. Gauge32::Gauge32 ( const Gauge32 &g)
  41.    { this->smival.value.uNumber = g.smival.value.uNumber;
  42.      smival.syntax = sNMP_SYNTAX_GAUGE32;
  43.      valid_flag = 1;
  44.    };
  45. // destructor
  46. Gauge32::~Gauge32() 
  47. {};
  48. // syntax type
  49. SmiUINT32 Gauge32::get_syntax()
  50. { return sNMP_SYNTAX_GAUGE32; };
  51. // overloaded assignment
  52. Gauge32& Gauge32::operator=( const Gauge32 &uli)
  53.    { this->smival.value.uNumber = uli.smival.value.uNumber;
  54.      return *this;};
  55. // overloaded assignment
  56. Gauge32& Gauge32::operator=( const unsigned long int i)
  57.    { smival.value.uNumber=i; return *this;};
  58. // general assignment from any Value
  59. // TODO: this is broken if not inherited from UInt32 (see UInt32 code).
  60. SnmpSyntax& Gauge32::operator=( SnmpSyntax &in_val){
  61.   if ( this == &in_val ) // handle assignement from itself
  62.       return *this;
  63.   valid_flag = 0; // will get set true if really valid
  64.   if (in_val.valid())
  65.   {  
  66.     switch (in_val.get_syntax())
  67.     {
  68.       case sNMP_SYNTAX_UINT32:
  69.       case sNMP_SYNTAX_GAUGE32:  
  70.       case sNMP_SYNTAX_CNTR32:
  71.       case sNMP_SYNTAX_TIMETICKS:
  72.       case sNMP_SYNTAX_INT32: // implied cast int -> uint 
  73.   this->smival.value.uNumber = 
  74. ((Gauge32 &)in_val).smival.value.uNumber;  
  75.      valid_flag = 1;
  76.   break;
  77.     }
  78.   }
  79.   return *this;
  80. };
  81. // otherwise, act as unsigned long
  82. Gauge32::operator unsigned long()
  83. { return smival.value.uNumber; };
  84. // clone - create a new instance of this Value
  85. SnmpSyntax* Gauge32::clone() const 
  86. { return ( SnmpSyntax *) new Gauge32(*this); };