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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
|
/* -*- mode: c -*-
| Time-stamp: <2007-01-19 01:52:29 jcs>
|
| Copyright (C) 2002-2003 Jorg Schuler <jcsjcs at users.sourceforge.net>
| Part of the gtkpod project.
|
| URL: http://gtkpod.sourceforge.net/
|
| This program is free software; you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation; either version 2 of the License, or
| (at your option) any later version.
|
| This program 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
| iTunes and iPod are trademarks of Apple
|
| This product is not supported/written/published by Apple!
*/
/* This parser (dp_parse()) will take one date specification (like
* 9/6/03, or -5d) and convert it into a timestamp. More details
* below. */
%{
#include <stdlib.h>
#include "date_parser.h"
#include "misc.h"
static gchar *dp_strp = NULL;
/* time stamp (result!) */
static time_t tstamp;
/* already parsed time? */
static gboolean parsed_time;
/* are we reading a lower bound (TRUE) or upper bound (FALSE) */
static gboolean lower;
/* did an error occur? */
static gboolean dp_error;
/* should relative dates be read strictly (TRUE: no changing of seconds
* to 0 or 59 when minutes are set) or not. It's only set to FALSE
* for the "=..." format. */
static gboolean rel_strict;
typedef enum {
DP_SEC,
DP_MIN,
DP_HOUR,
DP_DAY,
DP_WEEK,
DP_MONTH,
DP_YEAR,
DP_INF
} RelTime;
/* Which is the lowest relative time specifier already parsed? */
RelTime reltime;
static void dp_reltime (gchar *str, gint32 sign);
/* We don't read from a stream but from a string buffer. This macro
will copy a maximum of @max_size chars from dp_strp to @buf,
writing the number of chars copied into @result. If no characters
are copied, YY_NULL is written into @result. */
#define YY_INPUT(buf,result,max_size) \
{ \
if (!dp_strp || !dp_strp[0]) result = YY_NULL; \
else \
{ \
gint i; \
for (i=0; (i<max_size && *dp_strp); ++i) buf[i] = *dp_strp++; \
result = i; \
} \
}
%}
/* stop parsing after end of string is reached */
%option noyywrap
/* avoid compiler warning: `yyunput' defined but not used */
%option nounput
/* We have several parsers in one executable, so we must use the
prefix option to avoid name space clashes. Note that this only
works with flex, but not with lex. */
%option prefix="lexdp"
/* Unfortunately, the prefix option also changes the output filename
and thereby breaks the automake script. Therefore I define the
output filename here. However, this is not portable -- on other
systems the default output filename expected by the automake
scripts may be lexyy.c or similar. To make the code portable again
(hopefully), I also define "LEX_OUTPUT_ROOT = lex.yy" in
Makefile.am */
%option outfile="lex.yy.c"
DIGIT [0-9]
NUM {DIGIT}+
/* definitions for time formats */
/* e.g. 8:54 */
TIMESHORT {NUM}":"{NUM}
/* e.g. 8:54:23 */
TIMEFULL {NUM}":"{NUM}":"{NUM}
/* e.g. 9/6 (for June 9th) */
DATESHORT {NUM}"/"{NUM}
/* e.g. 9/6/3 or 9/6/2003 */
DATEFULL {NUM}"/"{NUM}"/"{NUM}
/* e.g. -8:54 */
RELTIME_S [+-]{TIMESHORT}
/* e.g. +8:54.23 */
RELTIME_F [+-]{TIMEFULL}
/* e.g. 5d6m3s */
RELTIME ({NUM}[smhdwMy])+
/* e.g. -3M5d */
SRELTIME [+-]{RELTIME}
%%
{TIMESHORT} {
gchar *ptr1 = yytext;
struct tm *lt = localtime (&tstamp);
lt->tm_hour = strtol (ptr1, &ptr1, 10);
++ptr1;
lt->tm_min = strtol (ptr1, &ptr1, 10);
if (lower) lt->tm_sec = 0;
else lt->tm_sec = 59;
tstamp = mktime (lt);
parsed_time = TRUE;
#if DP_DEBUG
printf ("Time with minutes: '%s'\n", yytext);
printf ("tstamp: %d: %s", (int)tstamp, asctime (lt));
#endif
}
{TIMEFULL} {
gchar *ptr1 = yytext;
struct tm *lt = localtime (&tstamp);
lt->tm_hour = strtol (ptr1, &ptr1, 10);
++ptr1;
lt->tm_min = strtol (ptr1, &ptr1, 10);
++ptr1;
lt->tm_sec = strtol (ptr1, &ptr1, 10);
tstamp = mktime (lt);
parsed_time = TRUE;
#if DP_DEBUG
printf ("Time with seconds: '%s'\n", yytext);
printf ("tstamp: %d: %s", (int)tstamp, asctime (lt));
#endif
}
{DATESHORT} {
gchar *ptr1 = yytext;
struct tm *lt = localtime (&tstamp);
if (!parsed_time)
{
if (lower)
{
lt->tm_hour = 0;
lt->tm_min = 0;
lt->tm_sec = 0;
}
else
{
lt->tm_hour = 23;
lt->tm_min = 59;
lt->tm_sec = 59;
}
}
lt->tm_mday = strtol (ptr1, &ptr1, 10);
++ptr1;
lt->tm_mon = strtol (ptr1, &ptr1, 10) - 1;
tstamp = mktime (lt);
#if DP_DEBUG
printf ("Date without year: '%s'\n", yytext);
printf ("tstamp: %d: %s", (int)tstamp, asctime (lt));
#endif
}
{DATEFULL} {
gchar *ptr1 = yytext;
struct tm *lt = localtime (&tstamp);
if (!parsed_time)
{
if (lower)
{
lt->tm_hour = 0;
lt->tm_min = 0;
lt->tm_sec = 0;
}
else
{
lt->tm_hour = 23;
lt->tm_min = 59;
lt->tm_sec = 59;
}
}
lt->tm_mday = strtol (ptr1, &ptr1, 10);
++ptr1;
lt->tm_mon = strtol (ptr1, &ptr1, 10) - 1;
++ptr1;
lt->tm_year = strtol (ptr1, &ptr1, 10);
if (lt->tm_year < 70)
lt->tm_year += 2000;
if ((lt->tm_year < 100) && (lt->tm_year >=70))
lt->tm_year += 1900;
/* tm_year is years since 1900 */
lt->tm_year -= 1900;
tstamp = mktime (lt);
#if DP_DEBUG
printf ("Date with year: '%s'\n", yytext);
printf ("tstamp: %d: %s", (int)tstamp, asctime (lt));
#endif
}
{RELTIME_S} { /* [+-]{TIMESHORT} */
gchar *ptr1 = yytext;
gint32 hours, mins, sign;
if (*ptr1 == '+') sign = 1;
else sign = -1;
++ptr1;
hours = strtol (ptr1, &ptr1, 10);
++ptr1;
mins = strtol (ptr1, &ptr1, 10);
tstamp += sign * (hours*3600 + mins*60);
if (DP_MIN < reltime) reltime = DP_MIN;
#if DP_DEBUG
printf ("[+-]{TIMESHORT} '%s'\n", yytext);
printf ("tstamp: %d: %s", (int)tstamp, ctime (&tstamp));
#endif
}
{RELTIME_F} { /* [+-]{TIMEFULL} */
gchar *ptr1 = yytext;
gint32 hours, mins, secs, sign;
if (*ptr1 == '+') sign = 1;
else sign = -1;
++ptr1;
hours = strtol (ptr1, &ptr1, 10);
++ptr1;
mins = strtol (ptr1, &ptr1, 10);
++ptr1;
secs = strtol (ptr1, &ptr1, 10);
tstamp += sign * (hours*3600 + mins*60 + secs);
reltime = DP_SEC;
#if DP_DEBUG
printf ("[+-]{TIMEFULL} '%s'\n", yytext);
printf ("tstamp: %d: %s", (int)tstamp, ctime (&tstamp));
#endif
}
{RELTIME} { /* ({NUM}[smhdwMy])+ */
#if DP_DEBUG
printf ("RELTIME: '%s'\n", yytext);
#endif
/* call reltime with negative sign */
dp_reltime (yytext, -1);
}
{SRELTIME} { /* [+-]{RELTIME} */
#if DP_DEBUG
printf ("SRELTIME: '%s'\n", yytext);
#endif
if (*yytext == '+') dp_reltime (yytext+1, +1);
else dp_reltime (yytext+1, -1);
}
[ \t]* /* ignore */
. {
gtkpod_warning (_("Date format error: unrecognized character: '%s'\n"), yytext );
dp_error = TRUE;
}
%%
/* handle ({NUM}[smhdwMy])+, assuming @sign */
static void dp_reltime (gchar *str, gint32 sign)
{
gchar *ptr1 = str;
gint32 arg;
time_t secs = 0;
while (*ptr1)
{
arg = strtol (ptr1, &ptr1, 10);
switch (*ptr1)
{
case 's':
secs += arg;
reltime = DP_SEC;
break;
case 'm':
secs += 60*arg;
if (DP_MIN < reltime) reltime = DP_MIN;
break;
case 'h':
secs += 3600*arg;
if (DP_HOUR < reltime) reltime = DP_HOUR;
break;
case 'd':
secs += 24*3600*arg;
if (DP_DAY < reltime) reltime = DP_DAY;
break;
case 'w':
secs += 7*24*3600*arg;
if (DP_WEEK < reltime) reltime = DP_WEEK;
break;
case 'M':
secs += 30*7*24*3600*arg;
if (DP_MONTH < reltime) reltime = DP_MONTH;
break;
case 'y':
secs += 365*7*24*3600*arg;
if (DP_YEAR < reltime) reltime = DP_YEAR;
break;
}
++ptr1;
}
tstamp += sign*secs;
#if DP_DEBUG
printf ("secs: %d, tstamp: %d: %s", (int)secs, (int)tstamp, ctime (&tstamp));
#endif
}
/* after reading the date string check if we should round down the
interval (round if reltime is not supposed to be strict and no
absolute time string has been parsed */
static void round_reltime (void)
{
if (!rel_strict && !parsed_time)
{ /* Round this datestamp to make a lower/upper margin */
struct tm *lt = localtime (&tstamp);
switch (reltime)
{
case DP_INF:
break;
case DP_YEAR:
if (lower) lt->tm_mon = 0;
else lt->tm_mon = 11;
case DP_MONTH:
if (lower) lt->tm_mday = 1;
else
{
switch (lt->tm_mon)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
lt->tm_mday = 31;
break;
case 2:
if ((lt->tm_year % 4) != 0) lt->tm_mday = 28;
else
{
if ((lt->tm_year % 100) != 0) lt->tm_mday = 29;
else
{ /* centuries are only leap years if they
* are a multiple of 400 */
if (((lt->tm_year+300) % 400) == 0)
lt->tm_mday = 29;
else lt->tm_mday = 28;
}
}
break;
case 4:
case 6:
case 9:
case 11:
lt->tm_mday = 30;
break;
}
}
case DP_WEEK:
if (reltime == DP_WEEK)
{ /* only do this if week was set manually */
/* tm_wday gives us the number of days since Sunday (0
to 6). Let's declare Monday to be the start of the
week and Sunday the end. */
if (lower)
{ /* Round down to Monday */
if (lt->tm_wday == 0) lt->tm_mday -= 6;
else lt->tm_mday -= (lt->tm_wday-1);
}
else
{ /* Round up to Sunday */
if (lt->tm_wday != 0) lt->tm_mday += (7-lt->tm_wday);
}
}
case DP_DAY:
if (lower) lt->tm_hour = 0;
else lt->tm_hour = 23;
case DP_HOUR:
if (lower) lt->tm_min = 0;
else lt->tm_min = 59;
case DP_MIN:
if (lower) lt->tm_sec = 0;
else lt->tm_sec = 59;
case DP_SEC:
break;
}
tstamp = mktime (lt);
#if DP_DEBUG
printf ("tstamp: %d: %s", (int)tstamp, ctime (&tstamp));
#endif
}
}
/* dp_parse() will take one date specification (like 9/6/03, or -5d,
* for details have a look at the definitions above) and convert it
* into a timestamp.
*
* @dp_str: the string to parse
*
* @result: the parsed timestamp is written into here
*
* @lower_margin: if TRUE, absolute time or date values are "rounded
* down" (e.g. "9/6/03" would compute to "June 6 2003, 0:00:00"),
* otherwise the are rounded up (e.g. "9/6/03" would compute to "June
* 6 2003, 23:59:59"). Similarily, "8:05" would either compute to
* "8:05:00" or "8:05:59" depending on whether the lower or upper
* boundary is to be determined.
*
* @strict: should relative dates be read strictly (TRUE: no changing
* of seconds to 0 or 59 when minutes are set, etc.) or not. Actually,
* it's only set to FALSE * for the "=..." format.
*
* Return value:
*
* TRUE: no error occurred
* FALSE: error occurred
*/
gboolean dp_parse (gchar *dp_str, time_t *result,
gboolean lower_margin, gboolean strict)
{
dp_strp = dp_str;
/* set timestamp to current time */
tstamp = time (NULL);
/* did not yet parse any absolute time string */
parsed_time = FALSE;
/* did not yet parse any relative time string */
reltime = DP_INF;
/* no error occurred (yet) */
dp_error = FALSE;
/* set parameters */
lower = lower_margin;
rel_strict = strict;
/* call lexer */
yylex ();
/* round relative time up or down, if necessary */
round_reltime ();
/* set the result */
if (result) *result = tstamp;
/* return the (inverted) error variable */
return !dp_error;
}
|