timetick.cpp
上传用户:ets1996
上传日期:2014-09-30
资源大小:353k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  timetick.cpp  
  4.   _##
  5.   _##  SNMP++v3.2.22
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2007 Jochen Katz, Frank Fock
  8.   _##
  9.   _##  This software is based on SNMP++2.6 from Hewlett Packard:
  10.   _##  
  11.   _##    Copyright (c) 1996
  12.   _##    Hewlett-Packard Company
  13.   _##  
  14.   _##  ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  15.   _##  Permission to use, copy, modify, distribute and/or sell this software 
  16.   _##  and/or its documentation is hereby granted without fee. User agrees 
  17.   _##  to display the above copyright notice and this license notice in all 
  18.   _##  copies of the software and any documentation of the software. User 
  19.   _##  agrees to assume all liability for the use of the software; 
  20.   _##  Hewlett-Packard and Jochen Katz make no representations about the 
  21.   _##  suitability of this software for any purpose. It is provided 
  22.   _##  "AS-IS" without warranty of any kind, either express or implied. User 
  23.   _##  hereby grants a royalty-free license to any and all derivatives based
  24.   _##  upon this software code base. 
  25.   _##  
  26.   _##  Stuttgart, Germany, Wed May  2 23:22:30 CEST 2007 
  27.   _##  
  28.   _##########################################################################*/
  29. /*===================================================================
  30.   Copyright (c) 1999
  31.   Hewlett-Packard Company
  32.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  33.   Permission to use, copy, modify, distribute and/or sell this software
  34.   and/or its documentation is hereby granted without fee. User agrees
  35.   to display the above copyright notice and this license notice in all
  36.   copies of the software and any documentation of the software. User
  37.   agrees to assume all liability for the use of the software; Hewlett-Packard
  38.   makes no representations about the suitability of this software for any
  39.   purpose. It is provided "AS-IS" without warranty of any kind,either express
  40.   or implied. User hereby grants a royalty-free license to any and all
  41.   derivatives based upon this software code base.
  42.   T I M E T I C K. C P P
  43.   TIMETICK CLASS IMPLEMENTATION
  44.   DESIGN + AUTHOR:
  45.   Peter E Mellquist
  46.   LANGUAGE:
  47.   ANSI C++
  48.   OPERATING SYSTEMS:
  49.   MS-Windows Win32
  50.   BSD UNIX
  51.   DESCRIPTION:
  52.   Class implentation for SMI Timeticks class.
  53. =====================================================================*/
  54. char timetick_cpp_version[]="#(@) SNMP++ $Id: timetick.cpp 128 2005-01-19 22:22:17Z katz $";
  55. #include "snmp_pp/timetick.h"        // include header file for timetick class
  56. #include <stdio.h>        // for sprintf() usage.
  57. #ifdef SNMP_PP_NAMESPACE
  58. namespace Snmp_pp {
  59. #endif
  60. // Copy constructor
  61. TimeTicks::TimeTicks(const TimeTicks &t)
  62. {
  63.   smival.value.uNumber = t.smival.value.uNumber;
  64.   smival.syntax = sNMP_SYNTAX_TIMETICKS;
  65. }
  66. // general assignment from any Value
  67. SnmpSyntax& TimeTicks::operator=(const SnmpSyntax &in_val)
  68. {
  69.   if (this == &in_val) return *this; // handle assignement from itself
  70.   valid_flag = false;           // will get set true if really valid
  71.   if (in_val.valid())
  72.   {
  73.     switch (in_val.get_syntax())
  74.     {
  75.       case sNMP_SYNTAX_UINT32:
  76.    // case sNMP_SYNTAX_GAUGE32:   .. indistinquishable from UINT32
  77.       case sNMP_SYNTAX_CNTR32:
  78.       case sNMP_SYNTAX_TIMETICKS:
  79.       case sNMP_SYNTAX_INT32: // implied cast int -> uint
  80.   smival.value.uNumber =
  81. ((TimeTicks &)in_val).smival.value.uNumber;
  82.      valid_flag = true;
  83.   break;
  84.     }
  85.   }
  86.   m_changed = true;
  87.   return *this;
  88. }
  89. // ASCII format return
  90. const char *TimeTicks::get_printable() const
  91. {
  92.   if (m_changed == false) return output_buffer;
  93.   unsigned long hseconds, seconds, minutes, hours, days;
  94.   unsigned long tt = smival.value.uNumber;
  95.   TimeTicks *nc_this = PP_CONST_CAST(TimeTicks*, this);
  96.   days = tt / 8640000;
  97.   tt %= 8640000;
  98.   hours = tt / 360000;
  99.   tt %= 360000;
  100.   minutes = tt / 6000;
  101.   tt %= 6000;
  102.   seconds = tt / 100;
  103.   tt %= 100;
  104.   hseconds = tt;
  105.   if (days == 0)
  106.     sprintf(nc_this->output_buffer, "%lu:%02lu:%02lu.%02lu",
  107.             hours, minutes, seconds, hseconds);
  108.   else if (days == 1)
  109.     sprintf(nc_this->output_buffer, "1 day %lu:%02lu:%02lu.%02lu",
  110.     hours, minutes, seconds, hseconds);
  111.   else
  112.     sprintf(nc_this->output_buffer, "%lu days, %lu:%02lu:%02lu.%02lu",
  113.     days, hours, minutes, seconds, hseconds);
  114.   nc_this->m_changed = false;
  115.   return output_buffer;
  116. }
  117. #ifdef SNMP_PP_NAMESPACE
  118. }; // end of namespace Snmp_pp
  119. #endif