2014-05-29 17:06:43 +02:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* Resource for gmtime (utc) / localtime handling
|
|
|
|
* \author
|
|
|
|
* Ralf Schlatterbeck <rsc@runtux.com>
|
|
|
|
*
|
|
|
|
* \brief get time as a string in utc or localtime
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "contiki.h"
|
|
|
|
#include "time.h"
|
|
|
|
#include "time_resource.h"
|
|
|
|
#include "jsonparse.h"
|
2014-12-29 08:16:47 +01:00
|
|
|
#include "er-coap.h"
|
2014-06-27 22:25:51 +02:00
|
|
|
#include "generic_resource.h"
|
2014-05-29 17:06:43 +02:00
|
|
|
|
2014-06-27 22:25:51 +02:00
|
|
|
size_t time_to_string (const char *name, uint8_t is_json, char *buf, size_t bs)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
struct tm tm;
|
|
|
|
struct tm *(*method)(const time_t *, struct tm *) = gmtime_r;
|
|
|
|
if (0 == strcmp (name, "localtime")) {
|
|
|
|
method = localtime_r;
|
|
|
|
}
|
|
|
|
gettimeofday (&tv, NULL);
|
|
|
|
method (&tv.tv_sec, &tm);
|
|
|
|
return snprintf
|
|
|
|
( buf
|
|
|
|
, bs
|
|
|
|
, "%s%lu-%02u-%02u %02u:%02u:%02u%s"
|
|
|
|
, is_json ? "\"" : ""
|
|
|
|
, 1900 + tm.tm_year
|
|
|
|
, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec
|
|
|
|
, is_json ? "\"" : ""
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
GENERIC_RESOURCE \
|
2014-05-29 17:06:43 +02:00
|
|
|
( localtime
|
2014-06-27 22:25:51 +02:00
|
|
|
, Local time
|
|
|
|
, formatted time
|
|
|
|
, NULL
|
|
|
|
, time_to_string
|
2014-05-29 17:06:43 +02:00
|
|
|
);
|
|
|
|
|
2014-06-27 22:25:51 +02:00
|
|
|
GENERIC_RESOURCE \
|
|
|
|
( utc
|
|
|
|
, UTC
|
|
|
|
, formatted time
|
|
|
|
, NULL
|
|
|
|
, time_to_string
|
2014-05-29 17:06:43 +02:00
|
|
|
);
|
|
|
|
|
2014-06-27 22:25:51 +02:00
|
|
|
/*
|
|
|
|
* VI settings, see coding style
|
|
|
|
* ex:ts=8:et:sw=2
|
|
|
|
*/
|
2014-05-29 17:06:43 +02:00
|
|
|
|