-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathTimerComponent.hpp
89 lines (75 loc) · 2.56 KB
/
TimerComponent.hpp
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#ifndef ORO_TIMER_COMPONENT_HPP
#define ORO_TIMER_COMPONENT_HPP
#include <rtt/os/TimeService.hpp>
#include <rtt/TaskContext.hpp>
#include <rtt/os/Timer.hpp>
#include <rtt/OutputPort.hpp>
#include <rtt/RTT.hpp>
#include <ocl/OCL.hpp>
namespace OCL
{
/**
* @brief A Component interface to the Real-Time types::Toolkit's timer.
* It must be configured with a Activity which will emit
* the timeout event of this component.
*
*/
class TimerComponent
: public RTT::TaskContext
{
protected:
/**
* Helper class for catching the virtual timeout function of Timer.
*/
struct TimeoutCatcher : public os::Timer {
RTT::OutputPort<RTT::os::Timer::TimerId>& me;
std::vector<RTT::OutputPort<RTT::os::Timer::TimerId>* >& m_port_timers;
TimeoutCatcher(std::vector<RTT::OutputPort<RTT::os::Timer::TimerId>* >& port_timers, RTT::OutputPort<RTT::os::Timer::TimerId>& op, const std::string& name) :
os::Timer(port_timers.size(), ORO_SCHED_RT, os::HighestPriority, name + ".Timer"),
me(op),
m_port_timers(port_timers)
{}
virtual void timeout(os::Timer::TimerId id) {
m_port_timers[id]->write(id);
me.write(id);
}
};
std::vector<OutputPort<RTT::os::Timer::TimerId>* > port_timers;
OutputPort<RTT::os::Timer::TimerId> mtimeoutEvent;
TimeoutCatcher mtimer;
/**
* This hook will check if a Activity has been properly
* setup.
*/
bool startHook();
void updateHook();
void stopHook();
/**
* Command: wait until a timer expires.
*/
RTT::Operation<bool(RTT::os::Timer::TimerId)> waitForCommand;
/**
* Command: arm and wait until a timer expires.
*/
RTT::Operation<bool(RTT::os::Timer::TimerId, double)> waitCommand;
/**
* Command Implementation: wait until a timer expires.
*/
bool waitFor(RTT::os::Timer::TimerId id);
/**
* Command Implementation: \b arm and wait until a timer expires.
*/
bool wait(RTT::os::Timer::TimerId id, double seconds);
/**
* Command Condition: return true if \a id expired.
*/
bool isTimerExpired(RTT::os::Timer::TimerId id) const;
public:
/**
* Set up a component for timing events.
*/
TimerComponent( std::string name = "os::Timer" );
virtual ~TimerComponent();
};
}
#endif