Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strptime.cpp « libc « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a22288c515b129cd1e352b2aa3deb3bfe3274341 (plain)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/*
 * Copyright (c) 1999 Kungliga Tekniska H�gskolan
 * (Royal Institute of Technology, Stockholm, Sweden).
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * 3. Neither the name of KTH nor the names of its contributors may be
 *    used to endorse or promote products derived from this software without
 *    specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */

/*
 * DC 2020/01/10: removed code for those format specifiers that need a locale and others that we don't need,
 *  such as GNU-specific format specifiers, AM/PM specifiers, 12-hour clock specifiers, 2-digit year specifiers, and month and day number specifiers.
 * The only format specifiers currently used by RepRapFirmware are: YmdHMS
 */

#define _GNU_SOURCE
#include <ecv_duet3d.h>
#include <stddef.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <strings.h>
#include <ctype.h>
#include <stdlib.h>
#include <errno.h>
#include <inttypes.h>
#include <limits.h>

#include <General/SafeStrtod.h>

static constexpr int _DAYS_BEFORE_MONTH[12] =
{0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334};

#define SET_MDAY 1
#define SET_MON  2
#define SET_YEAR 4
#define SET_WDAY 8
#define SET_YDAY 16
#define SET_YMD  (SET_YEAR | SET_MON | SET_MDAY)

/*
 * tm_year is relative this year
 */
constexpr int tm_year_base = 1900;

/*
 * Return TRUE iff `year' was a leap year.
 * Needed for strptime.
 */
static int is_leap_year (int year) noexcept
{
    return (year % 4) == 0 && ((year % 100) != 0 || (year % 400) == 0);
}

/* Needed for strptime. */
static int first_day (int year) noexcept
{
    int ret = 4;

    while (--year >= 1970)
    {
    	ret = (ret + 365 + is_leap_year (year)) % 7;
    }
    return ret;
}

#undef 	isspace_l
#define isspace_l(_c, _l)			isspace(_c)
#define strtol_l(_b, _s, _n, _l)	StrToI32(_b, _s)
#define strptime_l(_b, _f, _t, _l)	strptime_dc(_b, _f, _t)

const char *SafeStrptime(const char *_ecv_array buf, const char *_ecv_array format, struct tm *timeptr) noexcept
{
    char c;
    int ymd = 0;

    for (; (c = *format) != '\0'; ++format)
    {
		if (isspace_l ((unsigned char) c, locale))
		{
			while (isspace_l ((unsigned char) *buf, locale))
			++buf;
		}
		else if (c == '%' && format[1] != '\0')
		{
			c = *++format;
			if (c == 'E' || c == 'O')
			{
				c = *++format;
			}

			switch (c)
			{
			case 'd' :
			case 'e' :
				{
					const char *s;
					const int ret = strtol_l (buf, &s, 10, locale);
					if (s == buf) { return nullptr; }
					timeptr->tm_mday = ret;
					buf = s;
					ymd |= SET_MDAY;
				}
				break;

			case 'H' :
				{
					const char *s;
					const int ret = strtol_l (buf, &s, 10, locale);
					if (s == buf) { return nullptr; }
					timeptr->tm_hour = ret;
					buf = s;
				}
				break;

			case 'm' :
				{
					const char *s;
					const int ret = strtol_l (buf, &s, 10, locale);
					if (s == buf) { return nullptr; }
					timeptr->tm_mon = ret - 1;
					buf = s;
					ymd |= SET_MON;
				}
				break;

			case 'M' :
				{
					const char *s;
					const int ret = strtol_l (buf, &s, 10, locale);
					if (s == buf) { return nullptr; }
					timeptr->tm_min = ret;
					buf = s;
				}
				break;

			case 'n' :
				if (*buf == '\n')
				{
					++buf;
				}
				else
				{
					return nullptr;
				}
				break;

			case 'S' :
				{
					const char *s;
					const int ret = strtol_l (buf, &s, 10, locale);
					if (s == buf) { return nullptr; }
					timeptr->tm_sec = ret;
					buf = s;
				}
				break;

			case 'Y' :
				{
					const char *s;
					const int ret = strtol_l (buf, &s, 10, locale);
					if (s == buf) { return nullptr; }
					timeptr->tm_year = ret - tm_year_base;
					buf = s;
					ymd |= SET_YEAR;
				}
				break;

			case '\0' :
				--format;
				/* FALLTHROUGH */
				/* no break - DC added for Eclipse */
			case '%' :
				if (*buf == '%')
				{
					++buf;
				}
				else
				{
					return nullptr;
				}
				break;

			default :
				if (*buf == '%' || *++buf == c)
				{
					++buf;
				}
				else
				{
					return nullptr;
				}
				break;
			}
		}
		else
		{
			if (*buf == c)
			{
				++buf;
			}
			else
			{
				return nullptr;
			}
		}
    }

    if ((ymd & SET_YMD) == SET_YMD)
    {
		/* all of tm_year, tm_mon and tm_mday, but... */
		if (!(ymd & SET_YDAY))
		{
			/* ...not tm_yday, so fill it in */
			timeptr->tm_yday = _DAYS_BEFORE_MONTH[timeptr->tm_mon] + timeptr->tm_mday;
			if (!is_leap_year(timeptr->tm_year + tm_year_base) || timeptr->tm_mon < 2)
			{
				timeptr->tm_yday--;
			}
			ymd |= SET_YDAY;
		}
    }
    else if ((ymd & (SET_YEAR | SET_YDAY)) == (SET_YEAR | SET_YDAY))
    {
    	/* both of tm_year and tm_yday, but... */
		if (!(ymd & SET_MON))
		{
			/* ...not tm_mon, so fill it in, and/or... */
			if (timeptr->tm_yday < _DAYS_BEFORE_MONTH[1])
			{
				timeptr->tm_mon = 0;
			}
			else
			{
				int leap = is_leap_year (timeptr->tm_year + tm_year_base);
				int i;
				for (i = 2; i < 12; ++i)
				{
					if (timeptr->tm_yday < _DAYS_BEFORE_MONTH[i] + leap)
					{
						break;
					}
				}
				timeptr->tm_mon = i - 1;
			}
		}

		if (!(ymd & SET_MDAY))
		{
			/* ...not tm_mday, so fill it in */
			timeptr->tm_mday = timeptr->tm_yday - _DAYS_BEFORE_MONTH[timeptr->tm_mon];
			if (!is_leap_year (timeptr->tm_year + tm_year_base) || timeptr->tm_mon < 2)
			{
				timeptr->tm_mday++;
			}
		}
    }

    if ((ymd & (SET_YEAR | SET_YDAY | SET_WDAY)) == (SET_YEAR | SET_YDAY))
    {
		/* fill in tm_wday */
		int fday = first_day (timeptr->tm_year + tm_year_base);
		timeptr->tm_wday = (fday + timeptr->tm_yday) % 7;
    }

    return buf;
}

extern "C" char * strptime (const char *_ecv_array buf, const char *_ecv_array format, struct tm *timeptr) noexcept
{
	return const_cast<char *>(SafeStrptime (buf, format, timeptr));
}

// End