timer.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /**
  14.  *  @class Timer
  15.  *  @brief A timer class that can't be fooled by NTP:ing the system clock to old time
  16.  */
  17. class Timer {
  18. public:
  19.   Timer() {
  20.     m_delay = 10;
  21.   };
  22.   Timer(NDB_TICKS delay_time) {
  23.     m_delay = delay_time;
  24.   }
  25.   /**
  26.    *  Set/Get alarm time of timer
  27.    */
  28.   inline void       setDelay(NDB_TICKS delay_time) { m_delay = delay_time;  }
  29.   inline NDB_TICKS  getDelay()                     { return m_delay; }
  30.   /**
  31.    *  Start timer
  32.    */
  33.   inline void reset() { 
  34.     m_current_time = NdbTick_CurrentMillisecond();
  35.     m_alarm_time = m_current_time + m_delay;
  36.   }
  37.   
  38.   /**
  39.    *  Check for alarm
  40.    */ 
  41.   inline bool check() { return check(NdbTick_CurrentMillisecond()); }
  42.   inline bool check(NDB_TICKS check_time) {
  43.     /**
  44.      *  Standard alarm check
  45.      */
  46.     if (check_time > m_alarm_time) return true;
  47.     /**
  48.      *  Time progressing, but it is not alarm time yet
  49.      */
  50.     if (check_time >= m_current_time) return false;
  51.     /**
  52.      *  Time has moved backwards
  53.      */
  54.     reset();
  55.     return false;
  56.   }    
  57. private:
  58.   NDB_TICKS m_current_time;
  59.   NDB_TICKS m_alarm_time;
  60.   NDB_TICKS m_delay;
  61. };