summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-04-26 21:59:42 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-04-26 21:59:42 +0200
commit8790ecfe8b83354a5d761c8a4312b561abd2c110 (patch)
treedd32155992612630652ea493993272042e7d5328
parentb161af0475e1b0864ab7f57390a63f77698d98e1 (diff)
improves test cases
Change-Id: Ib446bddd5ff2fba39dda02cad7ede4f63f576893 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r--src/utils-upoll.c94
1 files changed, 40 insertions, 54 deletions
diff --git a/src/utils-upoll.c b/src/utils-upoll.c
index b9b8de47..03f9a08b 100644
--- a/src/utils-upoll.c
+++ b/src/utils-upoll.c
@@ -50,9 +50,9 @@ struct upollfd
struct upoll *head; /* first client watching the file descriptor */
};
+
/*
* Structure describing a upoll group
- */
struct upollgrp
{
int pollfd;
@@ -61,12 +61,14 @@ struct upollgrp
pthread_mutex_t mutex;
};
+
static struct upollgrp global = {
.pollfd = 0,
.head = NULL,
.current = NULL,
.mutex = PTHREAD_MUTEX_INITIALIZER
};
+ */
static int pollfd = 0;
static struct upollfd *head = NULL;
@@ -74,35 +76,18 @@ static struct upoll *current = NULL;
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
/*
- *
+ * Compute the events for the set of clients
*/
-static int update(struct upollfd *ufd)
+static int update_flags_locked(struct upollfd *ufd)
{
int rc;
struct upoll *u;
struct epoll_event e;
uint32_t events;
- struct upollfd **prv;
+ /* compute expected events */
events = 0;
- pthread_mutex_lock(&mutex);
u = ufd->head;
- if (u == NULL) {
- /* no more watchers */
- prv = &head;
- while(*prv) {
- if (*prv == ufd) {
- *prv = ufd->next;
- break;
- }
- prv = &(*prv)->next;
- }
- pthread_mutex_unlock(&mutex);
- epoll_ctl(pollfd, EPOLL_CTL_DEL, ufd->fd, NULL);
- free(ufd);
- return 0;
- }
- /* compute the events for the watchers */
while (u != NULL) {
if (u->read != NULL)
events |= EPOLLIN;
@@ -110,14 +95,16 @@ static int update(struct upollfd *ufd)
events |= EPOLLOUT;
u = u->next;
}
- pthread_mutex_unlock(&mutex);
if (ufd->events == events)
- return 0;
- e.events = events;
- e.data.ptr = ufd;
- rc = epoll_ctl(pollfd, EPOLL_CTL_MOD, ufd->fd, &e);
- if (rc == 0)
- ufd->events = events;
+ rc = 0;
+ else {
+ e.events = events;
+ e.data.ptr = ufd;
+ rc = epoll_ctl(pollfd, EPOLL_CTL_MOD, ufd->fd, &e);
+ if (rc == 0)
+ ufd->events = events;
+ }
+ pthread_mutex_unlock(&mutex);
return rc;
}
@@ -126,35 +113,34 @@ static int update(struct upollfd *ufd)
*/
static int update_flags(struct upollfd *ufd)
{
- int rc;
- struct upoll *u;
- struct epoll_event e;
- uint32_t events;
+ pthread_mutex_lock(&mutex);
+ return update_flags_locked(ufd);
+}
+
+/*
+ *
+ */
+static int update(struct upollfd *ufd)
+{
struct upollfd **prv;
- /* compute expected events */
- events = 0;
pthread_mutex_lock(&mutex);
- u = ufd->head;
- assert (u != NULL);
- while (u != NULL) {
- if (u->read != NULL)
- events |= EPOLLIN;
- if (u->write != NULL)
- events |= EPOLLOUT;
- u = u->next;
- }
- if (ufd->events == events)
- rc = 0;
- else {
- e.events = events;
- e.data.ptr = ufd;
- rc = epoll_ctl(pollfd, EPOLL_CTL_MOD, ufd->fd, &e);
- if (rc == 0)
- ufd->events = events;
+ if (ufd->head != NULL)
+ return update_flags_locked(ufd);
+
+ /* no more watchers */
+ prv = &head;
+ while(*prv) {
+ if (*prv == ufd) {
+ *prv = ufd->next;
+ break;
+ }
+ prv = &(*prv)->next;
}
pthread_mutex_unlock(&mutex);
- return rc;
+ epoll_ctl(pollfd, EPOLL_CTL_DEL, ufd->fd, NULL);
+ free(ufd);
+ return 0;
}
static struct upollfd *get_fd(int fd)
@@ -259,7 +245,7 @@ int upoll_on_readable(struct upoll *upoll, void (*process)(void *))
assert(upoll_is_valid(upoll));
upoll->read = process;
- return update(upoll->fd);
+ return update_flags(upoll->fd);
}
int upoll_on_writable(struct upoll *upoll, void (*process)(void *))
@@ -268,7 +254,7 @@ int upoll_on_writable(struct upoll *upoll, void (*process)(void *))
assert(upoll_is_valid(upoll));
upoll->write = process;
- return update(upoll->fd);
+ return update_flags(upoll->fd);
}
void upoll_on_hangup(struct upoll *upoll, void (*process)(void *))