/* * PROGRAM: Client/Server Common Code * MODULE: NoThrowTimeStamp.h * DESCRIPTION: Date/time handling class * * The contents of this file are subject to the Initial * Developer's 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.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl. * * Software distributed under the License is distributed AS IS, * 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 Dmitry Yemanov * for the Firebird Open Source RDBMS project. * * Copyright (c) 2004 Dmitry Yemanov * and all contributors signed below. * * All Rights Reserved. * Contributor(s): ______________________________________. */ #ifndef CLASSES_NOTHROW_TIMESTAMP_H #define CLASSES_NOTHROW_TIMESTAMP_H #include "../common/dsc_pub.h" // struct tm declaration #if defined(TIME_WITH_SYS_TIME) #include #include #else #if defined(HAVE_SYS_TIME_H) #include #else #include #endif #endif namespace Firebird { // Wrapper class for ISC_TIMESTAMP supposed to implement date/time conversions // and arithmetic. Small and not platform-specific methods are implemented // inline. // // This class is used in UDF, in the rest of our code TimeStamp should be used. // Usage of this class normally should involve zero overhead. // // Note: default "shallow-copy" constructor and assignment operators // are just fine for our purposes class NoThrowTimeStamp { static const ISC_DATE MIN_DATE = -678575; // 01.01.0001 static const ISC_DATE MAX_DATE = 2973483; // 31.12.9999 static const ISC_DATE BAD_DATE = MAX_SLONG; static const ISC_TIME BAD_TIME = MAX_ULONG; public: // Number of the first day of UNIX epoch in GDS counting enum { GDS_EPOCH_START = 40617 }; static const ISC_TIME POW_10_TABLE[]; // Constructors NoThrowTimeStamp() { invalidate(); } NoThrowTimeStamp(const ISC_TIMESTAMP& from) : mValue(from) {} NoThrowTimeStamp(ISC_DATE date, ISC_TIME time) { mValue.timestamp_date = date; mValue.timestamp_time = time; } explicit NoThrowTimeStamp(const struct tm& times, int fractions = 0) { encode(×, fractions); } bool isValid() const { return isValidTimeStamp(mValue); } // Check if timestamp contains a non-existing value bool isEmpty() const { return (mValue.timestamp_date == BAD_DATE && mValue.timestamp_time == BAD_TIME); } // Set value of timestamp to a non-existing value void invalidate() { mValue.timestamp_date = BAD_DATE; mValue.timestamp_time = BAD_TIME; } // Assign current date/time to the timestamp void validate() throw() { if (isEmpty()) { *this = getCurrentTimeStamp(NULL); } } // Encode timestamp from UNIX datetime structure void encode(const struct tm* times, int fractions = 0); // Decode timestamp into UNIX datetime structure void decode(struct tm* times, int* fractions = NULL) const; // Write access to timestamp structure we wrap ISC_TIMESTAMP& value() { return mValue; } // Read access to timestamp structure we wrap const ISC_TIMESTAMP& value() const { return mValue; } // Return current timestamp value static NoThrowTimeStamp getCurrentTimeStamp(const char** error) throw(); // Validation routines static bool isValidDate(const ISC_DATE ndate) { return (ndate >= MIN_DATE && ndate <= MAX_DATE); } static bool isValidTime(const ISC_TIME ntime) { return (ntime < 24 * 3600 * ISC_TIME_SECONDS_PRECISION); } static bool isValidTimeStamp(const ISC_TIMESTAMP ts) { return (isValidDate(ts.timestamp_date) && isValidTime(ts.timestamp_time)); } // ISC date/time helper routines static ISC_DATE encode_date(const struct tm* times) throw(); static ISC_TIME encode_time(int hours, int minutes, int seconds, int fractions = 0) throw(); static ISC_TIMESTAMP encode_timestamp(const struct tm* times, const int fractions = 0) throw(); static void decode_date(ISC_DATE nday, struct tm* times) throw(); static void decode_time(ISC_TIME ntime, int* hours, int* minutes, int* seconds, int* fractions = NULL) throw(); static void decode_timestamp(const ISC_TIMESTAMP ntimestamp, struct tm* times, int* fractions = NULL) throw(); static void round_time(ISC_TIME& ntime, const int precision); static inline bool isLeapYear(const int year) throw() { return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0); } private: ISC_TIMESTAMP mValue; static int yday(const struct tm* times) throw(); }; } // namespace Firebird #endif // CLASSES_NOTHROW_TIMESTAMP_H