X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=plugins%2Fmenu%2Ftimed_menu.c;h=38a20edc34cf7fbd35a530cf7e44c3eaa791ce31;hb=a4f023cf3a085d414a03e2d074e6eaa5258e4391;hp=844a56419f387f94a47b7a2a223a691268cc0d61;hpb=d94fba72624f88f7e0457dc4eb9a0f6b1699f23b;p=chaz%2Fopenbox diff --git a/plugins/menu/timed_menu.c b/plugins/menu/timed_menu.c index 844a5641..38a20edc 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) @@ -109,9 +138,9 @@ void timed_menu_read_pipe(int fd, void *d) node = xmlDocGetRootElement(doc); - if (!xmlStrcasecmp(node->name, (const xmlChar*) "timed_menu")) { - if ((node = parse_find_node("item", node->xmlChildrenNode))) - parse_menu_full(doc, node, menu, FALSE); + if (node && + !xmlStrcasecmp(node->name, (const xmlChar*) "timed_menu")) { + parse_menu_full(doc, node, menu, FALSE); } timed_menu_clean_up(menu); @@ -176,9 +205,25 @@ void timed_menu_timeout_handler(ObTimer *t, void *d) } if (stat_buf.st_mtime > TIMED_MENU_DATA(data)->mtime) { + 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); + + doc = xmlParseFile(TIMED_MENU_DATA(data)->command); + + node = xmlDocGetRootElement(doc); + + if (node && + !xmlStrcasecmp(node->name, (const xmlChar*) "timed_menu")) { + parse_menu_full(doc, node, data, FALSE); + } + + timed_menu_clean_up(data); } } } @@ -190,6 +235,8 @@ void *plugin_create(PluginMenuCreateData *data) char *id; char *label; char *timeout; + char *type; + Timed_Menu_Data *d; ObMenu *m; @@ -209,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; @@ -222,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;