1999-12-09 13:01:21 +00:00
|
|
|
/*
|
2014-12-20 22:52:39 +00:00
|
|
|
* humandate.c - convert an NTP (or the current) time to something readable
|
1999-12-09 13:01:21 +00:00
|
|
|
*/
|
2014-12-20 22:52:39 +00:00
|
|
|
#include <config.h>
|
1999-12-09 13:01:21 +00:00
|
|
|
#include <stdio.h>
|
2014-12-20 22:52:39 +00:00
|
|
|
|
1999-12-09 13:01:21 +00:00
|
|
|
#include "ntp_fp.h"
|
2001-08-29 14:35:15 +00:00
|
|
|
#include "ntp_unixtime.h" /* includes <sys/time.h> and <time.h> */
|
1999-12-09 13:01:21 +00:00
|
|
|
#include "lib_strbuf.h"
|
|
|
|
#include "ntp_stdlib.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* This is used in msyslog.c; we don't want to clutter up the log with
|
|
|
|
the year and day of the week, etc.; just the minimal date and time. */
|
|
|
|
|
2015-02-05 20:53:33 +00:00
|
|
|
const char *
|
1999-12-09 13:01:21 +00:00
|
|
|
humanlogtime(void)
|
|
|
|
{
|
2013-12-04 21:33:17 +00:00
|
|
|
char * bp;
|
|
|
|
time_t cursec;
|
|
|
|
struct tm * tm;
|
1999-12-09 13:01:21 +00:00
|
|
|
|
2013-12-04 21:33:17 +00:00
|
|
|
cursec = time(NULL);
|
2008-08-18 14:26:05 +00:00
|
|
|
tm = localtime(&cursec);
|
2004-07-20 15:01:56 +00:00
|
|
|
if (!tm)
|
|
|
|
return "-- --- --:--:--";
|
|
|
|
|
1999-12-09 13:01:21 +00:00
|
|
|
LIB_GETBUF(bp);
|
|
|
|
|
2013-12-04 21:33:17 +00:00
|
|
|
snprintf(bp, LIB_BUFLENGTH, "%2d %s %02d:%02d:%02d",
|
|
|
|
tm->tm_mday, months[tm->tm_mon],
|
|
|
|
tm->tm_hour, tm->tm_min, tm->tm_sec);
|
1999-12-09 13:01:21 +00:00
|
|
|
|
|
|
|
return bp;
|
|
|
|
}
|
2014-12-20 22:52:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* humantime() -- like humanlogtime() but without date, and with the
|
|
|
|
* time to display given as an argument.
|
|
|
|
*/
|
2015-02-05 20:53:33 +00:00
|
|
|
const char *
|
2014-12-20 22:52:39 +00:00
|
|
|
humantime(
|
|
|
|
time_t cursec
|
|
|
|
)
|
|
|
|
{
|
|
|
|
char * bp;
|
|
|
|
struct tm * tm;
|
|
|
|
|
|
|
|
tm = localtime(&cursec);
|
|
|
|
if (!tm)
|
|
|
|
return "--:--:--";
|
|
|
|
|
|
|
|
LIB_GETBUF(bp);
|
|
|
|
|
|
|
|
snprintf(bp, LIB_BUFLENGTH, "%02d:%02d:%02d",
|
|
|
|
tm->tm_hour, tm->tm_min, tm->tm_sec);
|
|
|
|
|
|
|
|
return bp;
|
|
|
|
}
|