/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl Copyright (C) 2003, 2004, 2005, 2006 StatPro Italia srl Copyright (C) 2004, 2005, 2006 Ferdinando Ametrano Copyright (C) 2006 Katiuscia Manzoni Copyright (C) 2006 Toyin Akin This file is part of QuantLib, a free-software/open-source library for financial quantitative analysts and developers - http://quantlib.org/ QuantLib is free software: you can redistribute it and/or modify it under the terms of the QuantLib license. You should have received a copy of the license along with this program; if not, please email . The license is also available online at . 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 license for more details. */ /*! \file date.hpp \brief date- and time-related classes, typedefs and enumerations */ #ifndef quantlib_date_hpp #define quantlib_date_hpp #include #include #include #include #include namespace QuantLib { //! Day number /*! \ingroup datetime */ typedef Integer Day; //! Month names /*! \ingroup datetime */ enum Month { January = 1, February = 2, March = 3, April = 4, May = 5, June = 6, July = 7, August = 8, September = 9, October = 10, November = 11, December = 12, Jan = 1, Feb = 2, Mar = 3, Apr = 4, Jun = 6, Jul = 7, Aug = 8, Sep = 9, Oct = 10, Nov = 11, Dec = 12 }; /*! \relates Month */ std::ostream& operator<<(std::ostream&, Month); //! Year number /*! \ingroup datetime */ typedef Integer Year; //! Concrete date class /*! This class provides methods to inspect dates as well as methods and operators which implement a limited date algebra (increasing and decreasing dates, and calculating their difference). \ingroup datetime \test self-consistency of dates, serial numbers, days of month, months, and weekdays is checked over the whole date range. */ class Date { public: //! \name constructors //@{ //! Default constructor returning a null date. Date(); //! Constructor taking a serial number as given by Applix or Excel. explicit Date(BigInteger serialNumber); //! More traditional constructor. Date(Day d, Month m, Year y); //@} //! \name inspectors //@{ Weekday weekday() const; Day dayOfMonth() const; //! One-based (Jan 1st = 1) Day dayOfYear() const; Month month() const; Year year() const; BigInteger serialNumber() const; //@} //! \name date algebra //@{ //! increments date by the given number of days Date& operator+=(BigInteger days); //! increments date by the given period Date& operator+=(const Period&); //! decrement date by the given number of days Date& operator-=(BigInteger days); //! decrements date by the given period Date& operator-=(const Period&); //! 1-day pre-increment Date& operator++(); //! 1-day post-increment Date operator++(int ); //! 1-day pre-decrement Date& operator--(); //! 1-day post-decrement Date operator--(int ); //! returns a new date incremented by the given number of days Date operator+(BigInteger days) const; //! returns a new date incremented by the given period Date operator+(const Period&) const; //! returns a new date decremented by the given number of days Date operator-(BigInteger days) const; //! returns a new date decremented by the given period Date operator-(const Period&) const; //@} //! \name static methods //@{ //! today's date. static Date todaysDate(); //! earliest allowed date static Date minDate(); //! latest allowed date static Date maxDate(); //! whether the given year is a leap one static bool isLeap(Year y); //! last day of the month to which the given date belongs static Date endOfMonth(const Date& d); //! whether a date is the last day of its month static bool isEndOfMonth(const Date& d); //! next given weekday following or equal to the given date /*! E.g., the Friday following Tuesday, January 15th, 2002 was January 18th, 2002. see http://www.cpearson.com/excel/DateTimeWS.htm */ static Date nextWeekday(const Date& d, Weekday); //! n-th given weekday in the given month and year /*! E.g., the 4th Thursday of March, 1998 was March 26th, 1998. see http://www.cpearson.com/excel/DateTimeWS.htm */ static Date nthWeekday(Size n, Weekday, Month m, Year y); //@} private: BigInteger serialNumber_; static Date advance(const Date& d, Integer units, TimeUnit); static Integer monthLength(Month m, bool leapYear); static Integer monthOffset(Month m, bool leapYear); static BigInteger yearOffset(Year y); static BigInteger minimumSerialNumber(); static BigInteger maximumSerialNumber(); static void checkSerialNumber(BigInteger serialNumber); }; /*! \relates Date \brief Difference in days between dates */ BigInteger operator-(const Date&, const Date&); /*! \relates Date */ bool operator==(const Date&, const Date&); /*! \relates Date */ bool operator!=(const Date&, const Date&); /*! \relates Date */ bool operator<(const Date&, const Date&); /*! \relates Date */ bool operator<=(const Date&, const Date&); /*! \relates Date */ bool operator>(const Date&, const Date&); /*! \relates Date */ bool operator>=(const Date&, const Date&); /*! \relates Date */ std::ostream& operator<<(std::ostream&, const Date&); namespace detail { struct short_date_holder { short_date_holder(const Date d) : d(d) {} Date d; }; std::ostream& operator<<(std::ostream&, const short_date_holder&); struct long_date_holder { long_date_holder(const Date& d) : d(d) {} Date d; }; std::ostream& operator<<(std::ostream&, const long_date_holder&); struct iso_date_holder { iso_date_holder(const Date& d) : d(d) {} Date d; }; std::ostream& operator<<(std::ostream&, const iso_date_holder&); } namespace io { //! output dates in short format (mm/dd/yyyy) /*! \ingroup manips */ detail::short_date_holder short_date(const Date&); //! output dates in long format (Month ddth, yyyy) /*! \ingroup manips */ detail::long_date_holder long_date(const Date&); //! output dates in ISO format (yyyy-mm-dd) /*! \ingroup manips */ detail::iso_date_holder iso_date(const Date&); } // inline definitions inline Weekday Date::weekday() const { Integer w = serialNumber_ % 7; return Weekday(w == 0 ? 7 : w); } inline Day Date::dayOfMonth() const { return dayOfYear() - monthOffset(month(),isLeap(year())); } inline Day Date::dayOfYear() const { return serialNumber_ - yearOffset(year()); } inline BigInteger Date::serialNumber() const { return serialNumber_; } inline Date Date::operator+(BigInteger days) const { return Date(serialNumber_+days); } inline Date Date::operator-(BigInteger days) const { return Date(serialNumber_-days); } inline Date Date::operator+(const Period& p) const { return advance(*this,p.length(),p.units()); } inline Date Date::operator-(const Period& p) const { return advance(*this,-p.length(),p.units()); } inline Date Date::endOfMonth(const Date& d) { Month m = d.month(); Year y = d.year(); return Date(monthLength(m, isLeap(y)), m, y); } inline bool Date::isEndOfMonth(const Date& d) { return (d.dayOfMonth() == monthLength(d.month(), isLeap(d.year()))); } inline BigInteger operator-(const Date& d1, const Date& d2) { return d1.serialNumber()-d2.serialNumber(); } inline bool operator==(const Date& d1, const Date& d2) { return (d1.serialNumber() == d2.serialNumber()); } inline bool operator!=(const Date& d1, const Date& d2) { return (d1.serialNumber() != d2.serialNumber()); } inline bool operator<(const Date& d1, const Date& d2) { return (d1.serialNumber() < d2.serialNumber()); } inline bool operator<=(const Date& d1, const Date& d2) { return (d1.serialNumber() <= d2.serialNumber()); } inline bool operator>(const Date& d1, const Date& d2) { return (d1.serialNumber() > d2.serialNumber()); } inline bool operator>=(const Date& d1, const Date& d2) { return (d1.serialNumber() >= d2.serialNumber()); } } #endif