8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-31 23:23:04 +01:00
firebird-mirror/src/common/classes/timestamp.cpp

293 lines
7.6 KiB
C++
Raw Normal View History

/*
* PROGRAM: Client/Server Common Code
* MODULE: timestamp.cpp
* DESCRIPTION: Date/time handling class
*
* The contents of this file are subject to the Interbase Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
* of the License at http://www.Inprise.com/IPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*
* NS: The code now contains much of the logic from original gds.c
* this is why we need to use IPL license for it
*/
#include "firebird.h"
#include "../jrd/common.h"
#include "../jrd/dsc.h"
#include "../jrd/gdsassert.h"
#ifdef HAVE_SYS_TIMES_H
#include <sys/times.h>
#endif
#ifdef HAVE_SYS_TIMEB_H
#include <sys/timeb.h>
#endif
#include "../common/classes/timestamp.h"
namespace Firebird {
int TimeStamp::yday(const struct tm* times)
{
/**************************************
*
* y d a y
*
**************************************
*
* Functional description
* Convert a calendar date to the day-of-year.
*
* The unix time structure considers
* january 1 to be Year day 0, although it
* is day 1 of the month. (Note that QLI,
* when printing Year days takes the other
* view.)
*
**************************************/
int day = times->tm_mday;
const int month = times->tm_mon;
const int year = times->tm_year + 1900;
--day;
day += (214 * month + 3) / 7;
if (month < 2)
return day;
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
--day;
else
day -= 2;
return day;
}
void TimeStamp::decode_date(ISC_DATE nday, struct tm* times)
{
/**************************************
*
* d e c o d e _ d a t e
*
**************************************
*
* Functional description
* Convert a numeric day to [day, month, year].
*
* Calenders are divided into 4 year cycles.
* 3 Non-Leap years, and 1 leap year.
* Each cycle takes 365*4 + 1 == 1461 days.
* There is a further cycle of 100 4 year cycles.
* Every 100 years, the normally expected leap year
* is not present. Every 400 years it is.
* This cycle takes 100 * 1461 - 3 == 146097 days
* The origin of the constant 2400001 is unknown.
* The origin of the constant 1721119 is unknown.
* The difference between 2400001 and 1721119 is the
* number of days From 0/0/0000 to our base date of
* 11/xx/1858. (678882)
* The origin of the constant 153 is unknown.
*
* This whole routine has problems with ndates
* less than -678882 (Approx 2/1/0000).
*
**************************************/
// struct tm may include arbitrary number of additional members.
// zero-initialize them.
memset(times, 0, sizeof(struct tm));
2005-02-20 09:35:35 +01:00
if ((times->tm_wday = (nday + 3) % 7) < 0)
times->tm_wday += 7;
2005-02-19 11:37:35 +01:00
nday += 2400001 - 1721119;
const int century = (4 * nday - 1) / 146097;
nday = 4 * nday - 1 - 146097 * century;
int day = nday / 4;
nday = (4 * day + 3) / 1461;
day = 4 * day + 3 - 1461 * nday;
day = (day + 4) / 4;
int month = (5 * day - 3) / 153;
day = 5 * day - 3 - 153 * month;
day = (day + 5) / 5;
int year = 100 * century + nday;
if (month < 10)
month += 3;
else {
month -= 9;
year += 1;
}
times->tm_mday = day;
times->tm_mon = month - 1;
times->tm_year = year - 1900;
times->tm_yday = yday(times);
}
ISC_DATE TimeStamp::encode_date(const struct tm* times)
{
/**************************************
*
* e n c o d e _ d a t e
*
**************************************
*
* Functional description
* Convert a calendar date to a numeric day
* (the number of days since the base date).
*
**************************************/
const int day = times->tm_mday;
int month = times->tm_mon + 1;
int year = times->tm_year + 1900;
if (month > 2)
month -= 3;
else {
month += 9;
year -= 1;
}
const int c = year / 100;
const int ya = year - 100 * c;
return (ISC_DATE) (((SINT64) 146097 * c) / 4 +
(1461 * ya) / 4 +
(153 * month + 2) / 5 + day + 1721119 - 2400001);
}
2004-11-14 21:49:47 +01:00
void TimeStamp::decode_time(
ISC_TIME ntime, int* hours, int* minutes, int* seconds, int* fractions)
{
*hours = ntime / (3600 * ISC_TIME_SECONDS_PRECISION);
ntime %= 3600 * ISC_TIME_SECONDS_PRECISION;
*minutes = ntime / (60 * ISC_TIME_SECONDS_PRECISION);
ntime %= 60 * ISC_TIME_SECONDS_PRECISION;
*seconds = ntime / ISC_TIME_SECONDS_PRECISION;
*fractions = ntime % ISC_TIME_SECONDS_PRECISION;
}
2005-08-24 11:09:35 +02:00
void TimeStamp::round_time(ISC_TIME &ntime, int precision)
2004-11-14 21:49:47 +01:00
{
2004-11-16 09:35:59 +01:00
const int scale = -ISC_TIME_SECONDS_PRECISION_SCALE - precision;
2004-11-14 21:49:47 +01:00
2004-11-16 09:35:59 +01:00
// for the moment, if greater precision was requested than we can
// provide return what we have.
2005-08-24 11:09:35 +02:00
if (scale <= 0) return;
2004-11-14 21:49:47 +01:00
2004-11-16 09:35:59 +01:00
static const ISC_TIME pow10table[] =
{1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000};
2004-11-14 21:49:47 +01:00
2004-11-16 09:35:59 +01:00
fb_assert(scale < FB_NELEM(pow10table));
2004-11-14 21:49:47 +01:00
2004-11-16 09:35:59 +01:00
ISC_TIME period = pow10table[scale];
2004-11-14 21:49:47 +01:00
2005-08-24 11:09:35 +02:00
ntime -= (ntime % period);
2004-11-14 21:49:47 +01:00
}
ISC_TIME TimeStamp::encode_time(int hours, int minutes, int seconds, int fractions)
{
return ((hours * 60 + minutes) * 60 + seconds) * ISC_TIME_SECONDS_PRECISION;
}
// Encode timestamp from UNIX datetime structure
void TimeStamp::encode(const struct tm* times) {
mValue.timestamp_date = encode_date(times);
mValue.timestamp_time =
((times->tm_hour * 60 + times->tm_min) * 60 +
times->tm_sec) * ISC_TIME_SECONDS_PRECISION;
}
// Decode timestamp into UNIX datetime structure
void TimeStamp::decode(struct tm* times) const {
decode_date(mValue.timestamp_date, times);
const ULONG minutes = mValue.timestamp_time / (ISC_TIME_SECONDS_PRECISION * 60);
times->tm_hour = minutes / 60;
times->tm_min = minutes % 60;
times->tm_sec = (mValue.timestamp_time / ISC_TIME_SECONDS_PRECISION) % 60;
}
void TimeStamp::generate()
{
// NS: We round generated timestamps to whole millisecond.
// Not many applications can deal with fractional milliseconds properly and
// we do not use high resolution timers either so actual time granularity
// is going to to be somewhere in range between 1 ms (like on UNIX/Risc)
// and 53 ms (such as Win9X)
time_t seconds; // UTC time
int fractions; // milliseconds
#ifdef HAVE_GETTIMEOFDAY
struct timeval tp;
GETTIMEOFDAY(&tp);
seconds = tp.tv_sec;
fractions = tp.tv_usec / 1000;
#else
struct timeb time_buffer;
ftime(&time_buffer);
seconds = time_buffer.time;
fractions = time_buffer.millitm;
#endif
// NS: Current FB behavior of using server time zone is not appropriate for
// distributed applications. We should be storing UTC times everywhere and
// convert timestamps to client timezone as necessary. Replace localtime
// stuff with these lines as soon appropriate functionality is implemented
//
// mValue.timestamp_date = seconds / 86400 + GDS_EPOCH_START;
// mValue.timestamp_time = (seconds % 86400) * ISC_TIME_SECONDS_PRECISION;
#ifdef HAVE_LOCALTIME_R
struct tm times;
if (!localtime_r(&seconds, &times))
report_error("localtime_r");
encode(&times);
#else
struct tm *times = localtime(&seconds);
if (!times)
report_error("localtime");
encode(times);
#endif
// Add fractions of second
mValue.timestamp_time += fractions * ISC_TIME_SECONDS_PRECISION / 1000;
}
void TimeStamp::report_error(const char* msg)
{
#ifdef SUPERCLIENT
// Or set it to an invalid date that will force the engine to complain.
mValue.timestamp_date = mValue.timestamp_time = 0;
#else
system_call_failed::raise(msg);
#endif
}
} // namespace