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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*
** Copyright 2001 Double Precision, Inc. See COPYING for
** distribution information.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
#include <fcntl.h>
#include <unistd.h>
#include <time.h>
#include <sys/stat.h>
#include "pcp.h"
/*
** Map yyyymmdd into time_t by reverse-engineering mktime().
*/
static time_t sod(struct tm *tmptr, unsigned y, unsigned m, unsigned d)
{
struct tm mytm;
time_t tt;
/* Ok, first try */
mytm= *tmptr;
mytm.tm_year=y-1900;
mytm.tm_mon=m-1;
mytm.tm_mday=d;
mytm.tm_hour=0;
mytm.tm_min=0;
mytm.tm_sec=0;
tt=mktime(&mytm);
if (tt == (time_t)-1 ||
(tmptr=localtime(&tt)) == NULL)
return (0);
/* Do it one more time, due to timezone changes. */
mytm= *tmptr;
mytm.tm_year=y-1900;
mytm.tm_mon=m-1;
mytm.tm_mday=d;
mytm.tm_hour=0;
mytm.tm_min=0;
mytm.tm_sec=0;
tt=mktime(&mytm);
if (tt == (time_t)-1)
return (0);
return (tt);
}
int pcp_parse_ymd(unsigned y, unsigned m, unsigned d, time_t *s, time_t *e)
{
time_t tt;
struct tm *tmptr;
time(&tt);
tmptr=localtime(&tt);
if (!tmptr)
return (-1);
if ((tt=sod(tmptr, y, m, d)) == 0)
return (-1);
*s=tt;
tt += 36 * 60 * 60;
tmptr=localtime(&tt);
if (!tmptr)
return (-1);
if ((tt=sod(tmptr, tmptr->tm_year + 1900, tmptr->tm_mon+1,
tmptr->tm_mday)) == 0)
return (-1);
*e=tt;
return (0);
}
|