mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-03 10:20:18 +00:00
implemented timer handling in run loop
This commit is contained in:
parent
7b22b9bc7d
commit
436a4afbf2
@ -89,7 +89,11 @@ void event_handler(uint8_t *packet, uint16_t size){
|
|||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void timerCB(struct timer *t){
|
||||||
|
printf("timeout test!\n");
|
||||||
|
}
|
||||||
|
|
||||||
int main (int argc, const char * argv[]){
|
int main (int argc, const char * argv[]){
|
||||||
bt_open();
|
bt_open();
|
||||||
bt_register_event_packet_handler(event_handler);
|
bt_register_event_packet_handler(event_handler);
|
||||||
|
@ -22,6 +22,7 @@ void run_loop_set_timer(timer_t *a, int timeout_in_seconds){
|
|||||||
}
|
}
|
||||||
|
|
||||||
// compare timers - NULL is assumed to be before the Big Bang
|
// compare timers - NULL is assumed to be before the Big Bang
|
||||||
|
// pre: 0 <= tv_usec < 1000000
|
||||||
int run_loop_timer_compare(timer_t *a, timer_t *b){
|
int run_loop_timer_compare(timer_t *a, timer_t *b){
|
||||||
|
|
||||||
if (!a || !b) return 0;
|
if (!a || !b) return 0;
|
||||||
@ -96,6 +97,8 @@ void run_loop_execute() {
|
|||||||
fd_set descriptors;
|
fd_set descriptors;
|
||||||
data_source_t *ds;
|
data_source_t *ds;
|
||||||
timer_t *ts;
|
timer_t *ts;
|
||||||
|
struct timeval tv;
|
||||||
|
struct timeval *timeout;
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
// collect FDs
|
// collect FDs
|
||||||
@ -111,11 +114,27 @@ void run_loop_execute() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// get next timeout
|
// get next timeout
|
||||||
// ..
|
// pre: 0 <= tv_usec < 1000000
|
||||||
|
timeout = NULL;
|
||||||
|
if (timers) {
|
||||||
|
gettimeofday(&tv, NULL);
|
||||||
|
ts = (timer_t *) timers;
|
||||||
|
tv.tv_sec -= ts->timeout.tv_sec;
|
||||||
|
tv.tv_usec -= ts->timeout.tv_usec;
|
||||||
|
if (tv.tv_usec < 0){
|
||||||
|
tv.tv_usec += 1000000;
|
||||||
|
tv.tv_sec--;
|
||||||
|
}
|
||||||
|
if (tv.tv_sec < 0){
|
||||||
|
tv.tv_sec = 0;
|
||||||
|
tv.tv_usec = 0;
|
||||||
|
}
|
||||||
|
timeout = &tv;
|
||||||
|
}
|
||||||
|
|
||||||
// wait for ready FDs
|
// wait for ready FDs
|
||||||
select( highest_fd+1 , &descriptors, NULL, NULL, NULL);
|
select( highest_fd+1 , &descriptors, NULL, NULL, timeout);
|
||||||
|
|
||||||
// process data sources
|
// process data sources
|
||||||
data_source_t *next;
|
data_source_t *next;
|
||||||
for (ds = (data_source_t *) data_sources; ds != NULL ; ds = next){
|
for (ds = (data_source_t *) data_sources; ds != NULL ; ds = next){
|
||||||
@ -126,7 +145,15 @@ void run_loop_execute() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// process timers
|
// process timers
|
||||||
// ..
|
// pre: 0 <= tv_usec < 1000000
|
||||||
|
while (timers) {
|
||||||
|
gettimeofday(&tv, NULL);
|
||||||
|
ts = (timer_t *) timers;
|
||||||
|
if (ts->timeout.tv_sec > tv.tv_sec) break;
|
||||||
|
if (ts->timeout.tv_sec == tv.tv_sec && ts->timeout.tv_usec > tv.tv_usec) break;
|
||||||
|
run_loop_remove_timer(ts);
|
||||||
|
ts->process(ts);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ typedef struct data_source {
|
|||||||
typedef struct timer {
|
typedef struct timer {
|
||||||
linked_item_t item;
|
linked_item_t item;
|
||||||
struct timeval timeout; // <-- next timeout
|
struct timeval timeout; // <-- next timeout
|
||||||
int (*process)(struct timer *ts); // <-- do processing
|
void (*process)(struct timer *ts); // <-- do processing
|
||||||
} timer_t;
|
} timer_t;
|
||||||
|
|
||||||
// set timer based on current time
|
// set timer based on current time
|
||||||
|
Loading…
x
Reference in New Issue
Block a user