wireshark/epan/ftypes/ftype-time.c

287 lines
5.8 KiB
C
Raw Normal View History

/*
* $Id: ftype-time.c,v 1.7 2001/06/02 06:21:14 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
*
*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <ctype.h>
#include <time.h>
#include <ftypes-int.h>
#ifdef NEED_STRPTIME_H
#include "strptime.h"
#endif
static gboolean
cmp_eq(fvalue_t *a, fvalue_t *b)
{
return ((a->value.time.tv_sec) ==(b->value.time.tv_sec))
&&((a->value.time.tv_usec)==(b->value.time.tv_usec));
}
static gboolean
cmp_ne(fvalue_t *a, fvalue_t *b)
{
return (a->value.time.tv_sec !=b->value.time.tv_sec)
||(a->value.time.tv_usec!=b->value.time.tv_usec);
}
static gboolean
cmp_gt(fvalue_t *a, fvalue_t *b)
{
if (a->value.time.tv_sec > b->value.time.tv_sec) {
return TRUE;
}
if (a->value.time.tv_sec < b->value.time.tv_sec) {
return FALSE;
}
return a->value.time.tv_usec > b->value.time.tv_usec;
}
static gboolean
cmp_ge(fvalue_t *a, fvalue_t *b)
{
if (a->value.time.tv_sec > b->value.time.tv_sec) {
return TRUE;
}
if (a->value.time.tv_sec < b->value.time.tv_sec) {
return FALSE;
}
return a->value.time.tv_usec >= b->value.time.tv_usec;
}
static gboolean
cmp_lt(fvalue_t *a, fvalue_t *b)
{
if (a->value.time.tv_sec < b->value.time.tv_sec) {
return TRUE;
}
if (a->value.time.tv_sec > b->value.time.tv_sec) {
return FALSE;
}
return a->value.time.tv_usec < b->value.time.tv_usec;
}
static gboolean
cmp_le(fvalue_t *a, fvalue_t *b)
{
if (a->value.time.tv_sec < b->value.time.tv_sec) {
return TRUE;
}
if (a->value.time.tv_sec > b->value.time.tv_sec) {
return FALSE;
}
return a->value.time.tv_usec <= b->value.time.tv_usec;
}
static gboolean
relative_val_from_string(fvalue_t *fv, char *s, LogFunc log)
{
char *curptr, *endptr;
curptr = s;
/*
* If it doesn't begin with ".", it should contain a seconds
* value.
*/
if (*curptr != '.') {
/*
* Get the seconds value.
*/
fv->value.time.tv_sec = strtoul(curptr, &endptr, 10);
if (endptr == curptr || (*endptr != '\0' && *endptr != '.'))
goto fail;
curptr = endptr;
if (*curptr == '.')
curptr++; /* skip the decimal point */
} else {
/*
* No seconds value - it's 0.
*/
fv->value.time.tv_sec = 0;
curptr++; /* skip the decimal point */
}
/*
* If there's more stuff left in the string, it should be the
* microseconds value.
*/
if (*endptr != '\0') {
/*
* Get the microseconds value.
*/
fv->value.time.tv_usec = strtoul(curptr, &endptr, 10);
if (endptr == curptr || *endptr != '\0')
goto fail;
} else {
/*
* No microseconds value - it's 0.
*/
fv->value.time.tv_usec = 0;
}
/*
* XXX - what about negative values?
*/
return TRUE;
fail:
if (log != NULL)
log("\"%s\" is not a valid time.", s);
return FALSE;
}
static gboolean
absolute_val_from_string(fvalue_t *fv, char *s, LogFunc log)
{
struct tm tm;
char *curptr, *endptr;
curptr = strptime(s,"%b %d, %Y %H:%M:%S", &tm);
if (curptr == NULL)
goto fail;
tm.tm_isdst = -1; /* let the computer figure out if it's DST */
fv->value.time.tv_sec = mktime(&tm);
if (*curptr != '\0') {
/*
* Something came after the seconds field; it must be
* a microseconds field.
*/
if (*curptr != '.')
goto fail; /* it's not */
curptr++; /* skip the "." */
if (!isdigit((unsigned char)*curptr))
goto fail; /* not a digit, so not valid */
fv->value.time.tv_usec = strtoul(curptr, &endptr, 10);
if (endptr == curptr || *endptr != '\0')
goto fail;
} else {
/*
* No microseconds value - it's 0.
*/
fv->value.time.tv_usec = 0;
}
if (fv->value.time.tv_sec == -1) {
/*
* XXX - should we supply an error message that mentions
* that the time specified might be syntactically valid
* but might not actually have occurred, e.g. a time in
* the non-existent time range after the clocks are
* set forward during daylight savings time (or possibly
* that it's in the time range after the clocks are set
* backward, so that there are two different times that
* it could be)?
*/
goto fail;
}
return TRUE;
fail:
if (log != NULL)
log("\"%s\" is not a valid absolute time. Example: \"Nov 12, 1999 08:55:44.123\"",
s);
return FALSE;
}
static void
time_fvalue_new(fvalue_t *fv)
{
fv->value.time.tv_sec = 0;
fv->value.time.tv_usec = 0;
}
static void
time_fvalue_set(fvalue_t *fv, gpointer value, gboolean already_copied)
{
g_assert(!already_copied);
memcpy(&(fv->value.time), value, sizeof(struct timeval));
}
static gpointer
value_get(fvalue_t *fv)
{
return &(fv->value.time);
}
void
ftype_register_time(void)
{
static ftype_t abstime_type = {
"FT_ABSOLUTE_TIME",
"date/time",
0,
time_fvalue_new,
NULL,
absolute_val_from_string,
time_fvalue_set,
NULL,
NULL,
value_get,
NULL,
NULL,
cmp_eq,
cmp_ne,
cmp_gt,
cmp_ge,
cmp_lt,
cmp_le,
};
static ftype_t reltime_type = {
"FT_RELATIVE_TIME",
"time offset",
0,
time_fvalue_new,
NULL,
relative_val_from_string,
time_fvalue_set,
NULL,
NULL,
value_get,
NULL,
NULL,
cmp_eq,
cmp_ne,
cmp_gt,
cmp_ge,
cmp_lt,
cmp_le,
};
ftype_register(FT_ABSOLUTE_TIME, &abstime_type);
ftype_register(FT_RELATIVE_TIME, &reltime_type);
}