From 2a76ecfb59b3ca52ed59070e6cddade407279b6b Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 4 Apr 2009 15:26:12 +0200 Subject: Initial remote control support --- src/main.c | 41 +++++++++++++++++++++++++++++++++-------- src/settings.h | 3 +++ 2 files changed, 36 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index c1d904b..270e00f 100644 --- a/src/main.c +++ b/src/main.c @@ -29,6 +29,10 @@ THE SOFTWARE. #include #include #include +/* open () */ +#include +#include +#include /* last.fm scrobbling library */ #include @@ -53,17 +57,22 @@ THE SOFTWARE. #include "ui.h" int main (int argc, char **argv) { + /* handles */ PianoHandle_t ph; static struct audioPlayer player; BarSettings_t settings; - PianoSong_t *curSong = NULL; - PianoStation_t *curStation = NULL; - char doQuit = 0; pthread_t playerThread; WardrobeHandle_t wh; + /* currently playing */ + PianoSong_t *curSong = NULL; + PianoStation_t *curStation = NULL; WardrobeSong_t scrobbleSong; - /* needed in main loop */ - struct pollfd polls = {fileno (stdin), POLLIN, POLLIN}; + char doQuit = 0; + /* polls */ + /* FIXME: max path length? */ + char ctlPath[1024]; + struct pollfd polls[2]; + nfds_t pollsLen = 0; char buf = '\0'; BarKeyShortcut_t *curShortcut = NULL; @@ -76,9 +85,21 @@ int main (int argc, char **argv) { PianoInit (&ph); WardrobeInit (&wh); BarSettingsInit (&settings); - BarSettingsRead (&settings); + /* init polls */ + polls[0].fd = fileno (stdin); + polls[0].events = POLLIN; + ++pollsLen; + BarGetXdgConfigDir (PACKAGE "/ctl", ctlPath, sizeof (ctlPath)); + /* FIXME: O_RDONLY blocks while opening :/ */ + polls[1].fd = open (ctlPath, O_RDWR); + polls[1].events = POLLIN; + if (polls[1].fd != -1) { + ++pollsLen; + BarUiMsg (MSG_INFO, "Control fifo at %s opened\n", ctlPath); + } + if (settings.username == NULL) { BarUiMsg (MSG_QUESTION, "Username: "); settings.username = readline (NULL); @@ -219,8 +240,12 @@ int main (int argc, char **argv) { /* in the meantime: wait for user actions; * 1000ms == 1s => refresh time display every second */ - if (poll (&polls, 1, 1000) > 0) { - read (fileno (stdin), &buf, sizeof (buf)); + if (poll (polls, pollsLen, 1000) > 0) { + if (polls[0].revents & POLLIN) { + read (fileno (stdin), &buf, sizeof (buf)); + } else if (polls[1].revents & POLLIN) { + read (polls[1].fd, &buf, sizeof (buf)); + } curShortcut = settings.keys; /* don't show what the user enters here, we could disable * echoing too... */ diff --git a/src/settings.h b/src/settings.h index ef3b93f..1bea648 100644 --- a/src/settings.h +++ b/src/settings.h @@ -62,4 +62,7 @@ void BarSettingsDestroy (BarSettings_t *settings); void BarSettingsRead (BarSettings_t *settings); +void BarGetXdgConfigDir (const char *filename, char *retDir, + size_t retDirN); + #endif /* _SETTINGS_H */ -- cgit v1.2.3