2011-11-29 12:11:01 +00:00
|
|
|
/*
|
|
|
|
* virtime.c: Time handling functions
|
|
|
|
*
|
util: new function virTimeLocalOffsetFromUTC
Since there isn't a single libc API to get this value, this patch
supplies one which gets the value by grabbing current time, then
converting that into a struct tm with gmtime_r(), then back to a
time_t using mktime.
The returned value is the difference between UTC and localtime in
seconds. If localtime is ahead of UTC (east) the offset will be a
positive number, and if localtime is behind UTC (west) the offset will
be negative.
This function should be POSIX-compliant, and is threadsafe, but not
async signal safe. If it was ever necessary to know this value in a
child process, we could cache it with a one-time init function when
libvirtd starts, then just supply the cached value, but that
complexity isn't needed for current usage; that would also have the
problem that it might not be accurate after a local daylight savings
boundary.
(If it weren't for DST, we could simply replace this entire function
with "-timezone"; timezone contains the offset of the current timezone
(negated from what we want) but doesn't account for DST. And in spite
of being guaranteed by POSIX, it isn't available on older versions of
mingw.)
Signed-off-by: Eric Blake <eblake@redhat.com>
2014-05-24 14:21:26 +00:00
|
|
|
* Copyright (C) 2006-2014 Red Hat, Inc.
|
2011-11-29 12:11:01 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2011-11-29 12:11:01 +00:00
|
|
|
*
|
|
|
|
* The intent is that this file provides a set of time APIs which
|
|
|
|
* are async signal safe, to allow use in between fork/exec eg by
|
|
|
|
* the logging code.
|
|
|
|
*
|
|
|
|
* The reality is that wsnprintf is technically unsafe. We ought
|
|
|
|
* to roll out our int -> str conversions to avoid this.
|
|
|
|
*
|
|
|
|
* We do *not* use regular libvirt error APIs for most of the code,
|
|
|
|
* since those are not async signal safe, and we dont want logging
|
|
|
|
* APIs generating timestamps to blow away real errors
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2016-04-08 11:11:10 +00:00
|
|
|
#include <unistd.h>
|
2012-09-04 16:57:25 +00:00
|
|
|
#include <sys/time.h>
|
2011-11-29 12:11:01 +00:00
|
|
|
|
|
|
|
#include "virtime.h"
|
2012-12-12 18:06:53 +00:00
|
|
|
#include "viralloc.h"
|
2012-12-13 18:21:53 +00:00
|
|
|
#include "virerror.h"
|
2016-04-08 11:11:10 +00:00
|
|
|
#include "virlog.h"
|
2011-11-29 12:11:01 +00:00
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2016-04-08 11:11:10 +00:00
|
|
|
VIR_LOG_INIT("util.time");
|
|
|
|
|
2011-11-29 12:11:01 +00:00
|
|
|
/**
|
|
|
|
* virTimeMillisNowRaw:
|
|
|
|
* @now: filled with current time in milliseconds
|
|
|
|
*
|
|
|
|
* Retrieves the current system time, in milliseconds since the
|
|
|
|
* epoch
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error with errno set
|
|
|
|
*/
|
|
|
|
int virTimeMillisNowRaw(unsigned long long *now)
|
|
|
|
{
|
2019-12-20 16:19:30 +00:00
|
|
|
*now = g_get_real_time() / 1000;
|
2011-11-29 12:11:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virTimeFieldsNowRaw:
|
|
|
|
* @fields: filled with current time fields
|
|
|
|
*
|
|
|
|
* Retrieves the current time, in broken-down field format.
|
|
|
|
* The time is always in UTC.
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error with errno set
|
|
|
|
*/
|
|
|
|
int virTimeFieldsNowRaw(struct tm *fields)
|
|
|
|
{
|
|
|
|
unsigned long long now;
|
|
|
|
|
|
|
|
if (virTimeMillisNowRaw(&now) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2014-07-25 08:13:57 +00:00
|
|
|
virTimeFieldsThen(now, fields);
|
|
|
|
|
|
|
|
return 0;
|
2011-11-29 12:11:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define SECS_PER_HOUR (60 * 60)
|
|
|
|
#define SECS_PER_DAY (SECS_PER_HOUR * 24)
|
|
|
|
#define DIV(a, b) ((a) / (b) - ((a) % (b) < 0))
|
|
|
|
#define LEAPS_THRU_END_OF(y) (DIV (y, 4) - DIV (y, 100) + DIV (y, 400))
|
|
|
|
|
2014-09-18 21:23:11 +00:00
|
|
|
static const unsigned short int mon_yday[2][13] = {
|
2011-11-29 12:11:01 +00:00
|
|
|
/* Normal years. */
|
|
|
|
{ 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
|
|
|
|
/* Leap years. */
|
|
|
|
{ 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
|
|
|
|
};
|
|
|
|
|
2011-12-01 13:28:44 +00:00
|
|
|
#define is_leap_year(y) \
|
|
|
|
((y) % 4 == 0 && ((y) % 100 != 0 || (y) % 400 == 0))
|
|
|
|
|
2011-11-29 12:11:01 +00:00
|
|
|
/**
|
2014-07-25 08:13:57 +00:00
|
|
|
* virTimeFieldsThen:
|
2011-11-29 12:11:01 +00:00
|
|
|
* @when: the time to convert in milliseconds
|
|
|
|
* @fields: filled with time @when fields
|
|
|
|
*
|
|
|
|
* Converts the timestamp @when into broken-down field format.
|
|
|
|
* Time time is always in UTC
|
|
|
|
*
|
|
|
|
*/
|
2014-07-25 08:13:57 +00:00
|
|
|
void virTimeFieldsThen(unsigned long long when, struct tm *fields)
|
2011-11-29 12:11:01 +00:00
|
|
|
{
|
|
|
|
/* This code is taken from GLibC under terms of LGPLv2+ */
|
2014-09-11 21:29:18 +00:00
|
|
|
/* Remove the 'offset' or GMT manipulation since we don't care. See
|
|
|
|
* commit id '3ec12898' comments regarding localtime.
|
|
|
|
*/
|
2011-11-29 12:11:01 +00:00
|
|
|
long int days, rem, y;
|
|
|
|
const unsigned short int *ip;
|
|
|
|
unsigned long long whenSecs = when / 1000ull;
|
|
|
|
|
|
|
|
days = whenSecs / SECS_PER_DAY;
|
|
|
|
rem = whenSecs % SECS_PER_DAY;
|
2014-09-11 21:29:18 +00:00
|
|
|
|
2011-11-29 12:11:01 +00:00
|
|
|
fields->tm_hour = rem / SECS_PER_HOUR;
|
|
|
|
rem %= SECS_PER_HOUR;
|
|
|
|
fields->tm_min = rem / 60;
|
|
|
|
fields->tm_sec = rem % 60;
|
|
|
|
/* January 1, 1970 was a Thursday. */
|
|
|
|
fields->tm_wday = (4 + days) % 7;
|
|
|
|
if (fields->tm_wday < 0)
|
|
|
|
fields->tm_wday += 7;
|
|
|
|
y = 1970;
|
|
|
|
|
2011-12-01 13:28:44 +00:00
|
|
|
while (days < 0 || days >= (is_leap_year(y) ? 366 : 365)) {
|
2011-11-29 12:11:01 +00:00
|
|
|
/* Guess a corrected year, assuming 365 days per year. */
|
|
|
|
long int yg = y + days / 365 - (days % 365 < 0);
|
|
|
|
|
|
|
|
/* Adjust DAYS and Y to match the guessed year. */
|
|
|
|
days -= ((yg - y) * 365
|
2012-10-17 09:23:12 +00:00
|
|
|
+ LEAPS_THRU_END_OF(yg - 1)
|
|
|
|
- LEAPS_THRU_END_OF(y - 1));
|
2011-11-29 12:11:01 +00:00
|
|
|
y = yg;
|
|
|
|
}
|
|
|
|
fields->tm_year = y - 1900;
|
|
|
|
|
|
|
|
fields->tm_yday = days;
|
2014-09-18 21:23:11 +00:00
|
|
|
ip = mon_yday[is_leap_year(y)];
|
2011-11-29 12:11:01 +00:00
|
|
|
for (y = 11; days < (long int) ip[y]; --y)
|
|
|
|
continue;
|
|
|
|
days -= ip[y];
|
|
|
|
fields->tm_mon = y;
|
|
|
|
fields->tm_mday = days + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virTimeStringNowRaw:
|
|
|
|
* @buf: a buffer at least VIR_TIME_STRING_BUFLEN in length
|
|
|
|
*
|
|
|
|
* Initializes @buf to contain a formatted timestamp
|
|
|
|
* corresponding to the current time.
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error
|
|
|
|
*/
|
|
|
|
int virTimeStringNowRaw(char *buf)
|
|
|
|
{
|
|
|
|
unsigned long long now;
|
|
|
|
|
|
|
|
if (virTimeMillisNowRaw(&now) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return virTimeStringThenRaw(now, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virTimeStringThenRaw:
|
|
|
|
* @when: the time to format in milliseconds
|
|
|
|
* @buf: a buffer at least VIR_TIME_STRING_BUFLEN in length
|
|
|
|
*
|
|
|
|
* Initializes @buf to contain a formatted timestamp
|
|
|
|
* corresponding to the time @when.
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error
|
|
|
|
*/
|
|
|
|
int virTimeStringThenRaw(unsigned long long when, char *buf)
|
|
|
|
{
|
|
|
|
struct tm fields;
|
|
|
|
|
2014-07-25 08:13:57 +00:00
|
|
|
virTimeFieldsThen(when, &fields);
|
2011-11-29 12:11:01 +00:00
|
|
|
|
|
|
|
fields.tm_year += 1900;
|
|
|
|
fields.tm_mon += 1;
|
|
|
|
|
2019-11-13 13:53:42 +00:00
|
|
|
if (g_snprintf(buf, VIR_TIME_STRING_BUFLEN,
|
|
|
|
"%4d-%02d-%02d %02d:%02d:%02d.%03d+0000",
|
|
|
|
fields.tm_year, fields.tm_mon, fields.tm_mday,
|
|
|
|
fields.tm_hour, fields.tm_min, fields.tm_sec,
|
|
|
|
(int) (when % 1000)) >= VIR_TIME_STRING_BUFLEN) {
|
2011-11-29 12:11:01 +00:00
|
|
|
errno = ERANGE;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virTimeMillisNow:
|
|
|
|
* @now: filled with current time in milliseconds
|
|
|
|
*
|
|
|
|
* Retrieves the current system time, in milliseconds since the
|
|
|
|
* epoch
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error with error reported
|
|
|
|
*/
|
|
|
|
int virTimeMillisNow(unsigned long long *now)
|
|
|
|
{
|
|
|
|
if (virTimeMillisNowRaw(now) < 0) {
|
|
|
|
virReportSystemError(errno, "%s",
|
|
|
|
_("Unable to get current time"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-11-15 11:11:27 +00:00
|
|
|
* virTimeFieldsNow:
|
2011-11-29 12:11:01 +00:00
|
|
|
* @fields: filled with current time fields
|
|
|
|
*
|
|
|
|
* Retrieves the current time, in broken-down field format.
|
|
|
|
* The time is always in UTC.
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error with errno reported
|
|
|
|
*/
|
|
|
|
int virTimeFieldsNow(struct tm *fields)
|
|
|
|
{
|
|
|
|
unsigned long long now;
|
|
|
|
|
|
|
|
if (virTimeMillisNow(&now) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2014-07-25 08:13:57 +00:00
|
|
|
virTimeFieldsThen(now, fields);
|
2011-11-29 12:11:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virTimeStringNow:
|
|
|
|
*
|
|
|
|
* Creates a string containing a formatted timestamp
|
|
|
|
* corresponding to the current time.
|
|
|
|
*
|
|
|
|
* This function is not async signal safe
|
|
|
|
*
|
|
|
|
* Returns a formatted allocated string, or NULL on error
|
|
|
|
*/
|
|
|
|
char *virTimeStringNow(void)
|
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
|
2020-10-05 17:13:12 +00:00
|
|
|
ret = g_new0(char, VIR_TIME_STRING_BUFLEN);
|
2011-11-29 12:11:01 +00:00
|
|
|
|
|
|
|
if (virTimeStringNowRaw(ret) < 0) {
|
|
|
|
virReportSystemError(errno, "%s",
|
|
|
|
_("Unable to format time"));
|
|
|
|
VIR_FREE(ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virTimeStringThen:
|
|
|
|
* @when: the time to format in milliseconds
|
|
|
|
*
|
|
|
|
* Creates a string containing a formatted timestamp
|
|
|
|
* corresponding to the time @when.
|
|
|
|
*
|
|
|
|
* This function is not async signal safe
|
|
|
|
*
|
|
|
|
* Returns a formatted allocated string, or NULL on error
|
|
|
|
*/
|
|
|
|
char *virTimeStringThen(unsigned long long when)
|
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
|
2020-10-05 17:13:12 +00:00
|
|
|
ret = g_new0(char, VIR_TIME_STRING_BUFLEN);
|
2011-11-29 12:11:01 +00:00
|
|
|
|
|
|
|
if (virTimeStringThenRaw(when, ret) < 0) {
|
|
|
|
virReportSystemError(errno, "%s",
|
|
|
|
_("Unable to format time"));
|
|
|
|
VIR_FREE(ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
util: new function virTimeLocalOffsetFromUTC
Since there isn't a single libc API to get this value, this patch
supplies one which gets the value by grabbing current time, then
converting that into a struct tm with gmtime_r(), then back to a
time_t using mktime.
The returned value is the difference between UTC and localtime in
seconds. If localtime is ahead of UTC (east) the offset will be a
positive number, and if localtime is behind UTC (west) the offset will
be negative.
This function should be POSIX-compliant, and is threadsafe, but not
async signal safe. If it was ever necessary to know this value in a
child process, we could cache it with a one-time init function when
libvirtd starts, then just supply the cached value, but that
complexity isn't needed for current usage; that would also have the
problem that it might not be accurate after a local daylight savings
boundary.
(If it weren't for DST, we could simply replace this entire function
with "-timezone"; timezone contains the offset of the current timezone
(negated from what we want) but doesn't account for DST. And in spite
of being guaranteed by POSIX, it isn't available on older versions of
mingw.)
Signed-off-by: Eric Blake <eblake@redhat.com>
2014-05-24 14:21:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* virTimeLocalOffsetFromUTC:
|
|
|
|
*
|
2020-01-09 14:07:15 +00:00
|
|
|
* This function is threadsafe, but is *not* async signal safe
|
|
|
|
* due to use of GLib APIs.
|
util: new function virTimeLocalOffsetFromUTC
Since there isn't a single libc API to get this value, this patch
supplies one which gets the value by grabbing current time, then
converting that into a struct tm with gmtime_r(), then back to a
time_t using mktime.
The returned value is the difference between UTC and localtime in
seconds. If localtime is ahead of UTC (east) the offset will be a
positive number, and if localtime is behind UTC (west) the offset will
be negative.
This function should be POSIX-compliant, and is threadsafe, but not
async signal safe. If it was ever necessary to know this value in a
child process, we could cache it with a one-time init function when
libvirtd starts, then just supply the cached value, but that
complexity isn't needed for current usage; that would also have the
problem that it might not be accurate after a local daylight savings
boundary.
(If it weren't for DST, we could simply replace this entire function
with "-timezone"; timezone contains the offset of the current timezone
(negated from what we want) but doesn't account for DST. And in spite
of being guaranteed by POSIX, it isn't available on older versions of
mingw.)
Signed-off-by: Eric Blake <eblake@redhat.com>
2014-05-24 14:21:26 +00:00
|
|
|
*
|
|
|
|
* @offset: pointer to time_t that will be set to the difference
|
|
|
|
* between localtime and UTC in seconds (east of UTC is a
|
|
|
|
* positive number, and west of UTC is a negative number.
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error with error reported
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virTimeLocalOffsetFromUTC(long *offset)
|
|
|
|
{
|
2020-01-09 14:07:15 +00:00
|
|
|
g_autoptr(GDateTime) now = g_date_time_new_now_local();
|
|
|
|
GTimeSpan diff = g_date_time_get_utc_offset(now);
|
util: new function virTimeLocalOffsetFromUTC
Since there isn't a single libc API to get this value, this patch
supplies one which gets the value by grabbing current time, then
converting that into a struct tm with gmtime_r(), then back to a
time_t using mktime.
The returned value is the difference between UTC and localtime in
seconds. If localtime is ahead of UTC (east) the offset will be a
positive number, and if localtime is behind UTC (west) the offset will
be negative.
This function should be POSIX-compliant, and is threadsafe, but not
async signal safe. If it was ever necessary to know this value in a
child process, we could cache it with a one-time init function when
libvirtd starts, then just supply the cached value, but that
complexity isn't needed for current usage; that would also have the
problem that it might not be accurate after a local daylight savings
boundary.
(If it weren't for DST, we could simply replace this entire function
with "-timezone"; timezone contains the offset of the current timezone
(negated from what we want) but doesn't account for DST. And in spite
of being guaranteed by POSIX, it isn't available on older versions of
mingw.)
Signed-off-by: Eric Blake <eblake@redhat.com>
2014-05-24 14:21:26 +00:00
|
|
|
|
2020-01-09 14:07:15 +00:00
|
|
|
/* GTimeSpan measures microseconds, we want seconds */
|
|
|
|
*offset = diff / 1000000;
|
util: new function virTimeLocalOffsetFromUTC
Since there isn't a single libc API to get this value, this patch
supplies one which gets the value by grabbing current time, then
converting that into a struct tm with gmtime_r(), then back to a
time_t using mktime.
The returned value is the difference between UTC and localtime in
seconds. If localtime is ahead of UTC (east) the offset will be a
positive number, and if localtime is behind UTC (west) the offset will
be negative.
This function should be POSIX-compliant, and is threadsafe, but not
async signal safe. If it was ever necessary to know this value in a
child process, we could cache it with a one-time init function when
libvirtd starts, then just supply the cached value, but that
complexity isn't needed for current usage; that would also have the
problem that it might not be accurate after a local daylight savings
boundary.
(If it weren't for DST, we could simply replace this entire function
with "-timezone"; timezone contains the offset of the current timezone
(negated from what we want) but doesn't account for DST. And in spite
of being guaranteed by POSIX, it isn't available on older versions of
mingw.)
Signed-off-by: Eric Blake <eblake@redhat.com>
2014-05-24 14:21:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2016-04-08 11:11:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* virTimeBackOffStart:
|
|
|
|
* @var: Timeout variable (with type virTimeBackOffVar).
|
|
|
|
* @first: Initial time to wait (milliseconds).
|
|
|
|
* @timeout: Timeout (milliseconds).
|
|
|
|
*
|
|
|
|
* Initialize the timeout variable @var and start the timer running.
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error and raises a libvirt error.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
virTimeBackOffStart(virTimeBackOffVar *var,
|
|
|
|
unsigned long long first, unsigned long long timeout)
|
|
|
|
{
|
|
|
|
if (virTimeMillisNow(&var->start_t) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
var->next = first;
|
|
|
|
var->limit_t = var->start_t + timeout;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-13 10:05:08 +00:00
|
|
|
|
|
|
|
#define VIR_TIME_BACKOFF_CAP 1000
|
|
|
|
|
2016-04-08 11:11:10 +00:00
|
|
|
/**
|
|
|
|
* virTimeBackOffWait
|
|
|
|
* @var: Timeout variable (with type virTimeBackOffVar *).
|
|
|
|
*
|
|
|
|
* You must initialize @var first by calling the following function,
|
|
|
|
* which also starts the timer:
|
|
|
|
*
|
|
|
|
* if (virTimeBackOffStart(&var, first, timeout) < 0) {
|
|
|
|
* // handle errors
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* Then you use a while loop:
|
|
|
|
*
|
|
|
|
* while (virTimeBackOffWait(&var)) {
|
|
|
|
* //...
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* The while loop that runs the body of the code repeatedly, with an
|
|
|
|
* exponential backoff. It first waits for first milliseconds, then
|
|
|
|
* runs the body, then waits for 2*first ms, then runs the body again.
|
2017-03-13 10:05:08 +00:00
|
|
|
* Then 4*first ms, and so on, up until wait time would reach
|
|
|
|
* VIR_TIME_BACK_OFF_CAP (whole second). Then it switches to constant
|
|
|
|
* waiting time of VIR_TIME_BACK_OFF_CAP.
|
2016-04-08 11:11:10 +00:00
|
|
|
*
|
|
|
|
* When timeout milliseconds is reached, the while loop ends.
|
|
|
|
*
|
|
|
|
* The body should use "break" or "goto" when whatever condition it is
|
|
|
|
* testing for succeeds (or there is an unrecoverable error).
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
virTimeBackOffWait(virTimeBackOffVar *var)
|
|
|
|
{
|
2019-07-18 03:44:56 +00:00
|
|
|
unsigned long long next, t = 0;
|
2016-04-08 11:11:10 +00:00
|
|
|
|
|
|
|
ignore_value(virTimeMillisNowRaw(&t));
|
|
|
|
|
|
|
|
VIR_DEBUG("t=%llu, limit=%llu", t, var->limit_t);
|
|
|
|
|
|
|
|
if (t > var->limit_t)
|
2020-05-05 06:05:18 +00:00
|
|
|
return false; /* ends the while loop */
|
2016-04-08 11:11:10 +00:00
|
|
|
|
2017-03-13 10:05:08 +00:00
|
|
|
/* Compute next wait time. Cap at VIR_TIME_BACKOFF_CAP
|
|
|
|
* to avoid long useless sleeps. */
|
2016-04-08 11:11:10 +00:00
|
|
|
next = var->next;
|
2017-03-13 10:05:08 +00:00
|
|
|
if (var->next < VIR_TIME_BACKOFF_CAP)
|
|
|
|
var->next *= 2;
|
|
|
|
else if (var->next > VIR_TIME_BACKOFF_CAP)
|
|
|
|
var->next = VIR_TIME_BACKOFF_CAP;
|
2016-04-08 11:11:10 +00:00
|
|
|
|
|
|
|
/* If sleeping would take us beyond the limit, then shorten the
|
|
|
|
* sleep. This is so we always run the body just before the final
|
|
|
|
* timeout.
|
|
|
|
*/
|
|
|
|
if (t + next > var->limit_t)
|
|
|
|
next = var->limit_t - t;
|
|
|
|
|
|
|
|
VIR_DEBUG("sleeping for %llu ms", next);
|
|
|
|
|
2019-10-02 17:01:11 +00:00
|
|
|
g_usleep(next * 1000);
|
2020-05-05 06:05:18 +00:00
|
|
|
return true;
|
2016-04-08 11:11:10 +00:00
|
|
|
}
|