x11_timer.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * x11_timer.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 039f1b1bab6b499a3f1bb7d189406e17d69cf222 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef X11_TIMER_HPP
  25. #define X11_TIMER_HPP
  26. #include "../src/os_timer.hpp"
  27. #include <list>
  28. // Forward declaration
  29. class X11TimerLoop;
  30. class CmdGeneric;
  31. // X11 specific timer
  32. class X11Timer: public OSTimer
  33. {
  34.     public:
  35.         X11Timer( intf_thread_t *pIntf, CmdGeneric &rCmd );
  36.         virtual ~X11Timer();
  37.         /// (Re)start the timer with the given delay (in ms). If oneShot is
  38.         /// true, stop it after the first execution of the callback.
  39.         virtual void start( int delay, bool oneShot );
  40.         /// Stop the timer
  41.         virtual void stop();
  42.         mtime_t getNextDate() const;
  43.         /// Execute the callback.
  44.         /// Returns false if the timer must be removed after
  45.         bool execute();
  46.     private:
  47.         /// Command to execute
  48.         CmdGeneric &m_rCommand;
  49.         /// Timer loop
  50.         X11TimerLoop *m_pTimerLoop;
  51.         /// Delay between two execute
  52.         mtime_t m_interval;
  53.         /// Next date at which the timer must be executed
  54.         mtime_t m_nextDate;
  55.         /// Flag to tell if the timer must be stopped after the first execution
  56.         bool m_oneShot;
  57. };
  58. /// Class to manage a set of timers
  59. class X11TimerLoop: public SkinObject
  60. {
  61.     public:
  62.         /// Create the timer loop with the communication number of the X11
  63.         /// display
  64.         X11TimerLoop( intf_thread_t *pIntf, int connectionNumber );
  65.         virtual ~X11TimerLoop();
  66.         /// Add a timer in the manager
  67.         void addTimer( X11Timer &rTimer );
  68.         /// Remove a timer from the manager
  69.         void removeTimer( X11Timer &rTimer );
  70.         /// Wait for the next timer and execute it
  71.         void waitNextTimer();
  72.     private:
  73.         /// Connection number of the X11 display
  74.         int m_connectionNumber;
  75.         /// List of timers
  76.         list<X11Timer*> m_timers;
  77.         /// Sleep for delay milliseconds, unless an X11 event is received
  78.         /// Returns true if the sleep has been interupted.
  79.         bool sleep( int delay );
  80. };
  81. #endif