blob: 41047f8651ae2b7bdd17f928170bf573cb50d058 [file] [log] [blame]
Jeff Thompson9ae4d782013-10-17 10:25:54 -07001/**
2 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
4 * See COPYING for copyright and distribution information.
5 */
6
7#include <sys/time.h>
Jeff Thompson5a6ce832013-10-18 11:54:35 -07008#include <math.h>
9#include <string.h>
10#include <stdio.h>
Jeff Thompson9ae4d782013-10-17 10:25:54 -070011#include "time.h"
12
Jeff Thompson9a8e82f2013-10-17 14:13:43 -070013ndn_MillisecondsSince1970
Jeff Thompson9ae4d782013-10-17 10:25:54 -070014ndn_getNowMilliseconds()
15{
16 struct timeval t;
17 gettimeofday(&t, 0);
18 return t.tv_sec * 1000.0 + t.tv_usec / 1000.0;
19}
Jeff Thompson5a6ce832013-10-18 11:54:35 -070020
21void
22ndn_toIsoString(ndn_MillisecondsSince1970 time, char *isoString)
23{
24 double secondsSince1970 = time / 1000.0;
25 char fractionBuffer[10];
26 sprintf(fractionBuffer, "%.06lf", fmod(secondsSince1970, 1.0));
27 const char *fraction = strchr(fractionBuffer, '.');
28 if (!fraction)
29 // Don't expect this to happen.
30 fraction = ".000000";
31
32 time_t seconds = secondsSince1970;
33 struct tm* gmt = gmtime(&seconds);
34 sprintf(isoString, "%04d%02d%02dT%02d%02d%02d%s", 1900 + gmt->tm_year, gmt->tm_mon + 1, gmt->tm_mday,
35 gmt->tm_hour, gmt->tm_min, gmt->tm_sec, fraction);
36}