X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=plugins%2Fmenu%2Ftimed_menu.c;h=83ae5aa87f7aa720de6ddc5a7d655f64800f329c;hb=a9567a816385f8f66ed0f827bb4af78cdb10cd6d;hp=db642fc173152b8d486904d702188a62120c71ab;hpb=b52b5a6fc0f57bf27ba885b85fdd63a9419f4383;p=chaz%2Fopenbox diff --git a/plugins/menu/timed_menu.c b/plugins/menu/timed_menu.c index db642fc1..83ae5aa8 100644 --- a/plugins/menu/timed_menu.c +++ b/plugins/menu/timed_menu.c @@ -1,3 +1,35 @@ +/* + * $Header$ + * + * Timed menu plugin + * Provides a menu from either a periodically executing process or by + * periodically checking the timestamp of a file and loading if it has changed. + * + * Examples: + * Piped timed menu: + * rc3: + * + * timeout is in seconds + * + * Output of command: + * + * + * + * + * bsetbg "/home/woodblock/.openbox/backgrounds/GLOVE.png" + * + * + * + * + * + * stat() menu: + * + * stat_menu contents: same as timed menu + * + */ + #include #include #include @@ -27,7 +59,7 @@ typedef enum { typedef struct { Timed_Menu_Type type; ObTimer *timer; - char *command; /* for the PIPE */ + char *command; /* command to run or file to stat() */ char *buf; /* buffer to hold partially read menu */ unsigned long buflen; /* how many bytes are in the buffer */ int fd; /* file descriptor to read menu from */ @@ -43,7 +75,6 @@ void plugin_shutdown() { } void timed_menu_clean_up(ObMenu *m) { if (TIMED_MENU_DATA(m)->buf != NULL) { - fprintf(stderr, "%s", TIMED_MENU_DATA(m)->buf); g_free(TIMED_MENU_DATA(m)->buf); TIMED_MENU_DATA(m)->buf = NULL; } @@ -60,8 +91,6 @@ void timed_menu_clean_up(ObMenu *m) { waitpid(TIMED_MENU_DATA(m)->pid, NULL, 0); TIMED_MENU_DATA(m)->pid = -1; } - - TIMED_MENU_DATA(m)->mtime = 0; } void timed_menu_read_pipe(int fd, void *d) @@ -96,20 +125,23 @@ void timed_menu_read_pipe(int fd, void *d) TIMED_MENU_DATA(menu)->buf + TIMED_MENU_DATA(menu)->buflen, num_realloc); if (num_read == 0) { - menu->invalid = TRUE; + ObParseInst *i; + xmlDocPtr doc; + xmlNodePtr node; + + menu->invalid = TRUE; menu_clear(menu); TIMED_MENU_DATA(menu)->buf[TIMED_MENU_DATA(menu)->buflen] = '\0'; - xmlDocPtr doc = xmlParseMemory(TIMED_MENU_DATA(menu)->buf, - TIMED_MENU_DATA(menu)->buflen); + i = parse_startup(); - xmlNodePtr node = xmlDocGetRootElement(doc); + if (parse_load_mem(TIMED_MENU_DATA(menu)->buf, + TIMED_MENU_DATA(menu)->buflen, + "timed_menu", &doc, &node)) + parse_menu_full(i, doc, node, menu, FALSE); - if (!xmlStrcasecmp(node->name, (const xmlChar*) "timed_menu")) { - if ((node = parse_find_node("item", node->xmlChildrenNode))) - parse_menu_full(doc, node, menu, FALSE); - } + parse_shutdown(i); timed_menu_clean_up(menu); } else if (num_read > 0) { @@ -121,7 +153,7 @@ void timed_menu_read_pipe(int fd, void *d) } } -void timed_menu_timeout_handler(void *d) +void timed_menu_timeout_handler(ObTimer *t, void *d) { ObMenu *data = d; if (!data->shown && TIMED_MENU_DATA(data)->fd == -1) { @@ -173,9 +205,25 @@ void timed_menu_timeout_handler(void *d) } if (stat_buf.st_mtime > TIMED_MENU_DATA(data)->mtime) { + ObParseInst *i; + xmlDocPtr doc; + xmlNodePtr node; + g_warning("file changed"); TIMED_MENU_DATA(data)->mtime = stat_buf.st_mtime; - /* TODO: parse */ + + data->invalid = TRUE; + menu_clear(data); + + i = parse_startup(); + + if (parse_load(TIMED_MENU_DATA(data)->command, + "timed_menu", &doc, &node)) + parse_menu_full(i, doc, node, data, FALSE); + + parse_shutdown(i); + + timed_menu_clean_up(data); } } } @@ -187,6 +235,8 @@ void *plugin_create(PluginMenuCreateData *data) char *id; char *label; char *timeout; + char *type; + Timed_Menu_Data *d; ObMenu *m; @@ -206,9 +256,19 @@ void *plugin_create(PluginMenuCreateData *data) (label != NULL ? label : ""), m)); - if (!parse_attr_string("command", data->node, &d->command)) { - d->command = g_strdup(""); - } + d->type = TIMED_MENU_PIPE; + + if (parse_attr_string("type", data->node, &type) && + !g_strcasecmp(type, "stat")) { + d->type = TIMED_MENU_STAT; + + if (!parse_attr_string("file", data->node, &d->command)) { + d->command = g_strdup(""); + } + } else + if (!parse_attr_string("command", data->node, &d->command)) { + d->command = g_strdup(""); + } if (parse_attr_string("timeout", data->node, &timeout)) { char *endptr; @@ -219,7 +279,6 @@ void *plugin_create(PluginMenuCreateData *data) } else d->timer = timer_start(600 * 1000000, &timed_menu_timeout_handler, m); - d->type = TIMED_MENU_PIPE; d->buf = NULL; d->buflen = 0; d->fd = -1; @@ -228,7 +287,7 @@ void *plugin_create(PluginMenuCreateData *data) m->plugin_data = (void *)d; - timed_menu_timeout_handler(m); + timed_menu_timeout_handler(NULL, m); return (void *)m; }