/*********************************************************************** * * * This software is part of the ast package * * Copyright (c) 1985-2011 AT&T Intellectual Property * * and is licensed under the * * Eclipse Public License, Version 1.0 * * by AT&T Intellectual Property * * * * A copy of the License is available at * * http://www.eclipse.org/org/documents/epl-v10.html * * (with md5 checksum b35adb5213ca9657e911e9befb180842) * * * * Information and Software Systems Research * * AT&T Research * * Florham Park NJ * * * * Glenn Fowler * * David Korn * * Phong Vo * * * ***********************************************************************/ #pragma prototyped #include #include /* * parse duration expression in s and return Time_t value * if non-null, e points to the first unused char in s * returns 0 with *e==s on error */ Time_t tmxduration(const char* s, char** e) { Time_t ns; Time_t ts; Time_t now; char* last; char* t; char* x; Sfio_t* f; int i; now = TMX_NOW; while (isspace(*s)) s++; if (*s == 'P' || *s == 'p') ns = tmxdate(s, &last, now) - now; else { ns = strtod(s, &last) * TMX_RESOLUTION; if (*last && (f = sfstropen())) { sfprintf(f, "exact %s", s); t = sfstruse(f); ts = tmxdate(t, &x, now); if ((i = x - t - 6) > (last - s)) { last = (char*)s + i; ns = ts - now; } else { sfprintf(f, "p%s", s); t = sfstruse(f); ts = tmxdate(t, &x, now); if ((i = x - t - 1) > (last - s)) { last = (char*)s + i; ns = ts - now; } } sfstrclose(f); } } if (e) *e = last; return ns; }