X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fprint_time.c;h=5133c5108b9ffded80b7a1050d8038f8c5c1b18a;hb=0e4fd9ad4a4cc7d6c770134a077e91b02f6cd2f0;hp=9fa6642c600644e66bd2781153d4cf837a9f14df;hpb=dcd0518e25d7aa84a720780cb70b3f8fca867972;p=i3%2Fi3status diff --git a/src/print_time.c b/src/print_time.c index 9fa6642..5133c51 100644 --- a/src/print_time.c +++ b/src/print_time.c @@ -1,8 +1,10 @@ // vim:ts=4:sw=4:expandtab +#include #include #include #include #include +#include #include #include @@ -28,23 +30,37 @@ void set_timezone(const char *tz) { } else { unsetenv("TZ"); } - tzset(); current_timezone = tz; } + tzset(); } -void print_time(yajl_gen json_gen, char *buffer, const char *title, const char *format, const char *tz, const char *format_time, time_t t) { +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, bool hide_if_equals_localtime, time_t t) { const char *walk; char *outwalk = buffer; - struct tm tm; + struct tm local_tm, tm; char timebuf[1024]; if (title != NULL) INSTANCE(title); + set_timezone(NULL); + localtime_r(&t, &local_tm); + set_timezone(tz); localtime_r(&t, &tm); + // When hide_if_equals_localtime is true, compare local and target time to display only if different + time_t local_t = mktime(&local_tm); + double diff = difftime(local_t, t); + if (hide_if_equals_localtime && diff == 0.0) { + goto out; + } + + if (locale != NULL) { + setlocale(LC_ALL, locale); + } + if (format_time == NULL) { strftime(timebuf, sizeof(timebuf), format, &tm); maybe_escape_markup(timebuf, &outwalk); @@ -52,17 +68,23 @@ void print_time(yajl_gen json_gen, char *buffer, const char *title, const char * for (walk = format; *walk != '\0'; walk++) { if (*walk != '%') { *(outwalk++) = *walk; - continue; - } - if (BEGINS_WITH(walk + 1, "time")) { + } else if (BEGINS_WITH(walk + 1, "time")) { strftime(timebuf, sizeof(timebuf), format_time, &tm); maybe_escape_markup(timebuf, &outwalk); walk += strlen("time"); + + } else { + *(outwalk++) = '%'; } } } + if (locale != NULL) { + setlocale(LC_ALL, ""); + } + +out: *outwalk = '\0'; OUTPUT_FULL_TEXT(buffer); }