-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.hpp
58 lines (46 loc) · 1.42 KB
/
timer.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
#pragma once
#include <list.hpp>
#include <thread.hpp>
#include "system_ext.hpp"
namespace System {
class Timer {
public:
typedef struct {
void* type;
void (*fun)(void*);
uint16_t cycle;
uint16_t count;
bool running;
} ControlBlock;
typedef System::List<ControlBlock>::Node* TimerHandle;
Timer();
static bool Refresh(ControlBlock& block, void* arg);
template <typename FunType, typename ArgType>
static TimerHandle Create(FunType fun, ArgType arg, uint32_t cycle) {
(void)static_cast<void (*)(ArgType)>(fun);
TypeErasure<void, ArgType>* type = static_cast<TypeErasure<void, ArgType>*>(
malloc(sizeof(TypeErasure<void, ArgType>)));
*type = TypeErasure<void, ArgType>(fun, arg);
auto block = new System::List<ControlBlock>::Node;
block->data_.count = 0;
block->data_.cycle = cycle;
block->data_.fun = type->Port;
block->data_.type = type;
block->data_.running = true;
self_->list_.Add(*block);
return block;
}
static void Delete(TimerHandle& handle) {
self_->list_.Delete(*handle);
delete (handle);
}
static void Start(TimerHandle& handle) { handle->data_.running = true; }
static void Stop(TimerHandle& handle) { handle->data_.running = false; }
static void SetCycle(TimerHandle& timer, uint32_t cycle) {
timer->data_.cycle = cycle;
}
static Timer* self_;
List<ControlBlock> list_;
Thread thread_;
};
} // namespace System