-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathccntimefromdatetime.c
68 lines (65 loc) · 1.94 KB
/
ccntimefromdatetime.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* @file ccntimefromdatetime.c
*
* A little utility for converting canonical dateTime values to
* the scaled binary form used by ccn
*
* A CCNx command-line utility.
*
* Copyright (C) 2008, 2009 Palo Alto Research Center, Inc.
*
* This work is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation.
* This work is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details. You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <time.h>
#include <math.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
static int
cvt_a_date(char *s)
{
char *leftover;
char *z = "?";
struct tm tm = {0};
time_t seconds;
double fraction = 0.0;
double fulltime;
double back;
int res = 0;
intmax_t fixedscaled;
leftover = strptime(s, "%FT%T", &tm);
seconds = timegm(&tm);
if (leftover != NULL)
fraction = strtod(leftover, &z);
if (0 != strcmp(z, "Z") || seconds <= 0 ||
fraction < 0.0 || fraction >= 1.0) {
res = 1;
fprintf(stderr, "problem converting %s\n", s);
}
else {
fulltime = (((double)seconds) + fraction);
fixedscaled = (intmax_t)round(fulltime * (double)(1U << 12));
back = (double)fixedscaled / 4096.0; /* Check */
printf("%s\t%012jX\t%f\t%f\n", s, fixedscaled, fulltime, back);
}
return(res);
}
int
main(int argc, char **argv)
{
int i;
int res = 0;
for (i = 1; i < argc; i++)
res |= cvt_a_date(argv[i]);
return(res == 0 ? 0 : 1);
}