aboutsummaryrefslogtreecommitdiffstats
path: root/include/swaybar
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-13 16:04:37 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-15 00:26:27 +1000
commit4056c09e13c1aeead6dd4085fc7e263a17a0b195 (patch)
treea3413f2a5717968e370d68521b689580d5adc5a0 /include/swaybar
parentDocument `border csd` (diff)
downloadsway-4056c09e13c1aeead6dd4085fc7e263a17a0b195.tar.gz
sway-4056c09e13c1aeead6dd4085fc7e263a17a0b195.tar.zst
sway-4056c09e13c1aeead6dd4085fc7e263a17a0b195.zip
Move swaybar's event loop to common directory and refactor
* The loop functions are now prefixed with `loop_`. * It is now easy to add timers to the loop. * Timers are implemented using pollfd and timerfd, rather than manually checking them when any other event happens to arrive.
Diffstat (limited to 'include/swaybar')
-rw-r--r--include/swaybar/bar.h5
-rw-r--r--include/swaybar/event_loop.h26
-rw-r--r--include/swaybar/status_line.h2
3 files changed, 7 insertions, 26 deletions
diff --git a/include/swaybar/bar.h b/include/swaybar/bar.h
index 9ff3fe7b..d61da5dc 100644
--- a/include/swaybar/bar.h
+++ b/include/swaybar/bar.h
@@ -8,6 +8,8 @@
8struct swaybar_config; 8struct swaybar_config;
9struct swaybar_output; 9struct swaybar_output;
10struct swaybar_workspace; 10struct swaybar_workspace;
11struct loop;
12struct loop_event;
11 13
12struct swaybar_pointer { 14struct swaybar_pointer {
13 struct wl_pointer *pointer; 15 struct wl_pointer *pointer;
@@ -66,6 +68,9 @@ struct swaybar {
66 struct swaybar_pointer pointer; 68 struct swaybar_pointer pointer;
67 struct status_line *status; 69 struct status_line *status;
68 70
71 struct loop *eventloop;
72 struct loop_event *status_event;
73
69 int ipc_event_socketfd; 74 int ipc_event_socketfd;
70 int ipc_socketfd; 75 int ipc_socketfd;
71 76
diff --git a/include/swaybar/event_loop.h b/include/swaybar/event_loop.h
deleted file mode 100644
index 47be5b79..00000000
--- a/include/swaybar/event_loop.h
+++ /dev/null
@@ -1,26 +0,0 @@
1#ifndef _SWAYBAR_EVENT_LOOP_H
2#define _SWAYBAR_EVENT_LOOP_H
3#include <stdbool.h>
4#include <time.h>
5
6void add_event(int fd, short mask,
7 void(*cb)(int fd, short mask, void *data),
8 void *data);
9
10// Not guaranteed to notify cb immediately
11void add_timer(timer_t timer,
12 void(*cb)(timer_t timer, void *data),
13 void *data);
14
15// Returns false if nothing exists, true otherwise
16bool remove_event(int fd);
17
18// Returns false if nothing exists, true otherwise
19bool remove_timer(timer_t timer);
20
21// Blocks and returns after sending callbacks
22void event_loop_poll(void);
23
24void init_event_loop(void);
25
26#endif
diff --git a/include/swaybar/status_line.h b/include/swaybar/status_line.h
index 5e7e8771..957a808e 100644
--- a/include/swaybar/status_line.h
+++ b/include/swaybar/status_line.h
@@ -14,6 +14,8 @@ enum status_protocol {
14}; 14};
15 15
16struct status_line { 16struct status_line {
17 struct swaybar *bar;
18
17 pid_t pid; 19 pid_t pid;
18 int read_fd, write_fd; 20 int read_fd, write_fd;
19 FILE *read, *write; 21 FILE *read, *write;