Jeff Thompson | 9ae4d78 | 2013-10-17 10:25:54 -0700 | [diff] [blame] | 1 | /** |
| 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 Thompson | 5a6ce83 | 2013-10-18 11:54:35 -0700 | [diff] [blame^] | 8 | #include <math.h> |
| 9 | #include <string.h> |
| 10 | #include <stdio.h> |
Jeff Thompson | 9ae4d78 | 2013-10-17 10:25:54 -0700 | [diff] [blame] | 11 | #include "time.h" |
| 12 | |
Jeff Thompson | 9a8e82f | 2013-10-17 14:13:43 -0700 | [diff] [blame] | 13 | ndn_MillisecondsSince1970 |
Jeff Thompson | 9ae4d78 | 2013-10-17 10:25:54 -0700 | [diff] [blame] | 14 | ndn_getNowMilliseconds() |
| 15 | { |
| 16 | struct timeval t; |
| 17 | gettimeofday(&t, 0); |
| 18 | return t.tv_sec * 1000.0 + t.tv_usec / 1000.0; |
| 19 | } |
Jeff Thompson | 5a6ce83 | 2013-10-18 11:54:35 -0700 | [diff] [blame^] | 20 | |
| 21 | void |
| 22 | ndn_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 | } |