]> git.sur5r.net Git - i3/i3status/blobdiff - src/print_time.c
s/\<timezone\>/tz/ in order to not shadow the timezone var from time.h
[i3/i3status] / src / print_time.c
index 00a619636decd905bf9b9e40108c055df165bbb1..e007419314bef688ea6b74ec00e172e9dd8107c8 100644 (file)
@@ -7,12 +7,39 @@
 
 #include "i3status.h"
 
-void print_time(yajl_gen json_gen, char *buffer, const char *format, struct tm *current_tm) {
+static int local_timezone_init = 0;
+static const char *local_timezone = NULL;
+static const char *current_timezone = NULL;
+
+void set_timezone(const char *tz) {
+        if (!local_timezone_init) {
+                /* First call, initialize. */
+                local_timezone = getenv("TZ");
+                local_timezone_init = 1;
+        }
+        if (tz == NULL || tz[0] == '\0') {
+                /* User wants localtime. */
+                tz = local_timezone;
+        }
+        if (tz != current_timezone) {
+                if (tz) {
+                        setenv("TZ", tz, 1);
+                } else {
+                        unsetenv("TZ");
+                }
+                tzset();
+                current_timezone = tz;
+        }
+}
+
+void print_time(yajl_gen json_gen, char *buffer, const char *format, const char *tz, time_t t) {
         char *outwalk = buffer;
-        if (current_tm == NULL)
-                return;
-        /* Get date & time */
-        outwalk += strftime(outwalk, 4095, format, current_tm);
+        struct tm tm;
+
+        /* Convert time and format output. */
+        set_timezone(tz);
+        localtime_r(&t, &tm);
+        outwalk += strftime(outwalk, 4095, format, &tm);
         *outwalk = '\0';
         OUTPUT_FULL_TEXT(buffer);
 }