1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
/**
* @file new_sim_timer_thread.h
*
* The file includes a class for starting a timer in a thread:\n
* NewSimulatorTimerThread
*
* @author Lars Wetzel <larswetzel@users.sourceforge.net>
* @version 0.1
* @date 2010
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This
* file and program are licensed under a BSD style license. See
* the Copying file included with the OpenHPI distribution for
* full licensing terms.
*
*/
#ifndef __NEW_SIM_TIMER_THREAD_H__
#define __NEW_SIM_TIMER_THREAD_H__
#ifndef __NEW_SIM_UTILS_H__
#include "new_sim_utils.h"
#endif
#ifndef __THREAD_H__
#include "thread.h"
#endif
class NewSimulatorWatchdog;
class NewSimulatorHotSwap;
class NewSimulatorTimerThread;
/// us for which the timer will sleep
#define THREAD_SLEEPTIME 10000
/**
* @class NewSimulatorTimerThread
*
* Starts a thread in which a timer will trigger a function after expiration.
**/
class NewSimulatorTimerThread : public cThread {
private:
/// Timeout in ms
unsigned int m_timeout;
/// Start time of timer
cTime m_start;
protected:
virtual void *Run();
/// Flag if a thread is already running
bool m_running;
/// Abstract method which is called after the timre expires
virtual bool TriggerAction() = 0;
public:
/// signal thread to exit
bool m_exit;
NewSimulatorTimerThread( unsigned int ms_timeout );
virtual ~NewSimulatorTimerThread();
void Stop();
unsigned int Reset( unsigned int new_timeout );
};
#endif
|