wallet-core/packages/taler-wallet-core/src/util/retries.ts

110 lines
2.7 KiB
TypeScript
Raw Normal View History

2020-09-08 17:00:03 +02:00
/*
This file is part of GNU Taler
(C) 2020 Taler Systems S.A.
GNU Taler is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
GNU Taler 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 General Public License for more details.
You should have received a copy of the GNU General Public License along with
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
* Helpers for dealing with retry timeouts.
*/
/**
* Imports.
*/
2022-03-18 15:32:41 +01:00
import { AbsoluteTime, Duration } from "@gnu-taler/taler-util";
2020-09-08 17:00:03 +02:00
export interface RetryInfo {
2022-03-18 15:32:41 +01:00
firstTry: AbsoluteTime;
nextRetry: AbsoluteTime;
2020-09-08 17:00:03 +02:00
retryCounter: number;
}
export interface RetryPolicy {
readonly backoffDelta: Duration;
readonly backoffBase: number;
readonly maxTimeout: Duration;
2020-09-08 17:00:03 +02:00
}
const defaultRetryPolicy: RetryPolicy = {
backoffBase: 1.5,
backoffDelta: { d_ms: 200 },
maxTimeout: { d_ms: 6000 },
2020-09-08 17:00:03 +02:00
};
export function updateRetryInfoTimeout(
r: RetryInfo,
p: RetryPolicy = defaultRetryPolicy,
): void {
2022-03-18 15:32:41 +01:00
const now = AbsoluteTime.now();
2020-09-08 17:00:03 +02:00
if (now.t_ms === "never") {
throw Error("assertion failed");
}
if (p.backoffDelta.d_ms === "forever") {
r.nextRetry = { t_ms: "never" };
return;
}
2022-03-18 15:32:41 +01:00
const nextIncrement =
p.backoffDelta.d_ms * Math.pow(p.backoffBase, r.retryCounter);
2020-09-08 17:00:03 +02:00
const t =
2022-03-18 15:32:41 +01:00
now.t_ms +
(p.maxTimeout.d_ms === "forever"
? nextIncrement
: Math.min(p.maxTimeout.d_ms, nextIncrement));
2020-09-08 17:00:03 +02:00
r.nextRetry = { t_ms: t };
}
export function getRetryDuration(
2021-06-11 11:15:08 +02:00
r: RetryInfo | undefined,
2020-09-08 17:00:03 +02:00
p: RetryPolicy = defaultRetryPolicy,
): Duration {
2021-06-11 11:15:08 +02:00
if (!r) {
// If we don't have any retry info, run immediately.
return { d_ms: 0 };
}
2020-09-08 17:00:03 +02:00
if (p.backoffDelta.d_ms === "forever") {
return { d_ms: "forever" };
}
const t = p.backoffDelta.d_ms * Math.pow(p.backoffBase, r.retryCounter);
2022-03-18 15:32:41 +01:00
return {
d_ms: p.maxTimeout.d_ms === "forever" ? t : Math.min(p.maxTimeout.d_ms, t),
};
2020-09-08 17:00:03 +02:00
}
export function resetRetryInfo(p: RetryPolicy = defaultRetryPolicy): RetryInfo {
2022-03-18 15:32:41 +01:00
const now = AbsoluteTime.now();
2020-09-08 17:00:03 +02:00
const info = {
firstTry: now,
nextRetry: now,
2020-09-08 17:00:03 +02:00
retryCounter: 0,
};
updateRetryInfoTimeout(info, p);
return info;
2020-12-14 16:45:15 +01:00
}
export namespace RetryInfo {
export function increment(
r: RetryInfo | undefined,
p: RetryPolicy = defaultRetryPolicy,
) {
if (!r) {
return resetRetryInfo(p);
}
const r2 = { ...r };
r2.retryCounter++;
updateRetryInfoTimeout(r2, p);
return r2;
}
}