mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-16 18:56:52 +02:00
set eol-style to native
This commit is contained in:
@@ -1,370 +1,370 @@
|
||||
//
|
||||
// LocalDateTime.h
|
||||
//
|
||||
// $Id: //poco/1.2/Foundation/include/Poco/LocalDateTime.h#1 $
|
||||
//
|
||||
// Library: Foundation
|
||||
// Package: DateTime
|
||||
// Module: LocalDateTime
|
||||
//
|
||||
// Definition of the LocalDateTime class.
|
||||
//
|
||||
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||||
// and Contributors.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person or organization
|
||||
// obtaining a copy of the software and accompanying documentation covered by
|
||||
// this license (the "Software") to use, reproduce, display, distribute,
|
||||
// execute, and transmit the Software, and to prepare derivative works of the
|
||||
// Software, and to permit third-parties to whom the Software is furnished to
|
||||
// do so, all subject to the following:
|
||||
//
|
||||
// The copyright notices in the Software and this entire statement, including
|
||||
// the above license grant, this restriction and the following disclaimer,
|
||||
// must be included in all copies of the Software, in whole or in part, and
|
||||
// all derivative works of the Software, unless such copies or derivative
|
||||
// works are solely in the form of machine-executable object code generated by
|
||||
// a source language processor.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
||||
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
#ifndef Foundation_LocalDateTime_INCLUDED
|
||||
#define Foundation_LocalDateTime_INCLUDED
|
||||
|
||||
|
||||
#include "Poco/Foundation.h"
|
||||
#include "Poco/DateTime.h"
|
||||
|
||||
|
||||
namespace Poco {
|
||||
|
||||
|
||||
class Foundation_API LocalDateTime
|
||||
/// This class represents an instant in local time
|
||||
/// (as opposed to UTC), expressed in years, months, days,
|
||||
/// hours, minutes, seconds and milliseconds based on the
|
||||
/// Gregorian calendar.
|
||||
///
|
||||
/// In addition to the date and time, the class also
|
||||
/// maintains a time zone differential, which denotes
|
||||
/// the difference in seconds from UTC to local time,
|
||||
/// i.e. UTC = local time - time zone differential.
|
||||
///
|
||||
/// Although LocalDateTime supports relational and arithmetic
|
||||
/// operators, all date/time comparisons and date/time arithmetics
|
||||
/// should be done in UTC, using the DateTime or Timestamp
|
||||
/// class for better performance. The relational operators
|
||||
/// normalize the dates/times involved to UTC before carrying out
|
||||
/// the comparison.
|
||||
{
|
||||
public:
|
||||
LocalDateTime();
|
||||
/// Creates a LocalDateTime with the current date/time
|
||||
/// for the current time zone.
|
||||
|
||||
LocalDateTime(int year, int month, int day, int hour = 0, int minute = 0, int second = 0, int millisecond = 0, int microsecond = 0);
|
||||
/// Creates a DateTime for the given Gregorian local date and time.
|
||||
/// * year is from 0 to 9999.
|
||||
/// * month is from 1 to 12.
|
||||
/// * day is from 1 to 31.
|
||||
/// * hour is from 0 to 23.
|
||||
/// * minute is from 0 to 59.
|
||||
/// * second is from 0 to 59.
|
||||
/// * millisecond is from 0 to 999.
|
||||
/// * microsecond is from 0 to 999.
|
||||
|
||||
LocalDateTime(int tzd, int year, int month, int day, int hour, int minute, int second, int millisecond, int microsecond);
|
||||
/// Creates a DateTime for the given Gregorian date and time in the
|
||||
/// time zone denoted by the time zone differential in tzd.
|
||||
/// * tzd is in seconds.
|
||||
/// * year is from 0 to 9999.
|
||||
/// * month is from 1 to 12.
|
||||
/// * day is from 1 to 31.
|
||||
/// * hour is from 0 to 23.
|
||||
/// * minute is from 0 to 59.
|
||||
/// * second is from 0 to 59.
|
||||
/// * millisecond is from 0 to 999.
|
||||
/// * microsecond is from 0 to 999.
|
||||
|
||||
LocalDateTime(const DateTime& dateTime);
|
||||
/// Creates a LocalDateTime from the UTC time given in dateTime,
|
||||
/// using the time zone differential of the current time zone.
|
||||
|
||||
LocalDateTime(int tzd, const DateTime& dateTime);
|
||||
/// Creates a LocalDateTime from the UTC time given in dateTime,
|
||||
/// using the given time zone differential.
|
||||
|
||||
LocalDateTime(double julianDay);
|
||||
/// Creates a LocalDateTime for the given Julian day in the local time zone.
|
||||
|
||||
LocalDateTime(int tzd, double julianDay);
|
||||
/// Creates a LocalDateTime for the given Julian day in the time zone
|
||||
/// denoted by the time zone differential in tzd.
|
||||
|
||||
LocalDateTime(const LocalDateTime& dateTime);
|
||||
/// Copy constructor. Creates the LocalDateTime from another one.
|
||||
|
||||
~LocalDateTime();
|
||||
/// Destroys the LocalDateTime.
|
||||
|
||||
LocalDateTime& operator = (const LocalDateTime& dateTime);
|
||||
/// Assigns another LocalDateTime.
|
||||
|
||||
LocalDateTime& operator = (const Timestamp& timestamp);
|
||||
/// Assigns a timestamp
|
||||
|
||||
LocalDateTime& operator = (double julianDay);
|
||||
/// Assigns a Julian day in the local time zone.
|
||||
|
||||
LocalDateTime& assign(int year, int month, int day, int hour = 0, int minute = 0, int second = 0, int millisecond = 0, int microseconds = 0);
|
||||
/// Assigns a Gregorian local date and time.
|
||||
/// * year is from 0 to 9999.
|
||||
/// * month is from 1 to 12.
|
||||
/// * day is from 1 to 31.
|
||||
/// * hour is from 0 to 23.
|
||||
/// * minute is from 0 to 59.
|
||||
/// * second is from 0 to 59.
|
||||
/// * millisecond is from 0 to 999.
|
||||
/// * microsecond is from 0 to 999.
|
||||
|
||||
LocalDateTime& assign(int tzd, int year, int month, int day, int hour, int minute, int second, int millisecond, int microseconds);
|
||||
/// Assigns a Gregorian local date and time in the time zone denoted by
|
||||
/// the time zone differential in tzd.
|
||||
/// * tzd is in seconds.
|
||||
/// * year is from 0 to 9999.
|
||||
/// * month is from 1 to 12.
|
||||
/// * day is from 1 to 31.
|
||||
/// * hour is from 0 to 23.
|
||||
/// * minute is from 0 to 59.
|
||||
/// * second is from 0 to 59.
|
||||
/// * millisecond is from 0 to 999.
|
||||
/// * microsecond is from 0 to 999.
|
||||
|
||||
LocalDateTime& assign(int tzd, double julianDay);
|
||||
/// Assigns a Julian day in the time zone denoted by the
|
||||
/// time zone differential in tzd.
|
||||
|
||||
void swap(LocalDateTime& dateTime);
|
||||
/// Swaps the LocalDateTime with another one.
|
||||
|
||||
int year() const;
|
||||
/// Returns the year.
|
||||
|
||||
int month() const;
|
||||
/// Returns the month (1 to 12).
|
||||
|
||||
int week(int firstDayOfWeek = DateTime::MONDAY) const;
|
||||
/// Returns the week number within the year.
|
||||
/// FirstDayOfWeek should be either SUNDAY (0) or MONDAY (1).
|
||||
/// The returned week number will be from 0 to 53. Week number 1 is the week
|
||||
/// containing January 4. This is in accordance to ISO 8601.
|
||||
///
|
||||
/// The following example assumes that firstDayOfWeek is MONDAY. For 2005, which started
|
||||
/// on a Saturday, week 1 will be the week starting on Monday, January 3.
|
||||
/// January 1 and 2 will fall within week 0 (or the last week of the previous year).
|
||||
///
|
||||
/// For 2007, which starts on a Monday, week 1 will be the week startung on Monday, January 1.
|
||||
/// There will be no week 0 in 2007.
|
||||
|
||||
int day() const;
|
||||
/// Returns the day witin the month (1 to 31).
|
||||
|
||||
int dayOfWeek() const;
|
||||
/// Returns the weekday (0 to 6, where
|
||||
/// 0 = Sunday, 1 = Monday, ..., 6 = Saturday).
|
||||
|
||||
int dayOfYear() const;
|
||||
/// Returns the number of the day in the year.
|
||||
/// January 1 is 1, February 1 is 32, etc.
|
||||
|
||||
int hour() const;
|
||||
/// Returns the hour (0 to 23).
|
||||
|
||||
int hourAMPM() const;
|
||||
/// Returns the hour (0 to 12).
|
||||
|
||||
bool isAM() const;
|
||||
/// Returns true if hour < 12;
|
||||
|
||||
bool isPM() const;
|
||||
/// Returns true if hour >= 12.
|
||||
|
||||
int minute() const;
|
||||
/// Returns the minute (0 to 59).
|
||||
|
||||
int second() const;
|
||||
/// Returns the second (0 to 59).
|
||||
|
||||
int millisecond() const;
|
||||
/// Returns the millisecond (0 to 999)
|
||||
|
||||
int microsecond() const;
|
||||
/// Returns the microsecond (0 to 999)
|
||||
|
||||
double julianDay() const;
|
||||
/// Returns the julian day for the date.
|
||||
|
||||
int tzd() const;
|
||||
/// Returns the time zone differential.
|
||||
|
||||
DateTime utc() const;
|
||||
/// Returns the UTC equivalent for the local date and time.
|
||||
|
||||
Timestamp timestamp() const;
|
||||
/// Returns the date and time expressed as a Timestamp.
|
||||
|
||||
Timestamp::UtcTimeVal utcTime() const;
|
||||
/// Returns the UTC equivalent for the local date and time.
|
||||
|
||||
bool operator == (const LocalDateTime& dateTime) const;
|
||||
bool operator != (const LocalDateTime& dateTime) const;
|
||||
bool operator < (const LocalDateTime& dateTime) const;
|
||||
bool operator <= (const LocalDateTime& dateTime) const;
|
||||
bool operator > (const LocalDateTime& dateTime) const;
|
||||
bool operator >= (const LocalDateTime& dateTime) const;
|
||||
|
||||
LocalDateTime operator + (const Timespan& span) const;
|
||||
LocalDateTime operator - (const Timespan& span) const;
|
||||
Timespan operator - (const LocalDateTime& dateTime) const;
|
||||
LocalDateTime& operator += (const Timespan& span);
|
||||
LocalDateTime& operator -= (const Timespan& span);
|
||||
|
||||
protected:
|
||||
LocalDateTime(Timestamp::UtcTimeVal utcTime, Timestamp::TimeDiff diff, int tzd);
|
||||
|
||||
private:
|
||||
DateTime _dateTime;
|
||||
int _tzd;
|
||||
|
||||
friend class DateTimeFormatter;
|
||||
friend class DateTimeParser;
|
||||
};
|
||||
|
||||
|
||||
//
|
||||
// inlines
|
||||
//
|
||||
inline int LocalDateTime::year() const
|
||||
{
|
||||
return _dateTime.year();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::month() const
|
||||
{
|
||||
return _dateTime.month();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::week(int firstDayOfWeek) const
|
||||
{
|
||||
return _dateTime.week(firstDayOfWeek);
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::day() const
|
||||
{
|
||||
return _dateTime.day();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::dayOfWeek() const
|
||||
{
|
||||
return _dateTime.dayOfWeek();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::dayOfYear() const
|
||||
{
|
||||
return _dateTime.dayOfYear();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::hour() const
|
||||
{
|
||||
return _dateTime.hour();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::hourAMPM() const
|
||||
{
|
||||
return _dateTime.hourAMPM();
|
||||
}
|
||||
|
||||
|
||||
inline bool LocalDateTime::isAM() const
|
||||
{
|
||||
return _dateTime.isAM();
|
||||
}
|
||||
|
||||
|
||||
inline bool LocalDateTime::isPM() const
|
||||
{
|
||||
return _dateTime.isPM();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::minute() const
|
||||
{
|
||||
return _dateTime.minute();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::second() const
|
||||
{
|
||||
return _dateTime.second();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::millisecond() const
|
||||
{
|
||||
return _dateTime.millisecond();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::microsecond() const
|
||||
{
|
||||
return _dateTime.microsecond();
|
||||
}
|
||||
|
||||
|
||||
inline double LocalDateTime::julianDay() const
|
||||
{
|
||||
return _dateTime.julianDay();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::tzd() const
|
||||
{
|
||||
return _tzd;
|
||||
}
|
||||
|
||||
inline Timestamp LocalDateTime::timestamp() const
|
||||
{
|
||||
return Timestamp::fromUtcTime(_dateTime.utcTime());
|
||||
}
|
||||
|
||||
inline Timestamp::UtcTimeVal LocalDateTime::utcTime() const
|
||||
{
|
||||
return _dateTime.utcTime() - ((Timestamp::TimeDiff) _tzd)*10000000;
|
||||
}
|
||||
|
||||
|
||||
inline void swap(LocalDateTime& d1, LocalDateTime& d2)
|
||||
{
|
||||
d1.swap(d2);
|
||||
}
|
||||
|
||||
|
||||
} // namespace Poco
|
||||
|
||||
|
||||
#endif // Foundation_LocalDateTime_INCLUDED
|
||||
//
|
||||
// LocalDateTime.h
|
||||
//
|
||||
// $Id: //poco/1.2/Foundation/include/Poco/LocalDateTime.h#1 $
|
||||
//
|
||||
// Library: Foundation
|
||||
// Package: DateTime
|
||||
// Module: LocalDateTime
|
||||
//
|
||||
// Definition of the LocalDateTime class.
|
||||
//
|
||||
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||||
// and Contributors.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person or organization
|
||||
// obtaining a copy of the software and accompanying documentation covered by
|
||||
// this license (the "Software") to use, reproduce, display, distribute,
|
||||
// execute, and transmit the Software, and to prepare derivative works of the
|
||||
// Software, and to permit third-parties to whom the Software is furnished to
|
||||
// do so, all subject to the following:
|
||||
//
|
||||
// The copyright notices in the Software and this entire statement, including
|
||||
// the above license grant, this restriction and the following disclaimer,
|
||||
// must be included in all copies of the Software, in whole or in part, and
|
||||
// all derivative works of the Software, unless such copies or derivative
|
||||
// works are solely in the form of machine-executable object code generated by
|
||||
// a source language processor.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
||||
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
||||
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
||||
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
#ifndef Foundation_LocalDateTime_INCLUDED
|
||||
#define Foundation_LocalDateTime_INCLUDED
|
||||
|
||||
|
||||
#include "Poco/Foundation.h"
|
||||
#include "Poco/DateTime.h"
|
||||
|
||||
|
||||
namespace Poco {
|
||||
|
||||
|
||||
class Foundation_API LocalDateTime
|
||||
/// This class represents an instant in local time
|
||||
/// (as opposed to UTC), expressed in years, months, days,
|
||||
/// hours, minutes, seconds and milliseconds based on the
|
||||
/// Gregorian calendar.
|
||||
///
|
||||
/// In addition to the date and time, the class also
|
||||
/// maintains a time zone differential, which denotes
|
||||
/// the difference in seconds from UTC to local time,
|
||||
/// i.e. UTC = local time - time zone differential.
|
||||
///
|
||||
/// Although LocalDateTime supports relational and arithmetic
|
||||
/// operators, all date/time comparisons and date/time arithmetics
|
||||
/// should be done in UTC, using the DateTime or Timestamp
|
||||
/// class for better performance. The relational operators
|
||||
/// normalize the dates/times involved to UTC before carrying out
|
||||
/// the comparison.
|
||||
{
|
||||
public:
|
||||
LocalDateTime();
|
||||
/// Creates a LocalDateTime with the current date/time
|
||||
/// for the current time zone.
|
||||
|
||||
LocalDateTime(int year, int month, int day, int hour = 0, int minute = 0, int second = 0, int millisecond = 0, int microsecond = 0);
|
||||
/// Creates a DateTime for the given Gregorian local date and time.
|
||||
/// * year is from 0 to 9999.
|
||||
/// * month is from 1 to 12.
|
||||
/// * day is from 1 to 31.
|
||||
/// * hour is from 0 to 23.
|
||||
/// * minute is from 0 to 59.
|
||||
/// * second is from 0 to 59.
|
||||
/// * millisecond is from 0 to 999.
|
||||
/// * microsecond is from 0 to 999.
|
||||
|
||||
LocalDateTime(int tzd, int year, int month, int day, int hour, int minute, int second, int millisecond, int microsecond);
|
||||
/// Creates a DateTime for the given Gregorian date and time in the
|
||||
/// time zone denoted by the time zone differential in tzd.
|
||||
/// * tzd is in seconds.
|
||||
/// * year is from 0 to 9999.
|
||||
/// * month is from 1 to 12.
|
||||
/// * day is from 1 to 31.
|
||||
/// * hour is from 0 to 23.
|
||||
/// * minute is from 0 to 59.
|
||||
/// * second is from 0 to 59.
|
||||
/// * millisecond is from 0 to 999.
|
||||
/// * microsecond is from 0 to 999.
|
||||
|
||||
LocalDateTime(const DateTime& dateTime);
|
||||
/// Creates a LocalDateTime from the UTC time given in dateTime,
|
||||
/// using the time zone differential of the current time zone.
|
||||
|
||||
LocalDateTime(int tzd, const DateTime& dateTime);
|
||||
/// Creates a LocalDateTime from the UTC time given in dateTime,
|
||||
/// using the given time zone differential.
|
||||
|
||||
LocalDateTime(double julianDay);
|
||||
/// Creates a LocalDateTime for the given Julian day in the local time zone.
|
||||
|
||||
LocalDateTime(int tzd, double julianDay);
|
||||
/// Creates a LocalDateTime for the given Julian day in the time zone
|
||||
/// denoted by the time zone differential in tzd.
|
||||
|
||||
LocalDateTime(const LocalDateTime& dateTime);
|
||||
/// Copy constructor. Creates the LocalDateTime from another one.
|
||||
|
||||
~LocalDateTime();
|
||||
/// Destroys the LocalDateTime.
|
||||
|
||||
LocalDateTime& operator = (const LocalDateTime& dateTime);
|
||||
/// Assigns another LocalDateTime.
|
||||
|
||||
LocalDateTime& operator = (const Timestamp& timestamp);
|
||||
/// Assigns a timestamp
|
||||
|
||||
LocalDateTime& operator = (double julianDay);
|
||||
/// Assigns a Julian day in the local time zone.
|
||||
|
||||
LocalDateTime& assign(int year, int month, int day, int hour = 0, int minute = 0, int second = 0, int millisecond = 0, int microseconds = 0);
|
||||
/// Assigns a Gregorian local date and time.
|
||||
/// * year is from 0 to 9999.
|
||||
/// * month is from 1 to 12.
|
||||
/// * day is from 1 to 31.
|
||||
/// * hour is from 0 to 23.
|
||||
/// * minute is from 0 to 59.
|
||||
/// * second is from 0 to 59.
|
||||
/// * millisecond is from 0 to 999.
|
||||
/// * microsecond is from 0 to 999.
|
||||
|
||||
LocalDateTime& assign(int tzd, int year, int month, int day, int hour, int minute, int second, int millisecond, int microseconds);
|
||||
/// Assigns a Gregorian local date and time in the time zone denoted by
|
||||
/// the time zone differential in tzd.
|
||||
/// * tzd is in seconds.
|
||||
/// * year is from 0 to 9999.
|
||||
/// * month is from 1 to 12.
|
||||
/// * day is from 1 to 31.
|
||||
/// * hour is from 0 to 23.
|
||||
/// * minute is from 0 to 59.
|
||||
/// * second is from 0 to 59.
|
||||
/// * millisecond is from 0 to 999.
|
||||
/// * microsecond is from 0 to 999.
|
||||
|
||||
LocalDateTime& assign(int tzd, double julianDay);
|
||||
/// Assigns a Julian day in the time zone denoted by the
|
||||
/// time zone differential in tzd.
|
||||
|
||||
void swap(LocalDateTime& dateTime);
|
||||
/// Swaps the LocalDateTime with another one.
|
||||
|
||||
int year() const;
|
||||
/// Returns the year.
|
||||
|
||||
int month() const;
|
||||
/// Returns the month (1 to 12).
|
||||
|
||||
int week(int firstDayOfWeek = DateTime::MONDAY) const;
|
||||
/// Returns the week number within the year.
|
||||
/// FirstDayOfWeek should be either SUNDAY (0) or MONDAY (1).
|
||||
/// The returned week number will be from 0 to 53. Week number 1 is the week
|
||||
/// containing January 4. This is in accordance to ISO 8601.
|
||||
///
|
||||
/// The following example assumes that firstDayOfWeek is MONDAY. For 2005, which started
|
||||
/// on a Saturday, week 1 will be the week starting on Monday, January 3.
|
||||
/// January 1 and 2 will fall within week 0 (or the last week of the previous year).
|
||||
///
|
||||
/// For 2007, which starts on a Monday, week 1 will be the week startung on Monday, January 1.
|
||||
/// There will be no week 0 in 2007.
|
||||
|
||||
int day() const;
|
||||
/// Returns the day witin the month (1 to 31).
|
||||
|
||||
int dayOfWeek() const;
|
||||
/// Returns the weekday (0 to 6, where
|
||||
/// 0 = Sunday, 1 = Monday, ..., 6 = Saturday).
|
||||
|
||||
int dayOfYear() const;
|
||||
/// Returns the number of the day in the year.
|
||||
/// January 1 is 1, February 1 is 32, etc.
|
||||
|
||||
int hour() const;
|
||||
/// Returns the hour (0 to 23).
|
||||
|
||||
int hourAMPM() const;
|
||||
/// Returns the hour (0 to 12).
|
||||
|
||||
bool isAM() const;
|
||||
/// Returns true if hour < 12;
|
||||
|
||||
bool isPM() const;
|
||||
/// Returns true if hour >= 12.
|
||||
|
||||
int minute() const;
|
||||
/// Returns the minute (0 to 59).
|
||||
|
||||
int second() const;
|
||||
/// Returns the second (0 to 59).
|
||||
|
||||
int millisecond() const;
|
||||
/// Returns the millisecond (0 to 999)
|
||||
|
||||
int microsecond() const;
|
||||
/// Returns the microsecond (0 to 999)
|
||||
|
||||
double julianDay() const;
|
||||
/// Returns the julian day for the date.
|
||||
|
||||
int tzd() const;
|
||||
/// Returns the time zone differential.
|
||||
|
||||
DateTime utc() const;
|
||||
/// Returns the UTC equivalent for the local date and time.
|
||||
|
||||
Timestamp timestamp() const;
|
||||
/// Returns the date and time expressed as a Timestamp.
|
||||
|
||||
Timestamp::UtcTimeVal utcTime() const;
|
||||
/// Returns the UTC equivalent for the local date and time.
|
||||
|
||||
bool operator == (const LocalDateTime& dateTime) const;
|
||||
bool operator != (const LocalDateTime& dateTime) const;
|
||||
bool operator < (const LocalDateTime& dateTime) const;
|
||||
bool operator <= (const LocalDateTime& dateTime) const;
|
||||
bool operator > (const LocalDateTime& dateTime) const;
|
||||
bool operator >= (const LocalDateTime& dateTime) const;
|
||||
|
||||
LocalDateTime operator + (const Timespan& span) const;
|
||||
LocalDateTime operator - (const Timespan& span) const;
|
||||
Timespan operator - (const LocalDateTime& dateTime) const;
|
||||
LocalDateTime& operator += (const Timespan& span);
|
||||
LocalDateTime& operator -= (const Timespan& span);
|
||||
|
||||
protected:
|
||||
LocalDateTime(Timestamp::UtcTimeVal utcTime, Timestamp::TimeDiff diff, int tzd);
|
||||
|
||||
private:
|
||||
DateTime _dateTime;
|
||||
int _tzd;
|
||||
|
||||
friend class DateTimeFormatter;
|
||||
friend class DateTimeParser;
|
||||
};
|
||||
|
||||
|
||||
//
|
||||
// inlines
|
||||
//
|
||||
inline int LocalDateTime::year() const
|
||||
{
|
||||
return _dateTime.year();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::month() const
|
||||
{
|
||||
return _dateTime.month();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::week(int firstDayOfWeek) const
|
||||
{
|
||||
return _dateTime.week(firstDayOfWeek);
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::day() const
|
||||
{
|
||||
return _dateTime.day();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::dayOfWeek() const
|
||||
{
|
||||
return _dateTime.dayOfWeek();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::dayOfYear() const
|
||||
{
|
||||
return _dateTime.dayOfYear();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::hour() const
|
||||
{
|
||||
return _dateTime.hour();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::hourAMPM() const
|
||||
{
|
||||
return _dateTime.hourAMPM();
|
||||
}
|
||||
|
||||
|
||||
inline bool LocalDateTime::isAM() const
|
||||
{
|
||||
return _dateTime.isAM();
|
||||
}
|
||||
|
||||
|
||||
inline bool LocalDateTime::isPM() const
|
||||
{
|
||||
return _dateTime.isPM();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::minute() const
|
||||
{
|
||||
return _dateTime.minute();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::second() const
|
||||
{
|
||||
return _dateTime.second();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::millisecond() const
|
||||
{
|
||||
return _dateTime.millisecond();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::microsecond() const
|
||||
{
|
||||
return _dateTime.microsecond();
|
||||
}
|
||||
|
||||
|
||||
inline double LocalDateTime::julianDay() const
|
||||
{
|
||||
return _dateTime.julianDay();
|
||||
}
|
||||
|
||||
|
||||
inline int LocalDateTime::tzd() const
|
||||
{
|
||||
return _tzd;
|
||||
}
|
||||
|
||||
inline Timestamp LocalDateTime::timestamp() const
|
||||
{
|
||||
return Timestamp::fromUtcTime(_dateTime.utcTime());
|
||||
}
|
||||
|
||||
inline Timestamp::UtcTimeVal LocalDateTime::utcTime() const
|
||||
{
|
||||
return _dateTime.utcTime() - ((Timestamp::TimeDiff) _tzd)*10000000;
|
||||
}
|
||||
|
||||
|
||||
inline void swap(LocalDateTime& d1, LocalDateTime& d2)
|
||||
{
|
||||
d1.swap(d2);
|
||||
}
|
||||
|
||||
|
||||
} // namespace Poco
|
||||
|
||||
|
||||
#endif // Foundation_LocalDateTime_INCLUDED
|
||||
|
Reference in New Issue
Block a user