2015-03-16 09:00:32 +00:00
|
|
|
// vim:ts=4:sw=4:expandtab
|
2019-01-23 07:56:40 +00:00
|
|
|
#include <config.h>
|
2009-10-11 20:11:09 +00:00
|
|
|
#include <time.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2013-02-10 16:21:46 +00:00
|
|
|
#include <stdbool.h>
|
2016-10-24 06:43:04 +00:00
|
|
|
#include <locale.h>
|
2012-03-25 18:55:55 +00:00
|
|
|
#include <yajl/yajl_gen.h>
|
2012-04-08 12:05:47 +00:00
|
|
|
#include <yajl/yajl_version.h>
|
2009-10-11 20:11:09 +00:00
|
|
|
|
2012-02-16 23:29:29 +00:00
|
|
|
#include "i3status.h"
|
|
|
|
|
2020-03-31 14:13:24 +00:00
|
|
|
#define STRING_SIZE 50
|
|
|
|
|
2013-02-10 16:21:46 +00:00
|
|
|
static bool local_timezone_init = false;
|
2013-01-13 13:18:38 +00:00
|
|
|
static const char *local_timezone = NULL;
|
|
|
|
static const char *current_timezone = NULL;
|
|
|
|
|
2013-02-10 16:19:56 +00:00
|
|
|
void set_timezone(const char *tz) {
|
2015-03-16 09:00:32 +00:00
|
|
|
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");
|
2013-01-13 13:18:38 +00:00
|
|
|
}
|
2015-03-16 09:00:32 +00:00
|
|
|
current_timezone = tz;
|
|
|
|
}
|
2017-12-09 14:48:18 +00:00
|
|
|
tzset();
|
2013-01-13 13:18:38 +00:00
|
|
|
}
|
|
|
|
|
2021-11-02 20:45:31 +00:00
|
|
|
void print_time(time_ctx_t *ctx) {
|
|
|
|
char *outwalk = ctx->buf;
|
2018-11-10 09:47:05 +00:00
|
|
|
struct tm local_tm, tm;
|
2013-01-13 13:18:38 +00:00
|
|
|
|
2021-11-02 20:45:31 +00:00
|
|
|
if (ctx->title != NULL)
|
|
|
|
INSTANCE(ctx->title);
|
2015-03-23 20:42:52 +00:00
|
|
|
|
2018-11-10 09:47:05 +00:00
|
|
|
set_timezone(NULL);
|
2021-11-02 20:45:31 +00:00
|
|
|
localtime_r(&ctx->t, &local_tm);
|
2018-11-10 09:47:05 +00:00
|
|
|
|
2021-11-02 20:45:31 +00:00
|
|
|
set_timezone(ctx->tz);
|
|
|
|
localtime_r(&ctx->t, &tm);
|
2015-10-05 08:10:01 +00:00
|
|
|
|
2018-11-15 21:27:23 +00:00
|
|
|
// When hide_if_equals_localtime is true, compare local and target time to display only if different
|
2018-11-10 09:47:05 +00:00
|
|
|
time_t local_t = mktime(&local_tm);
|
2021-11-02 20:45:31 +00:00
|
|
|
double diff = difftime(local_t, ctx->t);
|
|
|
|
if (ctx->hide_if_equals_localtime && diff == 0.0) {
|
2018-11-15 21:27:23 +00:00
|
|
|
goto out;
|
2018-11-10 09:47:05 +00:00
|
|
|
}
|
|
|
|
|
2021-11-02 20:45:31 +00:00
|
|
|
if (ctx->locale != NULL) {
|
|
|
|
setlocale(LC_ALL, ctx->locale);
|
2016-10-24 06:43:04 +00:00
|
|
|
}
|
|
|
|
|
2020-03-31 14:13:24 +00:00
|
|
|
char string_time[STRING_SIZE];
|
|
|
|
|
2021-11-02 20:45:31 +00:00
|
|
|
if (ctx->format_time == NULL) {
|
|
|
|
outwalk += strftime(ctx->buf, 4096, ctx->format, &tm);
|
2015-10-05 08:10:01 +00:00
|
|
|
} else {
|
2021-11-02 20:45:31 +00:00
|
|
|
strftime(string_time, sizeof(string_time), ctx->format_time, &tm);
|
2020-03-31 14:13:24 +00:00
|
|
|
placeholder_t placeholders[] = {
|
|
|
|
{.name = "%time", .value = string_time}};
|
2015-10-05 08:10:01 +00:00
|
|
|
|
2020-03-31 14:13:24 +00:00
|
|
|
const size_t num = sizeof(placeholders) / sizeof(placeholder_t);
|
2021-11-02 20:45:31 +00:00
|
|
|
char *formatted = format_placeholders(ctx->format_time, &placeholders[0], num);
|
|
|
|
OUTPUT_FORMATTED;
|
|
|
|
free(formatted);
|
2015-10-05 08:10:01 +00:00
|
|
|
}
|
|
|
|
|
2021-11-02 20:45:31 +00:00
|
|
|
if (ctx->locale != NULL) {
|
2016-10-24 06:43:04 +00:00
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
}
|
|
|
|
|
2018-11-15 21:27:23 +00:00
|
|
|
out:
|
2015-03-16 09:00:32 +00:00
|
|
|
*outwalk = '\0';
|
2021-11-02 20:45:31 +00:00
|
|
|
OUTPUT_FULL_TEXT(ctx->buf);
|
2009-10-11 20:11:09 +00:00
|
|
|
}
|