]> git.sur5r.net Git - i3/i3status/commitdiff
Allocate and expose per-instance pointers for plugins
authorAlexander Monakov <amonakov@ispras.ru>
Sun, 7 Dec 2014 20:32:19 +0000 (23:32 +0300)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 10 Dec 2014 18:58:54 +0000 (19:58 +0100)
i3status.c
include/i3status.h

index daa2d0065032139aedb780529d16ed0e79269445..7c98d06ede4ebe50d19768b6a475ceeccbd0521d 100644 (file)
@@ -56,6 +56,8 @@ static bool exit_upon_signal = false;
 
 cfg_t *cfg, *cfg_general, *cfg_section;
 
+void **cur_instance;
+
 /*
  * Set the exit_upon_signal flag, because one cannot do anything in a safe
  * manner in a signal handler (e.g. fprintf, which we really want to do for
@@ -550,6 +552,8 @@ int main(int argc, char *argv[]) {
          * (!), not individual plugins, seem very unlikely. */
         char buffer[4096];
 
+        void **per_instance = calloc(cfg_size(cfg, "order"), sizeof(*per_instance));
+
         while (1) {
                 if (exit_upon_signal) {
                         fprintf(stderr, "Exiting due to signal.\n");
@@ -563,6 +567,7 @@ int main(int argc, char *argv[]) {
                         /* Restore the cursor-position, clear line */
                         printf("\033[u\033[K");
                 for (j = 0; j < cfg_size(cfg, "order"); j++) {
+                        cur_instance = per_instance + j;
                         if (j > 0)
                                 print_separator(separator);
 
index f8f0784ceed2485420dafc5d3abc87961a75788a..ef212c83fd1a964784d8ea600025b92df9184ae7 100644 (file)
@@ -198,4 +198,6 @@ extern int general_socket;
 
 extern cfg_t *cfg, *cfg_general, *cfg_section;
 
+extern void **cur_instance;
+
 #endif