X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fprint_time.c;h=c8da9d67087da12c3893504aa86178334913956a;hb=6a19709e65c6aac2085962e989f2429c539c5af5;hp=00a619636decd905bf9b9e40108c055df165bbb1;hpb=1b3aa404858b476015a2b29d0c42f7dbbed915bc;p=i3%2Fi3status diff --git a/src/print_time.c b/src/print_time.c index 00a6196..c8da9d6 100644 --- a/src/print_time.c +++ b/src/print_time.c @@ -1,18 +1,77 @@ -// vim:ts=8:expandtab +// vim:ts=4:sw=4:expandtab #include #include #include +#include +#include #include #include #include "i3status.h" -void print_time(yajl_gen json_gen, char *buffer, const char *format, struct tm *current_tm) { - char *outwalk = buffer; - if (current_tm == NULL) - return; - /* Get date & time */ - outwalk += strftime(outwalk, 4095, format, current_tm); - *outwalk = '\0'; - OUTPUT_FULL_TEXT(buffer); +static bool local_timezone_init = false; +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 = true; + } + 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 *title, const char *format, const char *tz, const char *locale, const char *format_time, time_t t) { + const char *walk; + char *outwalk = buffer; + struct tm tm; + char timebuf[1024]; + + if (title != NULL) + INSTANCE(title); + + set_timezone(tz); + localtime_r(&t, &tm); + + if (locale != NULL) { + setlocale(LC_ALL, locale); + } + + if (format_time == NULL) { + strftime(timebuf, sizeof(timebuf), format, &tm); + maybe_escape_markup(timebuf, &outwalk); + } else { + for (walk = format; *walk != '\0'; walk++) { + if (*walk != '%') { + *(outwalk++) = *walk; + continue; + } + + if (BEGINS_WITH(walk + 1, "time")) { + strftime(timebuf, sizeof(timebuf), format_time, &tm); + maybe_escape_markup(timebuf, &outwalk); + walk += strlen("time"); + } + } + } + + if (locale != NULL) { + setlocale(LC_ALL, ""); + } + + *outwalk = '\0'; + OUTPUT_FULL_TEXT(buffer); }