Commit | Line | Data |
---|---|---|
132a5a4a RK |
1 | /** @file lib/xgetdate.c |
2 | * @brief Date parsing | |
3 | * | |
4 | * Derived from getdate.c in glibc 2.3.6. This is pretty much | |
d436bd52 RK |
5 | * standard getdate() except that you supply the template in an |
6 | * argument, rather than messing around with environment variables and | |
132a5a4a RK |
7 | * files. |
8 | */ | |
d436bd52 RK |
9 | |
10 | /* Convert a string representation of time to a time value. | |
11 | Copyright (C) 1997,1998,1999,2000,2001,2003 Free Software Foundation, Inc. | |
12 | This file is part of the GNU C Library. | |
13 | Contributed by Mark Kettenis <kettenis@phys.uva.nl>, 1997. | |
14 | ||
15 | The GNU C Library is free software; you can redistribute it and/or | |
16 | modify it under the terms of the GNU Lesser General Public | |
17 | License as published by the Free Software Foundation; either | |
18 | version 2.1 of the License, or (at your option) any later version. | |
19 | ||
20 | The GNU C Library is distributed in the hope that it will be useful, | |
21 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
23 | Lesser General Public License for more details. | |
24 | ||
25 | You should have received a copy of the GNU Lesser General Public | |
26 | License along with the GNU C Library; if not, write to the Free | |
27 | Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA | |
28 | 02111-1307 USA. */ | |
29 | ||
835a5b33 | 30 | #define _GNU_SOURCE 1 /* to expose strptime */ |
d436bd52 RK |
31 | #include <limits.h> |
32 | #include <stdio.h> | |
33 | #include <stdlib.h> | |
34 | #include <string.h> | |
35 | #include <time.h> | |
36 | ||
37 | #include "dateparse.h" | |
477f956c | 38 | #include "strptime.h" |
d436bd52 RK |
39 | |
40 | #define TM_YEAR_BASE 1900 | |
41 | ||
42 | ||
43 | /* Prototypes for local functions. */ | |
44 | static int first_wday (int year, int mon, int wday); | |
45 | static int check_mday (int year, int mon, int mday); | |
46 | ||
47 | # define isleap(year) \ | |
48 | ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0)) | |
49 | ||
50 | /* Set to one of the following values to indicate an error. | |
51 | 1 the DATEMSK environment variable is null or undefined, | |
52 | 2 the template file cannot be opened for reading, | |
53 | 3 failed to get file status information, | |
54 | 4 the template file is not a regular file, | |
55 | 5 an error is encountered while reading the template file, | |
56 | 6 memory allication failed (not enough memory available), | |
57 | 7 there is no line in the template that matches the input, | |
58 | 8 invalid input specification Example: February 31 or a time is | |
59 | specified that can not be represented in a time_t (representing | |
60 | the time in seconds since 00:00:00 UTC, January 1, 1970) */ | |
835a5b33 | 61 | /*int xgetdate_err;*/ |
d436bd52 RK |
62 | |
63 | ||
64 | /* Returns the first weekday WDAY of month MON in the year YEAR. */ | |
65 | static int | |
66 | first_wday (int year, int mon, int wday) | |
67 | { | |
68 | struct tm tm; | |
69 | ||
70 | if (wday == INT_MIN) | |
71 | return 1; | |
72 | ||
73 | memset (&tm, 0, sizeof (struct tm)); | |
74 | tm.tm_year = year; | |
75 | tm.tm_mon = mon; | |
76 | tm.tm_mday = 1; | |
77 | mktime (&tm); | |
78 | ||
79 | return (1 + (wday - tm.tm_wday + 7) % 7); | |
80 | } | |
81 | ||
82 | ||
83 | /* Returns 1 if MDAY is a valid day of the month in month MON of year | |
84 | YEAR, and 0 if it is not. */ | |
85 | static int | |
86 | check_mday (int year, int mon, int mday) | |
87 | { | |
88 | switch (mon) | |
89 | { | |
90 | case 0: | |
91 | case 2: | |
92 | case 4: | |
93 | case 6: | |
94 | case 7: | |
95 | case 9: | |
96 | case 11: | |
97 | if (mday >= 1 && mday <= 31) | |
98 | return 1; | |
99 | break; | |
100 | case 3: | |
101 | case 5: | |
102 | case 8: | |
103 | case 10: | |
104 | if (mday >= 1 && mday <= 30) | |
105 | return 1; | |
106 | break; | |
107 | case 1: | |
108 | if (mday >= 1 && mday <= (isleap (year) ? 29 : 28)) | |
109 | return 1; | |
110 | break; | |
111 | } | |
112 | ||
113 | return 0; | |
114 | } | |
115 | ||
116 | ||
117 | int | |
118 | xgetdate_r (const char *string, struct tm *tp, | |
119 | const char *const *template) | |
120 | { | |
121 | const char *line; | |
d436bd52 RK |
122 | char *result = NULL; |
123 | time_t timer; | |
124 | struct tm tm; | |
125 | int mday_ok = 0; | |
126 | ||
127 | line = NULL; | |
d436bd52 RK |
128 | while((line = *template++)) |
129 | { | |
130 | /* Do the conversion. */ | |
131 | tp->tm_year = tp->tm_mon = tp->tm_mday = tp->tm_wday = INT_MIN; | |
132 | tp->tm_hour = tp->tm_sec = tp->tm_min = INT_MIN; | |
133 | tp->tm_isdst = -1; | |
134 | tp->tm_gmtoff = 0; | |
135 | tp->tm_zone = NULL; | |
477f956c | 136 | result = my_strptime (string, line, tp); |
d436bd52 RK |
137 | if (result && *result == '\0') |
138 | break; | |
139 | } | |
140 | ||
141 | if (result == NULL || *result != '\0') | |
142 | return 7; | |
143 | ||
144 | /* Get current time. */ | |
145 | time (&timer); | |
146 | localtime_r (&timer, &tm); | |
147 | ||
148 | /* If only the weekday is given, today is assumed if the given day | |
149 | is equal to the current day and next week if it is less. */ | |
150 | if (tp->tm_wday >= 0 && tp->tm_wday <= 6 && tp->tm_year == INT_MIN | |
151 | && tp->tm_mon == INT_MIN && tp->tm_mday == INT_MIN) | |
152 | { | |
153 | tp->tm_year = tm.tm_year; | |
154 | tp->tm_mon = tm.tm_mon; | |
155 | tp->tm_mday = tm.tm_mday + (tp->tm_wday - tm.tm_wday + 7) % 7; | |
156 | mday_ok = 1; | |
157 | } | |
158 | ||
159 | /* If only the month is given, the current month is assumed if the | |
160 | given month is equal to the current month and next year if it is | |
161 | less and no year is given (the first day of month is assumed if | |
162 | no day is given. */ | |
163 | if (tp->tm_mon >= 0 && tp->tm_mon <= 11 && tp->tm_mday == INT_MIN) | |
164 | { | |
165 | if (tp->tm_year == INT_MIN) | |
166 | tp->tm_year = tm.tm_year + (((tp->tm_mon - tm.tm_mon) < 0) ? 1 : 0); | |
167 | tp->tm_mday = first_wday (tp->tm_year, tp->tm_mon, tp->tm_wday); | |
168 | mday_ok = 1; | |
169 | } | |
170 | ||
171 | /* If no hour, minute and second are given the current hour, minute | |
172 | and second are assumed. */ | |
173 | if (tp->tm_hour == INT_MIN && tp->tm_min == INT_MIN && tp->tm_sec == INT_MIN) | |
174 | { | |
175 | tp->tm_hour = tm.tm_hour; | |
176 | tp->tm_min = tm.tm_min; | |
177 | tp->tm_sec = tm.tm_sec; | |
178 | } | |
179 | ||
180 | /* If no date is given, today is assumed if the given hour is | |
181 | greater than the current hour and tomorrow is assumed if | |
182 | it is less. */ | |
183 | if (tp->tm_hour >= 0 && tp->tm_hour <= 23 | |
184 | && tp->tm_year == INT_MIN && tp->tm_mon == INT_MIN | |
185 | && tp->tm_mday == INT_MIN && tp->tm_wday == INT_MIN) | |
186 | { | |
187 | tp->tm_year = tm.tm_year; | |
188 | tp->tm_mon = tm.tm_mon; | |
189 | tp->tm_mday = tm.tm_mday + ((tp->tm_hour - tm.tm_hour) < 0 ? 1 : 0); | |
190 | mday_ok = 1; | |
191 | } | |
192 | ||
193 | /* Fill in the gaps. */ | |
194 | if (tp->tm_year == INT_MIN) | |
195 | tp->tm_year = tm.tm_year; | |
196 | if (tp->tm_hour == INT_MIN) | |
197 | tp->tm_hour = 0; | |
198 | if (tp->tm_min == INT_MIN) | |
199 | tp->tm_min = 0; | |
200 | if (tp->tm_sec == INT_MIN) | |
201 | tp->tm_sec = 0; | |
202 | ||
203 | /* Check if the day of month is within range, and if the time can be | |
204 | represented in a time_t. We make use of the fact that the mktime | |
205 | call normalizes the struct tm. */ | |
206 | if ((!mday_ok && !check_mday (TM_YEAR_BASE + tp->tm_year, tp->tm_mon, | |
207 | tp->tm_mday)) | |
208 | || mktime (tp) == (time_t) -1) | |
209 | return 8; | |
210 | ||
211 | return 0; | |
212 | } | |
213 | ||
214 | ||
835a5b33 | 215 | #if 0 |
d436bd52 RK |
216 | struct tm * |
217 | xgetdate (const char *string, const char *const *template) | |
218 | { | |
219 | /* Buffer returned by getdate. */ | |
220 | static struct tm tmbuf; | |
221 | int errval = xgetdate_r (string, &tmbuf, template); | |
222 | ||
223 | if (errval != 0) | |
224 | { | |
835a5b33 | 225 | xgetdate_err = errval; |
d436bd52 RK |
226 | return NULL; |
227 | } | |
228 | ||
229 | return &tmbuf; | |
230 | } | |
835a5b33 | 231 | #endif |