Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / runtime / gr_timer.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2005 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22 #ifndef INCLUDED_GR_TIMER_H
23 #define INCLUDED_GR_TIMER_H
24
25 #include <gr_types.h>
26
27 class gr_timer;
28
29 typedef boost::shared_ptr<gr_timer> gr_timer_sptr;
30
31 typedef void (*gr_timer_hook)(gr_timer *, void *);
32
33 /*!
34  * \brief create a timeout.
35  *
36  * gr_timer_hook is called when timer fires.
37  */
38 gr_timer_sptr gr_make_timer (gr_timer_hook, void *);
39
40 /*!
41  * \brief implement timeouts
42  */
43 class gr_timer {
44   double        d_expiry;
45   double        d_period;
46   gr_timer_hook d_hook;
47   void         *d_hook_arg;
48
49   friend gr_timer_sptr gr_make_timer (gr_timer_hook, void *);
50
51   gr_timer (...);
52
53 public:
54   ~gr_timer ();
55
56   //! return absolute current time (seconds since the epoc).
57   static double now ();
58   
59   /*!
60    * \brief schedule timer to fire at abs_when
61    * \param abs_when    absolute time in seconds since the epoc.
62    */
63   void schedule_at (double abs_when);
64
65   /*!
66    * \brief schedule timer to fire rel_when seconds from now.
67    * \param rel_when    relative time in seconds from now.
68    */
69   void schedule_after (double rel_when);        // relative time in seconds
70
71   /*!
72    * \brief schedule a periodic timeout.
73    * \param abs_when    absolute time to fire first time
74    * \param period      time between firings
75    */
76   void schedule_periodic (double abs_when, double period);
77
78   //! cancel timer
79   void unschedule ();
80 };
81
82 #endif /* INCLUDED_GR_TIMER_H */