Added stat() based timed menu update.
Needs parser before it is useful.
This commit is contained in:
parent
f6b61bb60e
commit
c912b634ab
1 changed files with 40 additions and 19 deletions
|
@ -4,6 +4,10 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/wait.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#include "kernel/menu.h"
|
#include "kernel/menu.h"
|
||||||
#include "kernel/timer.h"
|
#include "kernel/timer.h"
|
||||||
|
@ -16,22 +20,19 @@
|
||||||
static char *PLUGIN_NAME = "timed_menu";
|
static char *PLUGIN_NAME = "timed_menu";
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
TIMED_MENU_PIPE
|
TIMED_MENU_PIPE, /* read entries from a child process' output */
|
||||||
|
TIMED_MENU_STAT /* reread entries from file when timestamp changes */
|
||||||
} Timed_Menu_Type;
|
} Timed_Menu_Type;
|
||||||
|
|
||||||
/* we can use various GIO channels to support reading menus (can we add them to
|
|
||||||
the event loop? )
|
|
||||||
stat() based update
|
|
||||||
exec() based read
|
|
||||||
*/
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
Timed_Menu_Type type;
|
Timed_Menu_Type type;
|
||||||
Timer *timer; /* timer code handles free */
|
Timer *timer;
|
||||||
char *command; /* for the PIPE */
|
char *command; /* for the PIPE */
|
||||||
char *buf;
|
char *buf; /* buffer to hold partially read menu */
|
||||||
unsigned long buflen;
|
unsigned long buflen; /* how many bytes are in the buffer */
|
||||||
int fd;
|
int fd; /* file descriptor to read menu from */
|
||||||
pid_t pid;
|
pid_t pid; /* pid of child process in PIPE */
|
||||||
|
time_t mtime; /* time of last modification */
|
||||||
} Timed_Menu_Data;
|
} Timed_Menu_Data;
|
||||||
|
|
||||||
|
|
||||||
|
@ -59,6 +60,8 @@ void timed_menu_clean_up(Menu *m) {
|
||||||
waitpid(TIMED_MENU_DATA(m)->pid, NULL, 0);
|
waitpid(TIMED_MENU_DATA(m)->pid, NULL, 0);
|
||||||
TIMED_MENU_DATA(m)->pid = -1;
|
TIMED_MENU_DATA(m)->pid = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TIMED_MENU_DATA(m)->mtime = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void timed_menu_read_pipe(int fd, Menu *menu)
|
void timed_menu_read_pipe(int fd, Menu *menu)
|
||||||
|
@ -66,6 +69,7 @@ void timed_menu_read_pipe(int fd, Menu *menu)
|
||||||
char *tmpbuf = NULL;
|
char *tmpbuf = NULL;
|
||||||
unsigned long num_read;
|
unsigned long num_read;
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
|
/* because gdb is dumb */
|
||||||
Timed_Menu_Data *d = TIMED_MENU_DATA(menu);
|
Timed_Menu_Data *d = TIMED_MENU_DATA(menu);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -104,7 +108,6 @@ void timed_menu_read_pipe(int fd, Menu *menu)
|
||||||
(&TIMED_MENU_DATA(menu)->buf[count]));
|
(&TIMED_MENU_DATA(menu)->buf[count]));
|
||||||
count = found - TIMED_MENU_DATA(menu)->buf + 1;
|
count = found - TIMED_MENU_DATA(menu)->buf + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
TIMED_MENU_DATA(menu)->buf[TIMED_MENU_DATA(menu)->buflen] = '\0';
|
TIMED_MENU_DATA(menu)->buf[TIMED_MENU_DATA(menu)->buflen] = '\0';
|
||||||
timed_menu_clean_up(menu);
|
timed_menu_clean_up(menu);
|
||||||
|
@ -123,8 +126,7 @@ void timed_menu_timeout_handler(Menu *data)
|
||||||
|
|
||||||
if (!data->shown && TIMED_MENU_DATA(data)->fd == -1) {
|
if (!data->shown && TIMED_MENU_DATA(data)->fd == -1) {
|
||||||
switch (TIMED_MENU_DATA(data)->type) {
|
switch (TIMED_MENU_DATA(data)->type) {
|
||||||
case (TIMED_MENU_PIPE):
|
case (TIMED_MENU_PIPE): {
|
||||||
{
|
|
||||||
/* if the menu is not shown, run a process and use its output
|
/* if the menu is not shown, run a process and use its output
|
||||||
as menu */
|
as menu */
|
||||||
|
|
||||||
|
@ -132,29 +134,47 @@ void timed_menu_timeout_handler(Menu *data)
|
||||||
char *args[] = {"/bin/sh", "-c", TIMED_MENU_DATA(data)->command,
|
char *args[] = {"/bin/sh", "-c", TIMED_MENU_DATA(data)->command,
|
||||||
NULL};
|
NULL};
|
||||||
int child_stdout;
|
int child_stdout;
|
||||||
|
int child_pid;
|
||||||
if (g_spawn_async_with_pipes(
|
if (g_spawn_async_with_pipes(
|
||||||
NULL,
|
NULL,
|
||||||
args,
|
args,
|
||||||
NULL,
|
NULL,
|
||||||
G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD,
|
G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD,
|
||||||
NULL,
|
NULL,
|
||||||
&TIMED_MENU_DATA(data)->pid,
|
|
||||||
NULL,
|
NULL,
|
||||||
|
&child_pid,
|
||||||
NULL,
|
NULL,
|
||||||
&child_stdout,
|
&child_stdout,
|
||||||
NULL,
|
NULL,
|
||||||
NULL)) {
|
NULL)) {
|
||||||
event_fd_handler *h = g_new(event_fd_handler, 1);
|
event_fd_handler *h = g_new(event_fd_handler, 1);
|
||||||
TIMED_MENU_DATA(data)->fd = h->fd = child_stdout;
|
TIMED_MENU_DATA(data)->fd = h->fd = child_stdout;
|
||||||
|
TIMED_MENU_DATA(data)->pid = child_pid;
|
||||||
h->handler = timed_menu_read_pipe;
|
h->handler = timed_menu_read_pipe;
|
||||||
h->data = data;
|
h->data = data;
|
||||||
event_add_fd_handler(h);
|
event_add_fd_handler(h);
|
||||||
} else {
|
} else {
|
||||||
g_warning("unable to spawn child");
|
g_warning("unable to spawn child");
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case (TIMED_MENU_STAT): {
|
||||||
|
struct stat stat_buf;
|
||||||
|
|
||||||
|
if (stat(TIMED_MENU_DATA(data)->command, &stat_buf) == -1) {
|
||||||
|
g_warning("Unable to stat %s: %s",
|
||||||
|
TIMED_MENU_DATA(data)->command,
|
||||||
|
strerror(errno));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stat_buf.st_mtime > TIMED_MENU_DATA(data)->mtime) {
|
||||||
|
g_warning("file changed");
|
||||||
|
TIMED_MENU_DATA(data)->mtime = stat_buf.st_mtime;
|
||||||
|
/* TODO: parse */
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -166,13 +186,14 @@ void *plugin_create()
|
||||||
|
|
||||||
m->plugin = PLUGIN_NAME;
|
m->plugin = PLUGIN_NAME;
|
||||||
|
|
||||||
d->type = TIMED_MENU_PIPE;
|
d->type = TIMED_MENU_STAT;
|
||||||
d->timer = timer_start(60000000, &timed_menu_timeout_handler, m);
|
d->timer = timer_start(6000000, &timed_menu_timeout_handler, m);
|
||||||
d->command = "find /media -name *.m3u";
|
d->command = "/home/woodblock/timed_menu_stat";
|
||||||
d->buf = NULL;
|
d->buf = NULL;
|
||||||
d->buflen = 0;
|
d->buflen = 0;
|
||||||
d->fd = -1;
|
d->fd = -1;
|
||||||
d->pid = -1;
|
d->pid = -1;
|
||||||
|
d->mtime = 0;
|
||||||
|
|
||||||
m->plugin_data = (void *)d;
|
m->plugin_data = (void *)d;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue