X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fprint_time.c;h=c124e1a7223624366ab2f4acce716eb967175ef4;hb=ac6c2a7d46603202be3a4f4d677f0be274d15e23;hp=c70a09c7a830f68f2eb5371e650d12128ca9328c;hpb=0a84bcb74aeef2efc2f5ccc1cfc674242f311cd2;p=i3%2Fi3status diff --git a/src/print_time.c b/src/print_time.c index c70a09c..c124e1a 100644 --- a/src/print_time.c +++ b/src/print_time.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include @@ -28,22 +29,60 @@ 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, 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 only_when_tz_different, 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); - /* Convert time and format output. */ + set_timezone(NULL); + localtime_r(&t, &local_tm); + set_timezone(tz); localtime_r(&t, &tm); - outwalk += strftime(outwalk, 4095, format, &tm); + + // When only_when_tz_different 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 (only_when_tz_different && diff == 0.0) { + return; + } + + 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; + + } 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, ""); + } + *outwalk = '\0'; OUTPUT_FULL_TEXT(buffer); }