1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
/*
*
* Copyright (C) 2002-2021, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: ofstd
*
* Author: Joerg Riesmeier
*
* Purpose: Class for date and time functions (Source)
*
*/
#include "dcmtk/config/osconfig.h"
#ifdef HAVE_SYS_TYPES_H
BEGIN_EXTERN_C
#include <sys/types.h> /* for struct time_t */
END_EXTERN_C
#endif
#include "dcmtk/ofstd/ofdatime.h"
#include "dcmtk/ofstd/ofstdinc.h"
#include <ctime>
/*------------------*
* implementation *
*------------------*/
OFDateTime::OFDateTime()
: Date(),
Time()
{
}
OFDateTime::OFDateTime(const OFDateTime &dateTime)
: Date(dateTime.Date),
Time(dateTime.Time)
{
}
OFDateTime::OFDateTime(const OFDate &dateVal,
const OFTime &timeVal)
: Date(dateVal),
Time(timeVal)
{
}
OFDateTime::OFDateTime(const unsigned int year,
const unsigned int month,
const unsigned int day,
const unsigned int hour,
const unsigned int minute,
const double second,
const double timeZone)
: Date(year, month, day),
Time(hour, minute, second, timeZone)
{
}
OFDateTime::~OFDateTime()
{
}
OFDateTime &OFDateTime::operator=(const OFDateTime &dateTime)
{
Date = dateTime.Date;
Time = dateTime.Time;
return *this;
}
OFBool OFDateTime::operator==(const OFDateTime &dateTime) const
{
/* note that the "overflow" from one day to another is currently not handled */
return (Date == dateTime.Date) && (Time == dateTime.Time);
}
OFBool OFDateTime::operator!=(const OFDateTime &dateTime) const
{
/* note that the "overflow" from one day to another is currently not handled */
return (Date != dateTime.Date) || (Time != dateTime.Time);
}
OFBool OFDateTime::operator<(const OFDateTime &dateTime) const
{
/* note that the "overflow" from one day to another is currently not handled */
return (Date < dateTime.Date) || ((Date == dateTime.Date) && (Time < dateTime.Time));
}
OFBool OFDateTime::operator<=(const OFDateTime &dateTime) const
{
/* note that the "overflow" from one day to another is currently not handled */
return (Date < dateTime.Date) || ((Date == dateTime.Date) && (Time <= dateTime.Time));
}
OFBool OFDateTime::operator>(const OFDateTime &dateTime) const
{
return (dateTime < *this);
}
OFBool OFDateTime::operator>=(const OFDateTime &dateTime) const
{
return (dateTime <= *this);
}
void OFDateTime::clear()
{
Date.clear();
Time.clear();
}
OFBool OFDateTime::isValid() const
{
/* check current date settings */
return Date.isValid() && Time.isValid();
}
OFBool OFDateTime::setDateTime(const unsigned int year,
const unsigned int month,
const unsigned int day,
const unsigned int hour,
const unsigned int minute,
const double second,
const double timeZone)
{
OFBool result = OFFalse;
/* check whether new date and time are valid */
if (OFDate::isDateValid(year, month, day) && OFTime::isTimeValid(hour, minute, second, timeZone))
result = Date.setDate(year, month, day) && Time.setTime(hour, minute, second, timeZone);
return result;
}
OFBool OFDateTime::setDate(const OFDate &dateVal)
{
OFBool result = OFFalse;
/* check whether new date is valid */
if (dateVal.isValid())
{
Date = dateVal;
result = OFTrue;
}
return result;
}
OFBool OFDateTime::setTime(const OFTime &timeVal)
{
OFBool result = OFFalse;
/* check whether new time is valid */
if (timeVal.isValid())
{
Time = timeVal;
result = OFTrue;
}
return result;
}
OFBool OFDateTime::setDateTime(const OFDate &dateVal,
const OFTime &timeVal)
{
const OFBool result = setDate(dateVal);
/* make sure that time value is set even if date is invalid */
return setTime(timeVal) && result;
}
OFBool OFDateTime::setCurrentDateTime()
{
/* set current system date and time, use the same "time_t" struct to avoid inconsistencies */
time_t tt = time(NULL);
return Date.setCurrentDate(tt) && Time.setCurrentTime(tt);
}
OFBool OFDateTime::setISOFormattedDateTime(const OFString &formattedDateTime)
{
OFBool result = OFFalse;
const size_t length = formattedDateTime.length();
const size_t firstSep = formattedDateTime.find_first_not_of("0123456789");
const OFBool separators = (firstSep != OFString_npos);
/* check for supported formats: "YYYYMMDDHHMM[SS]" or "YYYYMMDDHHMMSS&ZZZZ" */
if (((((length == 12) || (length == 14)) && !separators) ||
((length == 19) && (firstSep == 14) && ((formattedDateTime[14] == '+') || (formattedDateTime[14] == '-')))))
{
if (Date.setISOFormattedDate(formattedDateTime.substr(0, 8)) && Time.setISOFormattedTime(formattedDateTime.substr(8)))
result = OFTrue;
}
/* "YYYY-MM-DD HH:MM[:SS]" or "YYYY-MM-DD HH:MM:SS &ZZ:ZZ" */
else if ((length >= 16) && separators)
{
if (Date.setISOFormattedDate(formattedDateTime.substr(0, 10)))
{
size_t pos = 10;
/* search for first digit of the time value (skip arbitrary separators) */
while ((pos < length) && !isdigit(OFstatic_cast(unsigned char, formattedDateTime.at(pos))))
++pos;
if ((pos < length) && Time.setISOFormattedTime(formattedDateTime.substr(pos)))
result = OFTrue;
}
}
return result;
}
const OFDate &OFDateTime::getDate() const
{
return Date;
}
const OFTime &OFDateTime::getTime() const
{
return Time;
}
OFBool OFDateTime::getISOFormattedDateTime(OFString &formattedDateTime,
const OFBool showSeconds,
const OFBool showFraction,
const OFBool showTimeZone,
const OFBool showDelimiter,
const OFString &dateTimeSeparator,
const OFString &timeZoneSeparator) const
{
/* get formatted date first component */
OFBool result = Date.getISOFormattedDate(formattedDateTime, showDelimiter);
if (result)
{
/* ... then get the formatted time component */
OFString timeString;
if (Time.getISOFormattedTime(timeString, showSeconds, showFraction, showTimeZone, showDelimiter, timeZoneSeparator))
{
if (showDelimiter)
formattedDateTime += dateTimeSeparator;
formattedDateTime += timeString;
}
} else {
/* clear result variable in case of error */
formattedDateTime.clear();
}
return result;
}
OFDateTime OFDateTime::getCurrentDateTime()
{
/* create a date/time object with the current system date/time set */
OFDateTime dateTime;
/* this call might fail! */
dateTime.setCurrentDateTime();
/* return by-value */
return dateTime;
}
STD_NAMESPACE ostream& operator<<(STD_NAMESPACE ostream& stream, const OFDateTime &dateTime)
{
OFString string;
/* print the given date and time in ISO format to the stream */
if (dateTime.getISOFormattedDateTime(string))
stream << string;
return stream;
}
|