/usr/include/dcmtk/ofstd/ofdatime.h is in libdcmtk-dev 3.6.2-3build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
*
* Copyright (C) 2002-2017, 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: Combined class for date and time functions
*
*/
#ifndef OFDATIME_H
#define OFDATIME_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/ofstring.h" /* for class OFString */
#include "dcmtk/ofstd/ofdate.h" /* for class OFDate */
#include "dcmtk/ofstd/oftime.h" /* for class OFTime */
/*---------------------*
* class declaration *
*---------------------*/
/** This class is a combination of OFDate and OFTime
*/
class DCMTK_OFSTD_EXPORT OFDateTime
{
public:
/** default constructor.
* Initializes Date and Time to 0.
*/
OFDateTime();
/** copy constructor
* @param dateTime date/time object to be copied
*/
OFDateTime(const OFDateTime &dateTime);
/** copy constructor
* @param dateVal date object to be copied
* @param timeVal time object to be copied
*/
OFDateTime(const OFDate &dateVal,
const OFTime &timeVal);
/** constructor
* @param year year value to be set
* @param month month value to be set
* @param day new value to be set
* @param hour hour value to be set
* @param minute minute value to be set
* @param second second value to be set (incl. fraction of seconds)
* @param timeZone optional offset to Coordinated Universal Time (UTC) in hours
*/
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 = 0);
/** destructor
*/
virtual ~OFDateTime();
/** assignment operator
* @param dateTime date/time value to be set
* @return reference to this object (with new value)
*/
virtual OFDateTime &operator=(const OFDateTime &dateTime);
/** comparison operator (equal).
* Please note that the time values are first transformed to the Coordinated Universal
* Time (UTC) before they are compared. However, the special case that there is an
* "overflow" from one day to another is currently not handled.
* @param dateTime date and time value compared with the current value
* @return OFTrue if given date and time is equal, OFFalse otherwise
*/
virtual OFBool operator==(const OFDateTime &dateTime) const;
/** comparison operator (unequal).
* Please note that the time values are first transformed to the Coordinated Universal
* Time (UTC) before they are compared. However, the special case that there is an
* "overflow" from one day to another is currently not handled.
* @param dateTime date and time value compared with the current value
* @return OFTrue if given date or time is unequal, OFFalse otherwise
*/
virtual OFBool operator!=(const OFDateTime &dateTime) const;
/** comparison operator (less than).
* Please note that the time values are first transformed to the Coordinated Universal
* Time (UTC) before they are compared. However, the special case that there is an
* "overflow" from one day to another is currently not handled.
* @param dateTime date and time value compared with the current value
* @return OFTrue if current date and time is earlier than the given value, OFFalse
* otherwise
*/
virtual OFBool operator<(const OFDateTime &dateTime) const;
/** comparison operator (less than or equal).
* Please note that the time values are first transformed to the Coordinated Universal
* Time (UTC) before they are compared. However, the special case that there is an
* "overflow" from one day to another is currently not handled.
* @param dateTime date and time value compared with the current value
* @return OFTrue if current date and time is earlier than or identical to the given value,
* OFFalse otherwise
*/
virtual OFBool operator<=(const OFDateTime &dateTime) const;
/** comparison operator (greater than or equal).
* Please note that the time values are first transformed to the Coordinated Universal
* Time (UTC) before they are compared. However, the special case that there is an
* "overflow" from one day to another is currently not handled.
* @param dateTime date and time value compared with the current value
* @return OFTrue if current date and time is later than or identical to the given value,
* OFFalse otherwise
*/
virtual OFBool operator>=(const OFDateTime &dateTime) const;
/** comparison operator (greater than).
* Please note that the time values are first transformed to the Coordinated Universal
* Time (UTC) before they are compared. However, the special case that there is an
* "overflow" from one day to another is currently not handled.
* @param dateTime date and time value compared with the current value
* @return OFTrue if current date and time is later than the given value, OFFalse
* otherwise
*/
virtual OFBool operator>(const OFDateTime &dateTime) const;
/** reset the date/time value.
* Sets all date and all time components to '0'. NB: Date becomes invalid.
*/
virtual void clear();
/** check whether the currently stored date and time value is valid.
* See classes OFDate and OFTime for details.
* @return OFTrue if the current value is valid, OFFalse otherwise
*/
virtual OFBool isValid() const;
/** set the date/time value.
* Before the new value is set it is checked using the "isValid()" routine.
* @param year new year value to be set
* @param month new month value to be set
* @param day new day value to be set
* @param hour new hour value to be set
* @param minute new minute value to be set
* @param second new second value to be set (incl. fraction of seconds)
* @param timeZone optional offset to Coordinated Universal Time (UTC) in hours
* @return OFTrue if the new value is valid and has been set, OFFalse otherwise
*/
OFBool 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 = 0);
/** set the date component to the specified date.
* Before the new value is set it is checked using the "isValid()" routine.
* @param dateVal new date value to be set
* @return OFTrue if the new value is valid and has been set, OFFalse otherwise
*/
OFBool setDate(const OFDate &dateVal);
/** set the time component to the specified time.
* Before the new value is set it is checked using the "isValid()" routine.
* @param timeVal new time value to be set
* @return OFTrue if the new value is valid and has been set, OFFalse otherwise
*/
OFBool setTime(const OFTime &timeVal);
/** set the date and time component to the specified date/time.
* Before the new value is set it is checked using the "isValid()" routine.
* @param dateVal new date value to be set
* @param timeVal new time value to be set
* @return OFTrue if the new value is valid and has been set, OFFalse otherwise
*/
OFBool setDateTime(const OFDate &dateVal,
const OFTime &timeVal);
/** set the date and time value to the current system date and time.
* This function uses operating system dependent routines. If the date or time function
* (or both) are unavailable for some reason the corresponding value is not modified.
* @return OFTrue if the current system date and time has been set, OFFalse otherwise
*/
OFBool setCurrentDateTime();
/** set the date/time value to the given ISO formatted date/time string.
* The two ISO date/time formats supported by this function are
* - "YYYY-MM-DD HH:MM[:SS [&ZZ:ZZ]]" (with arbitrary delimiters) and
* - "YYYYMMDDHHMM[SS[&ZZZZ]]" (without delimiters, useful for DICOM datetime type)
* where the brackets enclose optional parts. Please note that the optional fractional
* part of a second ".FFFFFF" (see getISOFormattedDateTime()) is not yet supported.
* @param formattedDateTime ISO formatted date/time value to be set
* @return OFTrue if input is valid and result variable has been set, OFFalse otherwise
*/
OFBool setISOFormattedDateTime(const OFString &formattedDateTime);
/** get the current date component
* @return reference to date object
*/
const OFDate &getDate() const;
/** get the current time component
* @return reference to time object
*/
const OFTime &getTime() const;
/** get the current date/time value in ISO format.
* The two ISO time formats supported by this function are
* - "YYYY-MM-DD HH:MM[:SS[.FFFFFF]] [&ZZ:ZZ]" (with delimiters) and
* - "YYYYMMDDHHMM[SS[.FFFFFF]][&ZZZZ]" (without delimiters, useful for DICOM datetime type)
* where the brackets enclose optional parts.
* @param formattedDateTime reference to string variable where the result is stored
* @param showSeconds add optional seconds (":SS" or "SS") to the resulting string if OFTrue
* @param showFraction add optional fractional part of a second (".FFFFFF") if OFTrue.
* Requires parameter 'seconds' to be also OFTrue.
* @param showTimeZone add optional time zone ("&ZZ:ZZ" or "&ZZZZ") to the resulting string
* if OFTrue. The time zone indicates the offset from the Coordinated Universal Time (UTC)
* in hours and minutes. The "&" is a placeholder for the sign symbol ("+" or "-").
* @param showDelimiter flag, indicating whether to use delimiters ("-", ":" and " ") or not
* @param dateTimeSeparator separator between ISO date and time value. Only used if
* 'showDelimiter' is true.
* @param timeZoneSeparator separator between ISO time value and time zone. Only used if
* 'showDelimiter' is true.
* @return OFTrue if result variable has been set, OFFalse otherwise
*/
OFBool getISOFormattedDateTime(OFString &formattedDateTime,
const OFBool showSeconds = OFTrue,
const OFBool showFraction = OFFalse,
const OFBool showTimeZone = OFFalse,
const OFBool showDelimiter = OFTrue,
const OFString &dateTimeSeparator = " ",
const OFString &timeZoneSeparator = " ") const;
/* --- static helper functions --- */
/** get the current system date and time
* @return date/time object with the current system date and time set
*/
static OFDateTime getCurrentDateTime();
private:
/// let DcmDateTime access the members directly
friend class DcmDateTime;
/// let DcmAttributeMatching access the members directly
friend class DcmAttributeMatching;
/// currently stored date value
OFDate Date;
/// currently stored time value
OFTime Time;
};
/** put the given date/time in ISO format on the output stream.
* If an error occurs nothing is printed.
* @param stream output stream
* @param time OFDateTime object to print
* @return reference to the output stream
*/
DCMTK_OFSTD_EXPORT STD_NAMESPACE ostream& operator<<(STD_NAMESPACE ostream& stream, const OFDateTime &dateTime);
#endif
|