Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
DateTimeStamp.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2//
3// ActiveParts (AP) and the corresponding Data Flow Framework (DFF) is invented and designed by Jakob Daescher.
4// ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS OF THE COPYRIGHT NOTICE.
5// ===================================================================================================
6// COPYRIGHT NOTICE
7// ===================================================================================================
8// Copyright (C) 2005-2075, IMT Information Management Technology AG, 9470 Buchs, Switzerland
9// All rights reserved.
10// This code is proprietary software of IMT Information Management Technology AG (hereinafter: "IMT").
11// Proprietary software is computer software licensed under exclusive legal right of IMT.
12//
13// The licensee is given the irrevocable, perpetual, worldwide, non-exclusive right and license to use,
14// execute and reproduce the software in binary form within the licensed products.
15//
16// Redistribution and use in source forms, without modification, are permitted provided that the following conditions are met:
17// (1) Copying of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18// (2) Copying of source code is only allowed for regulatory documentation and archiving purposes
19// (3) Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
21//
22// IMT provide no reassurances that the source code provided does not infringe
23// any patent, copyright, or any other intellectual property rights of third parties.
24// IMT disclaim any liability to any recipient for claims brought against
25// recipient by any third party for infringement of that parties intellectual property rights.
26//
27// THIS SOFTWARE IS PROVIDED BY IMT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL IMT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCURE-MENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34// ===================================================================================================
35
36#ifndef IMT_BASE_CORE_UTIL_DATETIMESTAMP_H
37#define IMT_BASE_CORE_UTIL_DATETIMESTAMP_H
38
40
41namespace imt {
42namespace base {
43namespace core {
44namespace util {
45
49class DateTimeStamp final {
50
51public:
52
56 DateTimeStamp() = default;
57
68 explicit DateTimeStamp(uint16_t const year, uint8_t const month = 1U, uint8_t const day = 1U, uint8_t const hour = 0U, uint8_t const minute = 0U, uint8_t const second = 0U);
69
73 DateTimeStamp(DateTimeStamp const&) noexcept = default;
74
78 DateTimeStamp(DateTimeStamp&&) noexcept = default;
79
83 ~DateTimeStamp() = default;
84
88 DateTimeStamp& operator=(DateTimeStamp const&) & noexcept = default;
89
93 DateTimeStamp& operator=(DateTimeStamp&&) & noexcept = default;
94
99 void addDays(uint32_t const days);
100
105 void addHours(uint32_t const hours);
106
111 void addMinutes(uint32_t const minutes);
112
117 void addSeconds(uint32_t const seconds);
118
123 inline uint16_t getYear() const {
124 return m_year;
125 }
126
132
137 void setYear(uint16_t const year);
138
143 inline uint8_t getMonth() const {
144 return m_month;
145 }
146
151 void setMonth(uint8_t const month);
152
157 inline uint8_t getDay() const {
158 return m_day;
159 }
160
165 void setDay(uint8_t const day);
166
171 inline uint8_t getHour() const {
172 return m_hour;
173 }
174
179 void setHour(uint8_t const hour);
180
185 inline uint8_t getMinute() const {
186 return m_minute;
187 }
188
193 void setMinute(uint8_t const minute);
194
199 inline uint8_t getSecond() const {
200 return m_second;
201 }
202
207 void setSecond(uint8_t const second);
208
215 static uint8_t getNumberOfDaysOfMonth(uint8_t const month, uint16_t const year);
216
222 static bool isLeapYear(uint16_t const year);
223
232 static uint32_t getDifferenceDays(DateTimeStamp const date1, DateTimeStamp const date2);
233
238 void subtractDays(uint32_t const days);
239
244 void subtractHours(uint32_t const hours);
245
250 void subtractMinutes(uint32_t const minutes);
251
256 void subtractSeconds(uint32_t const seconds);
257
258private:
259
260 static uint32_t getDifferenceDaysInSameYear(DateTimeStamp const start, DateTimeStamp const end);
261 static uint32_t getDifferenceDaysOverMultipleYears(DateTimeStamp const start, DateTimeStamp const end, uint16_t const yearDifference);
262
263 uint16_t m_year;
264 uint8_t m_month;
265 uint8_t m_day;
266 uint8_t m_hour;
267 uint8_t m_minute;
268 uint8_t m_second;
269};
270
277bool operator==(DateTimeStamp const left, DateTimeStamp const right) noexcept;
278
285bool operator!=(DateTimeStamp const left, DateTimeStamp const right) noexcept;
286
293bool operator>(DateTimeStamp const left, DateTimeStamp const right) noexcept;
294
301bool operator<(DateTimeStamp const left, DateTimeStamp const right) noexcept;
302
309bool operator>=(DateTimeStamp const left, DateTimeStamp const right) noexcept;
310
317bool operator<=(DateTimeStamp const left, DateTimeStamp const right) noexcept;
318
319} // namespace util
320} // namespace core
321} // namespace base
322} // namespace imt
323
324#endif // IMT_BASE_CORE_UTIL_DATETIMESTAMP_H
Class to access date and time information.
uint8_t getHour() const
Returns the current hour.
void subtractSeconds(uint32_t const seconds)
Subtracts the given amount of seconds from the timestamp.
DateTimeStamp(uint16_t const year, uint8_t const month=1U, uint8_t const day=1U, uint8_t const hour=0U, uint8_t const minute=0U, uint8_t const second=0U)
Constructor for DateTimeStamps with full date and time information.
DateTimeStamp(DateTimeStamp &&) noexcept=default
Move Constructor.
uint8_t getMinute() const
Returns the current minute.
static uint32_t getDifferenceDays(DateTimeStamp const date1, DateTimeStamp const date2)
Calculates the difference in days of two DateTimeStamps.
void addDays(uint32_t const days)
Adds the given amount of days to the timestamp.
void setYear(uint16_t const year)
Sets the year.
void setHour(uint8_t const hour)
Sets the hour.
uint8_t getMonth() const
Returns the current month.
void setDay(uint8_t const day)
Sets the day.
void setSecond(uint8_t const second)
Sets the second.
DateTimeStamp()=default
Constructor for an empty and invalid date.
void subtractMinutes(uint32_t const minutes)
Subtracts the given amount of days from the timestamp.
static uint8_t getNumberOfDaysOfMonth(uint8_t const month, uint16_t const year)
Gets the number of days of the given month.
DateTimeStamp(DateTimeStamp const &) noexcept=default
Copy Constructor.
uint16_t getYearShort() const
Returns the current year - the last two digits.
void addMinutes(uint32_t const minutes)
Adds the given amount of days to the timestamp.
void setMonth(uint8_t const month)
Sets the month.
static bool isLeapYear(uint16_t const year)
Returns true if the given year is a leap year.
void subtractDays(uint32_t const days)
Subtracts the given amount of days from the timestamp.
void addHours(uint32_t const hours)
Adds the given amount of days to the timestamp.
void subtractHours(uint32_t const hours)
Subtracts the given amount of days from the timestamp.
uint8_t getDay() const
Returns the current day.
uint8_t getSecond() const
Returns the current second.
void setMinute(uint8_t const minute)
Sets the minute.
void addSeconds(uint32_t const seconds)
Adds the given amount of seconds to the timestamp.
uint16_t getYear() const
Returns the current year.
bool operator<(DateTimeStamp const left, DateTimeStamp const right) noexcept
Less than operator overload.
bool operator>=(DateTimeStamp const left, DateTimeStamp const right) noexcept
Greater than or equal operator overload.
bool operator>(DateTimeStamp const left, DateTimeStamp const right) noexcept
Greater than operator overload.
bool operator<=(DateTimeStamp const left, DateTimeStamp const right) noexcept
Less than or equal operator overload.
bool operator==(DateTimeStamp const left, DateTimeStamp const right) noexcept
Equals operator overload.
bool operator!=(DateTimeStamp const left, DateTimeStamp const right) noexcept
Not equals operator overload.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int16 uint16_t
Definition stdint.h:63
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62