trac#29: Cleanup timer on demo exit
[bertos.git] / bertos / emul / timer_qt.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \version $Id$
34  *
35  * \author Bernie Innocenti <bernie@codewiz.org>
36  *
37  * \brief Low-level timer module for Qt emulator (implementation).
38  */
39 #include <cfg/compiler.h> /* hptime.t */
40
41 // Qt headers
42 #include <QtCore/QDateTime>
43 #include <QtCore/QTimer>
44
45
46 // The user interrupt server routine
47 void timer_isr(void);
48
49
50 /**
51  * Singleton class for Qt-based hardware timer emulation.
52  */
53 class EmulTimer : public QObject
54 {
55 private:
56         Q_OBJECT;
57
58         /// System timer (counts ms since application startup)
59         QTime system_time;
60
61         /// The 1ms "hardware" tick counter.
62         QTimer timer;
63
64         /**
65          * We deliberately don't use RAII because the real hardware
66          * we're simulating needs to be initialized manually.
67          */
68         bool initialized;
69
70         /// Private ctor (singleton)
71         EmulTimer() : initialized(false) { }
72
73 public:
74         /// Return singleton instance
75         static EmulTimer &instance()
76         {
77                 static EmulTimer et;
78                 return et;
79         }
80
81         /// Start timer emulator.
82         void init()
83         {
84                 // Timer initialized twice?
85                 ASSERT(!initialized);
86
87                 // Record initial time
88                 system_time.start();
89
90                 // Activate timer interrupt
91                 connect(&timer, SIGNAL(timeout()), SLOT(timerInterrupt()));
92                 timer.start(1000 / TIMER_TICKS_PER_SEC);
93
94                 initialized = true;
95         }
96
97         void cleanup()
98         {
99                 // Timer cleaned twice?
100                 ASSERT(initialized);
101
102                 timer.stop();
103                 timer.disconnect();
104
105                 initialized = false;
106         }
107
108         /// Return current time in high-precision format.
109         hptime_t hpread()
110         {
111                 ASSERT(initialized);
112                 return system_time.elapsed();
113         }
114
115 public slots:
116         void timerInterrupt(void)
117         {
118                 // Just call user interrupt server, timer restarts automatically.
119                 timer_isr();
120         }
121
122 };
123
124 #include "timer_qt_moc.cpp"
125
126
127 /// HW dependent timer initialization.
128 static void timer_hw_init(void)
129 {
130         EmulTimer::instance().init();
131 }
132
133 static void timer_hw_cleanup(void)
134 {
135         EmulTimer::instance().cleanup();
136 }
137
138 INLINE hptime_t timer_hw_hpread(void)
139 {
140         return EmulTimer::instance().hpread();
141 }
142
143 /** Not needed, timer IRQ handler called only for timer source */
144 #define timer_hw_triggered() (true)