/usr/include/globus/globus_time.h is in libglobus-common-dev 14.5-1.
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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | /*
* Copyright 1999-2006 University of Chicago
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#if !defined(GLOBUS_TIME_H)
#define GLOBUS_TIME_H
#include "globus_config.h"
#include "globus_common_include.h"
#include <time.h>
EXTERN_C_BEGIN
#define GLOBUS_I_TIME_INFINITY_SEC INT_MAX
#define GLOBUS_I_TIME_INFINITY_NSEC INT_MAX
#define GLOBUS_I_TIME_INFINITY_USEC INT_MAX
#if defined (GLOBUS_TIMESPEC_EXISTS)
typedef struct timespec globus_abstime_t;
#else
typedef struct globus_abstime_s
{
long tv_sec;
long tv_nsec;
} globus_abstime_t;
#endif
typedef struct timeval globus_reltime_t;
/**
* Set the abstime structure to the sec and usec parameter values.
*/
#define GlobusTimeAbstimeSet(Abstime, Sec, USec) \
{ \
GlobusTimeAbstimeGetCurrent(Abstime); \
(Abstime).tv_nsec += (USec * 1000); \
if((Abstime).tv_nsec >= 1000000000) \
{ \
(Abstime).tv_sec += ((Abstime).tv_nsec / 1000000000);\
(Abstime).tv_nsec = (Abstime).tv_nsec % 1000000000; \
} \
(Abstime).tv_sec += Sec; \
}
/**
* Seperates abstime structure into its components,sec and usec.
*/
#define GlobusTimeAbstimeGet(Abstime, Sec, USec) \
{ \
Sec = (Abstime).tv_sec; \
USec = ((Abstime).tv_nsec / 1000); \
}
/**
* Set the reltime structure to the sec and usec parameter values.
*/
#define GlobusTimeReltimeSet(Reltime, Sec, USec) \
{ \
(Reltime).tv_usec = (USec); \
(Reltime).tv_sec = Sec; \
if((Reltime).tv_usec >= 1000000) \
{ \
(Reltime).tv_sec += ((Reltime).tv_usec / 1000000);\
(Reltime).tv_usec = (Reltime).tv_usec % 1000000; \
} \
}
#define GlobusTimeReltimeGet(Reltime, Sec, USec) \
{ \
(USec) = (Reltime).tv_usec; \
(Sec) = (Reltime).tv_sec; \
}
#define GlobusTimeAbstimePrintf(Abstime) \
{ \
printf("sec -->%lu\n", (Abstime).tv_sec); \
printf("nsec -->%lu\n", (Abstime).tv_nsec); \
}
#define GlobusTimeReltimePrintf(Reltime) \
{ \
printf("sec -->%lu\n", (Reltime).tv_sec); \
printf("usec -->%lu\n", (Reltime).tv_usec); \
}
/**
* Find the difference between the 2 absolute times.
*/
#define GlobusTimeAbstimeDiff(Reltime, T1, T2) \
{ \
int __res = globus_abstime_cmp(&(T1), &(T2)); \
if(__res < 0) \
{ \
(Reltime).tv_sec = (T2).tv_sec - (T1).tv_sec; \
(Reltime).tv_usec = \
(((T2).tv_nsec - (T1).tv_nsec) / 1000); \
if((Reltime).tv_usec < 0) \
{ \
(Reltime).tv_sec--; \
(Reltime).tv_usec += 1000000; \
} \
} \
else if(__res > 0) \
{ \
(Reltime).tv_sec = (T1).tv_sec - (T2).tv_sec; \
(Reltime).tv_usec = \
(((T1).tv_nsec - (T2).tv_nsec) / 1000); \
if((Reltime).tv_usec < 0) \
{ \
(Reltime).tv_sec--; \
(Reltime).tv_usec += 1000000; \
} \
} \
else \
{ \
(Reltime).tv_sec = 0; \
(Reltime).tv_usec = 0; \
} \
}
#define GlobusTimeReltimeDiff(Reltime, T1, T2) \
{ \
int __res = globus_reltime_cmp(&(T1), &(T2)); \
if(__res < 0) \
{ \
(Reltime).tv_sec = (T2).tv_sec - (T1).tv_sec; \
(Reltime).tv_usec = \
((T2).tv_usec - (T1).tv_usec); \
if((Reltime).tv_usec < 0) \
{ \
(Reltime).tv_sec--; \
(Reltime).tv_usec += 1000000; \
} \
} \
else if(__res > 0) \
{ \
(Reltime).tv_sec = (T1).tv_sec - (T2).tv_sec; \
(Reltime).tv_usec = \
((T1).tv_usec - (T2).tv_usec); \
if((Reltime).tv_usec < 0) \
{ \
(Reltime).tv_sec--; \
(Reltime).tv_usec += 1000000; \
} \
} \
else \
{ \
(Reltime).tv_sec = 0; \
(Reltime).tv_usec = 0; \
} \
}
/**
* Convert a relitive time into a long in usec units
*/
#define GlobusTimeReltimeToUSec(SlpInt, Reltime) \
{ \
SlpInt = ((Reltime).tv_sec * 1000000) + \
((Reltime).tv_usec); \
}
/**
* Convert a relative time into a long in millisec units
*/
#define GlobusTimeReltimeToMilliSec( Milliseconds, Reltime) \
{ \
Milliseconds = ((Reltime).tv_sec * 1000) + \
((Reltime).tv_usec)/ 1000; \
}
/**
* Add reltime to abstime
*/
#define GlobusTimeAbstimeInc(Abstime, Reltime) \
{ \
(Abstime).tv_nsec += ((Reltime).tv_usec * 1000); \
if((Abstime).tv_nsec >= 1000000000) \
{ \
(Abstime).tv_sec++; \
(Abstime).tv_nsec -= 1000000000; \
} \
(Abstime).tv_sec += (Reltime).tv_sec; \
}
#define GlobusTimeAbstimeDec(Abstime, Reltime) \
{ \
(Abstime).tv_nsec -= ((Reltime).tv_usec * 1000); \
if((Abstime).tv_nsec < 0) \
{ \
(Abstime).tv_sec--; \
(Abstime).tv_nsec += 1000000000; \
} \
(Abstime).tv_sec -= (Reltime).tv_sec; \
}
/**
* Get the current time
*/
#if defined(TARGET_ARCH_WIN32)
# define GlobusTimeAbstimeGetCurrent(Abstime) \
{ \
struct _timeb timebuffer; \
\
_ftime(&timebuffer); \
(Abstime).tv_sec = timebuffer.time; \
(Abstime).tv_nsec = (timebuffer.millitm * 1000); \
}
/*
* On Net+OS on ARM, this is needed if the device is not running NTP or
* does not have a RTC. In this case, times will overflow after about a
* year and a half.
#elif defined(TARGET_ARCH_NETOS)
# define GlobusTimeAbstimeGetCurrent(Abstime) \
{ \
ULONG ticks = tx_time_get(); \
(Abstime).tv_sec = ticks / NABspTicksPerSecond; \
(Abstime).tv_nsec = (ticks % NABspTicksPerSecond) * 1000000000; \
}
*/
#else
# define GlobusTimeAbstimeGetCurrent(Abstime) \
{ \
struct timeval __time; \
\
gettimeofday(&__time, GLOBUS_NULL); \
(Abstime).tv_sec = __time.tv_sec; \
(Abstime).tv_nsec = (__time.tv_usec * 1000); \
}
#endif
/**
* Copy the absolute time
*/
#define GlobusTimeAbstimeCopy(Dest, Src) \
{ \
(Dest).tv_sec = (Src).tv_sec; \
(Dest).tv_nsec = (Src).tv_nsec; \
}
/**
* Copy the relative time
*/
#define GlobusTimeReltimeCopy(Dest, Src) \
{ \
(Dest).tv_sec = (Src).tv_sec; \
(Dest).tv_usec = (Src).tv_usec; \
}
/**
* Multiple the reltime by factor
*/
#define GlobusTimeReltimeMultiply(Reltime, Factor) \
{ \
(Reltime).tv_usec *= Factor; \
(Reltime).tv_sec *= Factor; \
\
if((Reltime).tv_usec >= 1000000) \
{ \
(Reltime).tv_sec += ((Reltime).tv_usec / 1000000);\
(Reltime).tv_usec = (Reltime).tv_usec % 1000000; \
} \
}
/**
* divide the reltime by factor
*/
#define GlobusTimeReltimeDivide(Reltime, Factor) \
{ \
(Reltime).tv_usec /= Factor; \
(Reltime).tv_sec /= Factor; \
}
extern const globus_abstime_t globus_i_abstime_infinity;
extern const globus_abstime_t globus_i_abstime_zero;
extern const globus_reltime_t globus_i_reltime_infinity;
extern const globus_reltime_t globus_i_reltime_zero;
/**
* Has abstime expired
*
* Returns a boolean that reflects whether or not abstime is less than the
* current time.
*/
globus_bool_t
globus_time_has_expired(
const globus_abstime_t * abstime);
/**
* Returns a boolean that reflects whether or not abstime is infinity.
*/
globus_bool_t
globus_time_abstime_is_infinity(
const globus_abstime_t * abstime);
/**
* Returns a boolean that reflects whether or not reltime is infinity.
*/
globus_bool_t
globus_time_reltime_is_infinity(
const globus_reltime_t * reltime);
/**
* Compare two absolute times.
*
* This function returns an integer that reflects the comparison of two
* abstimes in the following way.
*
* 0 : values are the same.
* -1 : the first value is less than the second.
* 1 : the first value is greater than the second.
*/
int
globus_abstime_cmp(
const globus_abstime_t * abstime_1,
const globus_abstime_t * abstime_2);
/**
* Compare two absolute times.
*
* This function returns an integer that reflects the comparison of two
* reltimes in the following way.
*
* 0 : values are the same.
* -1 : the first value is less than the second.
* 1 : the first value is greater than the second.
*/
int
globus_reltime_cmp(
const globus_reltime_t * reltime_1,
const globus_reltime_t * reltime_2);
EXTERN_C_END
#endif /* GLOBUS_TIME_H */
|