mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-30 06:32:43 +00:00
141 lines
3.5 KiB
C
141 lines
3.5 KiB
C
/*
|
|
* run_loop.c
|
|
*
|
|
* Created by Matthias Ringwald on 6/6/09.
|
|
*/
|
|
|
|
#include <btstack/run_loop.h>
|
|
#include <btstack/linked_list.h>
|
|
|
|
#include <sys/select.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
// the run loop
|
|
static linked_list_t data_sources;
|
|
static linked_list_t timers;
|
|
|
|
/**
|
|
* Add data_source to run_loop
|
|
*/
|
|
void posix_add_data_source(data_source_t *ds){
|
|
linked_list_add(&data_sources, (linked_item_t *) ds);
|
|
}
|
|
|
|
/**
|
|
* Remove data_source from run loop
|
|
*/
|
|
int posix_remove_data_source(data_source_t *ds){
|
|
return linked_list_remove(&data_sources, (linked_item_t *) ds);
|
|
}
|
|
|
|
/**
|
|
* Add timer to run_loop (keep list sorted)
|
|
*/
|
|
void posix_add_timer(timer_t *ts){
|
|
linked_item_t *it;
|
|
for (it = (linked_item_t *) &timers; it ; it = it->next){
|
|
if ( run_loop_timer_compare( (timer_t *) it->next, ts) >= 0) {
|
|
ts->item.next = it->next;
|
|
it->next = (linked_item_t *) ts;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove timer from run loop
|
|
*/
|
|
int posix_remove_timer(timer_t *ts){
|
|
return linked_list_remove(&timers, (linked_item_t *) ts);
|
|
}
|
|
|
|
void posix_dump_timer(){
|
|
linked_item_t *it;
|
|
int i = 0;
|
|
for (it = (linked_item_t *) timers; it ; it = it->next){
|
|
timer_t *ts = (timer_t*) it;
|
|
printf("timer %u, timeout %u\n", i, (unsigned int) ts->timeout.tv_sec);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Execute run_loop
|
|
*/
|
|
void posix_execute() {
|
|
fd_set descriptors;
|
|
data_source_t *ds;
|
|
timer_t *ts;
|
|
struct timeval tv;
|
|
struct timeval *timeout;
|
|
|
|
while (1) {
|
|
// collect FDs
|
|
FD_ZERO(&descriptors);
|
|
int highest_fd = 0;
|
|
for (ds = (data_source_t *) data_sources; ds ; ds = (data_source_t *) ds->item.next){
|
|
if (ds->fd) {
|
|
FD_SET(ds->fd, &descriptors);
|
|
if (ds->fd > highest_fd) {
|
|
highest_fd = ds->fd;
|
|
}
|
|
}
|
|
}
|
|
|
|
// 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
|
|
select( highest_fd+1 , &descriptors, NULL, NULL, timeout);
|
|
|
|
// process data sources
|
|
data_source_t *next;
|
|
for (ds = (data_source_t *) data_sources; ds != NULL ; ds = next){
|
|
next = (data_source_t *) ds->item.next; // cache pointer to next data_source to allow data source to remove itself
|
|
if (FD_ISSET(ds->fd, &descriptors)) {
|
|
ds->process(ds);
|
|
}
|
|
}
|
|
|
|
// 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);
|
|
}
|
|
}
|
|
}
|
|
|
|
void posix_init(){
|
|
data_sources = NULL;
|
|
timers = NULL;
|
|
}
|
|
|
|
const run_loop_t run_loop_posix = {
|
|
&posix_init,
|
|
&posix_add_data_source,
|
|
&posix_remove_data_source,
|
|
&posix_add_timer,
|
|
&posix_remove_timer,
|
|
&posix_execute,
|
|
&posix_dump_timer
|
|
};
|