2009-10-11 20:11:09 +00:00
|
|
|
// vim:ts=8:expandtab
|
|
|
|
#include <time.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.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"
|
|
|
|
|
2013-01-13 13:18:38 +00:00
|
|
|
static int local_timezone_init = 0;
|
|
|
|
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) {
|
2013-01-13 13:18:38 +00:00
|
|
|
if (!local_timezone_init) {
|
|
|
|
/* First call, initialize. */
|
|
|
|
local_timezone = getenv("TZ");
|
|
|
|
local_timezone_init = 1;
|
|
|
|
}
|
2013-02-10 16:19:56 +00:00
|
|
|
if (tz == NULL || tz[0] == '\0') {
|
2013-01-13 13:18:38 +00:00
|
|
|
/* User wants localtime. */
|
2013-02-10 16:19:56 +00:00
|
|
|
tz = local_timezone;
|
2013-01-13 13:18:38 +00:00
|
|
|
}
|
2013-02-10 16:19:56 +00:00
|
|
|
if (tz != current_timezone) {
|
|
|
|
if (tz) {
|
|
|
|
setenv("TZ", tz, 1);
|
2013-01-13 13:18:38 +00:00
|
|
|
} else {
|
|
|
|
unsetenv("TZ");
|
|
|
|
}
|
|
|
|
tzset();
|
2013-02-10 16:19:56 +00:00
|
|
|
current_timezone = tz;
|
2013-01-13 13:18:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-10 16:19:56 +00:00
|
|
|
void print_time(yajl_gen json_gen, char *buffer, const char *format, const char *tz, time_t t) {
|
2012-03-25 18:55:55 +00:00
|
|
|
char *outwalk = buffer;
|
2013-01-13 13:18:38 +00:00
|
|
|
struct tm tm;
|
|
|
|
|
|
|
|
/* Convert time and format output. */
|
2013-02-10 16:19:56 +00:00
|
|
|
set_timezone(tz);
|
2013-01-13 13:18:38 +00:00
|
|
|
localtime_r(&t, &tm);
|
|
|
|
outwalk += strftime(outwalk, 4095, format, &tm);
|
2012-03-25 18:55:55 +00:00
|
|
|
*outwalk = '\0';
|
|
|
|
OUTPUT_FULL_TEXT(buffer);
|
2009-10-11 20:11:09 +00:00
|
|
|
}
|