SWITimeStamp.cpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:3k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #include "SWIutilInternal.h"
  23. #include "SWITimeStamp.hpp"
  24. #ifdef _WIN32
  25. #include <sys/timeb.h>
  26. #else
  27. #include <sys/time.h>
  28. #endif
  29. SWITimeStamp::SWITimeStamp():_secs(0),_msecs(0),_addedDelay(0)
  30. {}
  31. SWITimeStamp::~SWITimeStamp()
  32. {}
  33. time_t
  34. SWITimeStamp::getSecs() const
  35. {
  36.   return _secs;
  37. }
  38. unsigned short
  39. SWITimeStamp::getMsecs() const
  40. {
  41.   return _msecs;
  42. }
  43. void
  44. SWITimeStamp::reset()
  45. {
  46.   _secs = 0;
  47.   _msecs = 0;
  48.   _addedDelay = 0;
  49. }
  50. /**
  51.  * Assigns the current system time to this timestamp.
  52.  **/
  53. void SWITimeStamp::setTimeStamp()
  54. {
  55. #ifdef _WIN32
  56.   struct _timeb now;
  57.   _ftime(&now);
  58.   _secs = now.time;
  59.   _msecs = now.millitm;
  60. #else
  61.   struct timeval now;
  62.   gettimeofday(&now, NULL);
  63.   _secs = now.tv_sec;
  64.   _msecs = now.tv_usec / 1000;
  65. #endif
  66. }
  67. /**
  68.  * Reset the timestamp to current system time then add the
  69.  * delay that previously set by addDelay()
  70.  **/
  71. void SWITimeStamp::resetTimeStamp(void)
  72. {
  73.   setTimeStamp();
  74.   if( _addedDelay > 0 ) addDelay(_addedDelay);
  75. }
  76. /**
  77.  * Adds this number of milliseconds to the current timestamp.
  78.  **/
  79. void SWITimeStamp::addDelay(unsigned long msecs)
  80. {
  81.   _addedDelay = msecs;
  82.   _secs += (time_t) msecs / 1000;
  83.   _msecs += (unsigned short) (msecs % 1000);
  84.   if (_msecs >= 1000)
  85.   {
  86.     _msecs -= 1000;
  87.     _secs++;
  88.   }
  89. }
  90. /**
  91.  * return milliseconds value of the previously call to addDelay()
  92.  **/
  93. unsigned long SWITimeStamp::getAddedDelay(void)
  94. {
  95.   return _addedDelay;
  96. }
  97. /**
  98.  * Returns the number of milliseconds between this timestamp and the
  99.  * timestamp passed as an argument.
  100.  */
  101. long SWITimeStamp::delta(const SWITimeStamp& timestamp) const
  102. {
  103.   long result = (_secs - timestamp._secs) * 1000;
  104.   result += (_msecs - timestamp._msecs);
  105.   return result;
  106. }
  107. int SWITimeStamp::compare(const SWITimeStamp& timestamp) const
  108. {
  109.   if (_secs < timestamp._secs)
  110.     return -1;
  111.   if (_secs > timestamp._secs)
  112.     return 1;
  113.   if (_msecs < timestamp._msecs)
  114.     return -1;
  115.   if (_msecs > timestamp._msecs)
  116.     return 1;
  117.   return 0;
  118. }