/usr/include/BALL/CONCEPT/timeStamp.h is in libball1.4-dev 1.4.3~beta1-4.
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 287 288 289 290 291 292 293 294 295 296 297 298 | // -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#ifndef BALL_CONCEPT_TIMESTAMP_H
#define BALL_CONCEPT_TIMESTAMP_H
#ifndef BALL_CONFIG_CONFIG_H
# include <BALL/CONFIG/config.h>
#endif
#ifndef BALL_COMMON_CREATE_H
# include <BALL/COMMON/create.h>
#endif
#ifndef BALL_COMMON_DEBUG_H
# include <BALL/COMMON/debug.h>
#endif
#ifndef BALL_CONCEPT_PERSISTENCEMANAGER_H
# include <BALL/CONCEPT/persistenceManager.h>
#endif
#include <iostream>
namespace BALL
{
/** Time class.
Used to store a point of time.
This class provides a higher precision than \link Time Time \endlink
(below seconds). \par
<b>Interface:</b> <tt>Storable</tt> \par
\ingroup ConceptsMiscellaneous
*/
class BALL_EXPORT PreciseTime
{
public:
BALL_CREATE(PreciseTime)
/** @name Constructors and Destructors.
*/
//@{
/** Default constructor.
Initialize with zero.
*/
PreciseTime();
/** Copy constructor
*/
PreciseTime(const PreciseTime& time);
/** Detailed constructor
*/
PreciseTime(long secs, long usecs);
/** Destructor
*/
virtual ~PreciseTime();
//@}
/** @name Constants.
*/
//@{
/** Zero object.
*/
static const PreciseTime ZERO;
//@}
/** @name Assignment
*/
//@{
/** Assignment method
*/
void set(long secs, long usecs);
/** Assignment method
*/
void set(const PreciseTime& time);
/** Assignment operator
*/
const PreciseTime& operator = (const PreciseTime& time);
/** Clear method
*/
virtual void clear()
;
//@}
/** @name Predicates
*/
//@{
/** Greater than operator.
*/
bool operator < (const PreciseTime& time) const;
/** Lesser than operator.
*/
bool operator > (const PreciseTime& time) const;
/** Equality operator.
*/
bool operator == (const PreciseTime& time) const;
//@}
/** @name Accessors
*/
//@{
/** Return the seconds since Jan. 1, 1970.
*/
long getSeconds() const;
/** Return the microseconds.
*/
long getMicroSeconds() const;
/** Return the current time.
@return PreciseTime the current time in seconds since Jan. 1, 1970
*/
static PreciseTime now();
//@}
/** @name Storable interface.
*/
//@{
/** Persistent stream writing.
This method writes the contents of the \link PreciseTime PreciseTime \endlink objects to the
persistent stream using the <tt>writePrimitive</tt> method
of the PersistenceManager.
@param pm the persistence manager
*/
void write(PersistenceManager& pm) const;
/** Persistent stream reading.
This method reads the contents of a \link PreciseTime PreciseTime \endlink object from the
persistent stream using the <tt>readPrimitive</tt> method
of the PersistenceManager.
@param pm the persistence manager
*/
bool read(PersistenceManager& pm);
//@}
protected:
long secs_;
long usecs_;
#ifdef BALL_HAS_WINDOWS_PERFORMANCE_COUNTER
static long ticks_;
#endif
};
/** Time stamp concept.
This class implements a so-called time stamp. It is used to
store modification or creation times of objects.
<b>Interface:</b> <tt>Storable</tt> \par
*/
class BALL_EXPORT TimeStamp
{
public:
BALL_CREATE(TimeStamp)
/** @name Constructors and Destructors
*/
//@{
/** Default constructor
*/
TimeStamp();
/** Destructor
*/
virtual ~TimeStamp();
//@}
/** @name Predicates
*/
//@{
/** Check the time stamp.
*/
bool isNewerThan(const PreciseTime& time) const;
/** Check the time stamp.
*/
bool isOlderThan(const PreciseTime& time) const;
/** Check the time stamp.
*/
bool isNewerThan(const TimeStamp& stamp) const;
/** Check the time stamp.
*/
bool isOlderThan(const TimeStamp& stamp) const;
/** Equality operator
*/
bool operator == (const TimeStamp& stamp) const;
//@}
/** @name Accessors
*/
//@{
/** Update the time stamp.
Store the value of <tt>time</tt> in the internal time stamp.
If <tt>time</tt> is 0, use the current time (as given by
\link PreciseTime::now PreciseTime::now \endlink ).
@param time the new time stamp (default = \link PreciseTime::now PreciseTime::now \endlink )
*/
virtual void stamp(const PreciseTime& time = PreciseTime::ZERO);
/** Return the time of last modification
@return the time stamp
*/
const PreciseTime& getTime() const;
//@}
/** @name Assignment
*/
//@{
/** Assignment operator
*/
const PreciseTime& operator = (const PreciseTime& time);
/** Clear method
*/
virtual void clear();
//@}
/** @name Storable interface.
*/
//@{
/** Persistent stream writing.
This method writes the contents of the \link TimeStamp TimeStamp \endlink objects to the
persistent stream using the <tt>writePrimitive</tt> method
of the PersistenceManager.
@param pm the persistence manager
*/
void write(PersistenceManager& pm) const;
/** Persistent stream reading.
This method reads the contents of a \link TimeStamp TimeStamp \endlink object from the
persistent stream using the <tt>readPrimitive</tt> method
of the PersistenceManager.
@param pm the persistence manager
*/
bool read(PersistenceManager& pm);
//@}
protected:
/** The time stamp.
*/
PreciseTime time_;
};
/** Global stream operators for PreciseTime and TimeStamp
*/
//@{
/** Print the contents of a PreciseTime object to a stream.
*/
BALL_EXPORT
std::ostream& operator << (std::ostream& os, const PreciseTime& time);
/** Print the contents of a TimeStamp object to a stream.
*/
BALL_EXPORT
std::ostream& operator << (std::ostream& os, const TimeStamp& stamp);
//@}
# ifndef BALL_NO_INLINE_FUNCTIONS
# include <BALL/CONCEPT/timeStamp.iC>
# endif
} // namespace BALL
#endif // BALL_CONCEPT_TIMESTAMP_H
|