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
|
/*
* Phusion Passenger - http://www.modrails.com/
* Copyright (c) 2010 Phusion
*
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* 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 AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef _PASSENGER_SYSTEM_TIME_H_
#define _PASSENGER_SYSTEM_TIME_H_
#include <boost/thread.hpp>
#include <oxt/system_calls.hpp>
#include "../Exceptions.h"
namespace Passenger {
using namespace oxt;
namespace SystemTimeData {
extern bool hasForcedValue;
extern time_t forcedValue;
extern bool hasForcedMsecValue;
extern unsigned long long forcedMsecValue;
extern bool hasForcedUsecValue;
extern unsigned long long forcedUsecValue;
}
/**
* This class allows one to obtain the system time, similar to time() and
* gettimeofday(). Unlike time(), it is possible to force a certain time
* to be returned, which is useful for testing code that depends on the
* system time.
*
* get() provides seconds resolution while getMsec() provides milliseconds
* resolution. Both clocks can be independently forced to a certain value
* through force() and forceMsec().
*/
class SystemTime {
public:
/**
* Returns the time since the Epoch, measured in seconds. Or, if a time
* was forced with force(), then the forced time is returned instead.
*
* @throws TimeRetrievalException Something went wrong while retrieving the time.
* @throws boost::thread_interrupted
*/
static time_t get() {
if (SystemTimeData::hasForcedValue) {
return SystemTimeData::forcedValue;
} else {
time_t ret = syscalls::time(NULL);
if (ret == -1) {
int e = errno;
throw TimeRetrievalException(
"Unable to retrieve the system time",
e);
}
return ret;
}
}
/**
* Returns the time since the Epoch, measured in milliseconds. Or, if a
* time was forced with forceMsec(), then the forced time is returned instead.
*
* @param real Whether to get the real time, even if a value was forced.
* @throws TimeRetrievalException Something went wrong while retrieving the time.
* @throws boost::thread_interrupted
*/
static unsigned long long getMsec(bool real = false) {
if (SystemTimeData::hasForcedMsecValue && !real) {
return SystemTimeData::forcedMsecValue;
} else {
struct timeval t;
int ret;
do {
ret = gettimeofday(&t, NULL);
} while (ret == -1 && errno == EINTR);
if (ret == -1) {
int e = errno;
throw TimeRetrievalException(
"Unable to retrieve the system time",
e);
}
return (unsigned long long) t.tv_sec * 1000 + t.tv_usec / 1000;
}
}
/**
* Returns the time since the Epoch, measured in microseconds. Or, if a
* time was forced with forceUsec(), then the forced time is returned instead.
*
* @throws TimeRetrievalException Something went wrong while retrieving the time.
* @throws boost::thread_interrupted
*/
static unsigned long long getUsec() {
if (SystemTimeData::hasForcedUsecValue) {
return SystemTimeData::forcedUsecValue;
} else {
struct timeval t;
int ret;
do {
ret = gettimeofday(&t, NULL);
} while (ret == -1 && errno == EINTR);
if (ret == -1) {
int e = errno;
throw TimeRetrievalException(
"Unable to retrieve the system time",
e);
}
return (unsigned long long) t.tv_sec * 1000000 + t.tv_usec;
}
}
/**
* Force get() to return the given value.
*/
static void force(time_t value) {
SystemTimeData::hasForcedValue = true;
SystemTimeData::forcedValue = value;
}
/**
* Force getMsec() to return the given value.
*/
static void forceMsec(unsigned long long value) {
SystemTimeData::hasForcedMsecValue = true;
SystemTimeData::forcedMsecValue = value;
}
/**
* Force getUsec() to return the given value.
*/
static void forceUsec(unsigned long long value) {
SystemTimeData::hasForcedUsecValue = true;
SystemTimeData::forcedUsecValue = value;
}
static void forceAll(unsigned long long usec) {
force(usec / 1000000);
forceMsec(usec / 1000);
forceUsec(usec);
}
/**
* Release the previously forced seconds value, so that get()
* returns the system time once again.
*/
static void release() {
SystemTimeData::hasForcedValue = false;
}
/**
* Release the previously forced msec value, so that getMsec()
* returns the system time once again.
*/
static void releaseMsec() {
SystemTimeData::hasForcedMsecValue = false;
}
/**
* Release the previously forced usec value, so that getUsec()
* returns the system time once again.
*/
static void releaseUsec() {
SystemTimeData::hasForcedUsecValue = false;
}
/**
* Release all previously forced values, so that get(), getMsec()
* and getUsec() return the system time once again.
*/
static void releaseAll() {
SystemTimeData::hasForcedValue = false;
SystemTimeData::hasForcedMsecValue = false;
SystemTimeData::hasForcedUsecValue = false;
}
};
} // namespace Passenger
#endif /* _PASSENGER_SYSTEM_TIME_H_ */
|