/* ----------------------------------------------------------------
 *   FILE
 *	nabstime.h
 *
 *   DESCRIPTION
 *	Definitions for the "new" abstime code.
 *
 *   NOTES
 *
 *   IDENTIFICATION
 *	$Header: /usr/local/devel/postgres/src/backend/utils/RCS/nabstime.h,v 1.6 1993/09/22 01:57:15 aoki Exp $
 * ----------------------------------------------------------------
 */

#ifndef _NABSTIME_INCL_
#define _NABSTIME_INCL_

#include <sys/types.h>
#include <time.h>
#include <sys/timeb.h>

/* ----------------------------------------------------------------
 *		time types + support macros
 *
 *
 * ----------------------------------------------------------------
 */
typedef int32	AbsoluteTime;
typedef int32	RelativeTime;

typedef struct { 
	int32	status;
	AbsoluteTime	data[2];
} TimeIntervalData;
typedef TimeIntervalData *TimeInterval;

#define EPOCH_ABSTIME 0
#define INVALID_ABSTIME 2147483647	/* 2^31 - 1 */
#define CURRENT_ABSTIME 2147483646	/* 2^31 - 2 */
#define NOEND_ABSTIME	2147483645	/* 2^31 - 3 */
#if defined(PORTNAME_aix)
/*
 * AIX considers 2147483648 == -2147483648 (since they have the same bit
 * representation) but uses a different sign sense in a comparison to 
 * these integer constants depending on whether the constant is signed 
 * or not!
 */
#include <values.h>
#define NOSTART_ABSTIME	HIBITI		/* - 2^31 */
#else
#define NOSTART_ABSTIME 2147483648	/* - 2^31 */
#endif /* PORTNAME_aix */

#define INVALID_RELTIME 2147483647	/* 2^31 - 1 */

/* ----------------
 *	time support macros (from tim.h)
 * ----------------
 */

#define AbsoluteTimeIsValid(time) \
    ((bool) ((time) != INVALID_ABSTIME))

#define AbsoluteTimeIsReal(time) \
    ((bool) ((time) < NOEND_ABSTIME && (time) > NOSTART_ABSTIME))

/* have to include this because EPOCH_ABSTIME used to be invalid - yuk */
#define AbsoluteTimeIsBackwardCompatiblyValid(time) \
    ((bool) ((time) != INVALID_ABSTIME && (time) > EPOCH_ABSTIME))

#define AbsoluteTimeIsBackwardCompatiblyReal(time) \
    ((bool) ((time) < NOEND_ABSTIME && (time) > NOSTART_ABSTIME \
             && (time) > EPOCH_ABSTIME))

#define RelativeTimeIsValid(time) \
    ((bool) ((time) != INVALID_RELTIME))

#define GetCurrentAbsoluteTime() \
    ((AbsoluteTime) GetSystemTime())

/*
 * GetSystemTime --
 *	Returns system time.
 */
#define GetSystemTime() \
    ((SystemTime) (time(0l)))

/*
 *  Meridian:  am, pm, or 24-hour style.
 */
#define AM 0
#define PM 1
#define HR24 2

/* can't have more of these than there are bits in an unsigned long */
#define MONTH	1
#define YEAR	2
#define DAY	3
#define TIME	4
#define TZ	5
#define DTZ	6
#define IGNORE	7
#define AMPM	8
/* below here are unused so far */
#define SECONDS	9
#define MONTHS	10
#define YEARS	11
#define NUMBER	12
/* these are only for relative dates */
#define ABS_BEFORE	13
#define ABS_AFTER	14
#define AGO	15


#define SECS(n)		((time_t)(n))
#define MINS(n)		((time_t)(n) * SECS(60))
#define HOURS(n)	((time_t)(n) * MINS(60))	/* 3600 secs */
#define DAYS(n)		((time_t)(n) * HOURS(24))	/* 86400 secs */
/* months and years are not constant length, must be specially dealt with */

#define TOKMAXLEN 6	/* only this many chars are stored in datetktbl */

/* keep this struct small; it gets used a lot */
typedef struct {
#if defined(PORTNAME_aix)
	char *token;
#else
	char token[TOKMAXLEN];
#endif /* PORTNAME_aix */
	char type;
	char value;		/* this may be unsigned, alas */
} datetkn;

/*
 * nabstime.c prototypes 
 * automatically generated by mkproto
 */
extern AbsoluteTime nabstimein ARGS((char *timestr));
extern int IsNowStr ARGS((char *tstr));
extern int IsEpochStr ARGS((char *tstr));
extern int IsCurrentStr ARGS((char *tstr));
extern int IsNoendStr ARGS((char *tstr));
extern int IsNostartStr ARGS((char *tstr));
extern int prsabsdate ARGS((char *timestr, struct timeb *now, struct tm *tm, int *tzp));
extern int tryabsdate ARGS((char *fields[], int nf, struct timeb *now, struct tm *tm, int *tzp));
extern int parsetime ARGS((char *time, struct tm *tm));
extern int split ARGS((char *string, char *fields[], int nfields, char *sep));
extern char *nabstimeout ARGS((AbsoluteTime time));
extern int MonthNumToStr ARGS((int mnum, char *mstr));
extern int WeekdayToStr ARGS((int wday, char *wstr));
extern AbsoluteTime dateconv ARGS((struct tm *tm, int zone));
extern time_t qmktime ARGS((struct tm *tp));
extern datetkn *datetoktype ARGS((char *s, int *bigvalp));
extern datetkn *datebsearch ARGS((char *key, datetkn *base, unsigned int nel));
extern bool AbsoluteTimeIsBefore ARGS((AbsoluteTime time1, AbsoluteTime time2));
extern bool AbsoluteTimeIsAfter ARGS((AbsoluteTime time1, AbsoluteTime time2));
extern int32 abstimeeq ARGS((AbsoluteTime t1, AbsoluteTimet2));
extern int32 abstimene ARGS((AbsoluteTime t1, AbsoluteTimet2));
extern int32 abstimelt ARGS((AbsoluteTime t1, AbsoluteTimet2));
extern int32 abstimegt ARGS((AbsoluteTime t1, AbsoluteTimet2));
extern int32 abstimele ARGS((AbsoluteTime t1, AbsoluteTimet2));
extern int32 abstimege ARGS((AbsoluteTime t1, AbsoluteTimet2));

#endif _NABSTIME_INCL_
