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

xml/soap/webservice

开发平台:

Visual C++

  1. #ifndef SWITIMESTAMP_HPP
  2. #define SWITIMESTAMP_HPP
  3. /****************License************************************************
  4.  * Vocalocity OpenVXI
  5.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version 2
  9.  * of the License, or (at your option) any later version.
  10.  *  
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  20.  * registered trademarks of Vocalocity, Inc. 
  21.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  22.  * by Vocalocity.
  23.  ***********************************************************************/
  24. #include "SWIutilHeaderPrefix.h"
  25. #include <time.h>
  26. class SWIUTIL_API_CLASS SWITimeStamp
  27. {
  28.   // ................. CONSTRUCTORS, DESTRUCTOR  ............
  29.   //
  30.   // ------------------------------------------------------------
  31.   /**
  32.    * Default constructor.  The current timestamp is initialized to 0.0.
  33.    **/
  34.  public:
  35.   SWITimeStamp();
  36.   /**
  37.    * Destructor.
  38.    **/
  39.  public:
  40.   ~SWITimeStamp();
  41.   /**
  42.    * Assigns the current system time to this timestamp.
  43.    **/
  44.  public:
  45.    void setTimeStamp();
  46.   /**
  47.    * Reset the timestamp to current system time then add the
  48.    * delay that previously set by addDelay()
  49.    **/
  50.  public:  
  51.   void resetTimeStamp(void);
  52.   /**
  53.    * Adds this number of milliseconds to the current timestamp.
  54.    **/
  55.  public:
  56.   void addDelay(unsigned long msecs);  
  57.   /**
  58.    * return milliseconds value of the previously call to addDelay()
  59.    **/
  60.  public:  
  61.   unsigned long getAddedDelay(void);
  62.   /**
  63.    * Returns the number of milliseconds between this timestamp and the
  64.    * timestamp passed as an argument.
  65.    */
  66.  public:
  67.   long delta(const SWITimeStamp& timestamp) const;
  68.  public:
  69.   time_t getSecs() const;
  70.   /**
  71.    * Returns -1,0,1 depending on whether this timestamp is smaller than, equal
  72.    * to, or greater than the specified timestamp.
  73.    **/
  74.  public:
  75.   int compare(const SWITimeStamp& timestamp) const;
  76.  public:
  77.   unsigned short getMsecs() const;
  78.  public:
  79.   void reset();
  80.  private:
  81.   time_t _secs;
  82.   unsigned short _msecs;
  83.   unsigned long  _addedDelay;
  84. };
  85. #endif