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
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
//! This module defines types that describe timeouts that can be applied to various stages of the
//! Smithy networking stack.
use std::time::Duration;
/// Builder for [`TimeoutConfig`].
#[non_exhaustive]
#[derive(Clone, Debug, Default)]
pub struct TimeoutConfigBuilder {
connect_timeout: Option<Duration>,
read_timeout: Option<Duration>,
operation_timeout: Option<Duration>,
operation_attempt_timeout: Option<Duration>,
}
impl TimeoutConfigBuilder {
/// Creates a new builder with no timeouts set.
pub fn new() -> Self {
Default::default()
}
/// Sets the connect timeout.
///
/// The connect timeout is a limit on the amount of time it takes to initiate a socket connection.
pub fn connect_timeout(mut self, connect_timeout: Duration) -> Self {
self.connect_timeout = Some(connect_timeout);
self
}
/// Sets the connect timeout.
///
/// The connect timeout is a limit on the amount of time it takes to initiate a socket connection.
pub fn set_connect_timeout(&mut self, connect_timeout: Option<Duration>) -> &mut Self {
self.connect_timeout = connect_timeout;
self
}
/// Sets the read timeout.
///
/// The read timeout is the limit on the amount of time it takes to read the first byte of a response
/// from the time the request is initiated.
pub fn read_timeout(mut self, read_timeout: Duration) -> Self {
self.read_timeout = Some(read_timeout);
self
}
/// Sets the read timeout.
///
/// The read timeout is the limit on the amount of time it takes to read the first byte of a response
/// from the time the request is initiated.
pub fn set_read_timeout(&mut self, read_timeout: Option<Duration>) -> &mut Self {
self.read_timeout = read_timeout;
self
}
/// Sets the operation timeout.
///
/// An operation represents the full request/response lifecycle of a call to a service.
/// The operation timeout is a limit on the total amount of time it takes for an operation to be
/// fully serviced, including the time for all retries that may have been attempted for it.
///
/// If you want to set a timeout on individual retry attempts, then see [`Self::operation_attempt_timeout`]
/// or [`Self::set_operation_attempt_timeout`].
pub fn operation_timeout(mut self, operation_timeout: Duration) -> Self {
self.operation_timeout = Some(operation_timeout);
self
}
/// Sets the operation timeout.
///
/// An operation represents the full request/response lifecycle of a call to a service.
/// The operation timeout is a limit on the total amount of time it takes for an operation to be
/// fully serviced, including the time for all retries that may have been attempted for it.
///
/// If you want to set a timeout on individual retry attempts, then see [`Self::operation_attempt_timeout`]
/// or [`Self::set_operation_attempt_timeout`].
pub fn set_operation_timeout(&mut self, operation_timeout: Option<Duration>) -> &mut Self {
self.operation_timeout = operation_timeout;
self
}
/// Sets the operation attempt timeout.
///
/// An operation represents the full request/response lifecycle of a call to a service.
/// When retries are enabled, then this setting makes it possible to set a timeout for individual
/// retry attempts (including the initial attempt) for an operation.
///
/// If you want to set a timeout on the total time for an entire request including all of its retries,
/// then see [`Self::operation_timeout`] /// or [`Self::set_operation_timeout`].
pub fn operation_attempt_timeout(mut self, operation_attempt_timeout: Duration) -> Self {
self.operation_attempt_timeout = Some(operation_attempt_timeout);
self
}
/// Sets the operation attempt timeout.
///
/// An operation represents the full request/response lifecycle of a call to a service.
/// When retries are enabled, then this setting makes it possible to set a timeout for individual
/// retry attempts (including the initial attempt) for an operation.
///
/// If you want to set a timeout on individual retry attempts, then see [`Self::operation_attempt_timeout`]
/// or [`Self::set_operation_attempt_timeout`].
pub fn set_operation_attempt_timeout(
&mut self,
operation_attempt_timeout: Option<Duration>,
) -> &mut Self {
self.operation_attempt_timeout = operation_attempt_timeout;
self
}
/// Merges two timeout config builders together.
///
/// Values from `other` will only be used as a fallback for values
/// from `self`. Useful for merging configs from different sources together when you want to
/// handle "precedence" per value instead of at the config level
///
/// # Example
///
/// ```rust
/// # use std::time::Duration;
/// # use aws_smithy_types::timeout::TimeoutConfig;
/// let a = TimeoutConfig::builder()
/// .connect_timeout(Duration::from_secs(3));
/// let b = TimeoutConfig::builder()
/// .connect_timeout(Duration::from_secs(5))
/// .operation_timeout(Duration::from_secs(3));
/// let timeout_config = a.take_unset_from(b).build();
///
/// // A's value take precedence over B's value
/// assert_eq!(timeout_config.connect_timeout(), Some(Duration::from_secs(3)));
/// // A never set an operation timeout so B's value is used
/// assert_eq!(timeout_config.operation_timeout(), Some(Duration::from_secs(3)));
/// ```
pub fn take_unset_from(self, other: Self) -> Self {
Self {
connect_timeout: self.connect_timeout.or(other.connect_timeout),
read_timeout: self.read_timeout.or(other.read_timeout),
operation_timeout: self.operation_timeout.or(other.operation_timeout),
operation_attempt_timeout: self
.operation_attempt_timeout
.or(other.operation_attempt_timeout),
}
}
/// Builds a `TimeoutConfig`.
pub fn build(self) -> TimeoutConfig {
TimeoutConfig {
connect_timeout: self.connect_timeout,
read_timeout: self.read_timeout,
operation_timeout: self.operation_timeout,
operation_attempt_timeout: self.operation_attempt_timeout,
}
}
}
impl From<TimeoutConfig> for TimeoutConfigBuilder {
fn from(timeout_config: TimeoutConfig) -> Self {
TimeoutConfigBuilder {
connect_timeout: timeout_config.connect_timeout,
read_timeout: timeout_config.read_timeout,
operation_timeout: timeout_config.operation_timeout,
operation_attempt_timeout: timeout_config.operation_attempt_timeout,
}
}
}
/// Top-level configuration for timeouts
///
/// # Example
///
/// ```rust
/// # use std::time::Duration;
///
/// # fn main() {
/// use aws_smithy_types::timeout::TimeoutConfig;
///
/// let timeout_config = TimeoutConfig::builder()
/// .operation_timeout(Duration::from_secs(30))
/// .operation_attempt_timeout(Duration::from_secs(10))
/// .connect_timeout(Duration::from_secs(3))
/// .build();
///
/// assert_eq!(
/// timeout_config.operation_timeout(),
/// Some(Duration::from_secs(30))
/// );
/// assert_eq!(
/// timeout_config.operation_attempt_timeout(),
/// Some(Duration::from_secs(10))
/// );
/// assert_eq!(
/// timeout_config.connect_timeout(),
/// Some(Duration::from_secs(3))
/// );
/// # }
/// ```
#[non_exhaustive]
#[derive(Clone, PartialEq, Debug)]
pub struct TimeoutConfig {
connect_timeout: Option<Duration>,
read_timeout: Option<Duration>,
operation_timeout: Option<Duration>,
operation_attempt_timeout: Option<Duration>,
}
impl TimeoutConfig {
/// Returns a builder to create a `TimeoutConfig`.
pub fn builder() -> TimeoutConfigBuilder {
TimeoutConfigBuilder::new()
}
/// Returns a builder equivalent of this `TimeoutConfig`.
pub fn to_builder(&self) -> TimeoutConfigBuilder {
TimeoutConfigBuilder::from(self.clone())
}
/// Converts this `TimeoutConfig` into a builder.
pub fn into_builder(self) -> TimeoutConfigBuilder {
TimeoutConfigBuilder::from(self)
}
/// Returns a timeout config with all timeouts disabled.
pub fn disabled() -> TimeoutConfig {
TimeoutConfig {
connect_timeout: None,
read_timeout: None,
operation_timeout: None,
operation_attempt_timeout: None,
}
}
/// Returns this config's connect timeout.
///
/// The connect timeout is a limit on the amount of time it takes to initiate a socket connection.
pub fn connect_timeout(&self) -> Option<Duration> {
self.connect_timeout
}
/// Returns this config's read timeout.
///
/// The read timeout is the limit on the amount of time it takes to read the first byte of a response
/// from the time the request is initiated.
pub fn read_timeout(&self) -> Option<Duration> {
self.read_timeout
}
/// Returns this config's operation timeout.
///
/// An operation represents the full request/response lifecycle of a call to a service.
/// The operation timeout is a limit on the total amount of time it takes for an operation to be
/// fully serviced, including the time for all retries that may have been attempted for it.
pub fn operation_timeout(&self) -> Option<Duration> {
self.operation_timeout
}
/// Returns this config's operation attempt timeout.
///
/// An operation represents the full request/response lifecycle of a call to a service.
/// When retries are enabled, then this setting makes it possible to set a timeout for individual
/// retry attempts (including the initial attempt) for an operation.
pub fn operation_attempt_timeout(&self) -> Option<Duration> {
self.operation_attempt_timeout
}
/// Returns true if any of the possible timeouts are set.
pub fn has_timeouts(&self) -> bool {
self.connect_timeout.is_some()
|| self.operation_timeout.is_some()
|| self.operation_attempt_timeout.is_some()
}
}
/// Configuration subset of [`TimeoutConfig`] for operation timeouts
#[non_exhaustive]
#[derive(Clone, PartialEq, Debug)]
pub struct OperationTimeoutConfig {
operation_timeout: Option<Duration>,
operation_attempt_timeout: Option<Duration>,
}
impl OperationTimeoutConfig {
/// Returns this config's operation timeout.
///
/// An operation represents the full request/response lifecycle of a call to a service.
/// The operation timeout is a limit on the total amount of time it takes for an operation to be
/// fully serviced, including the time for all retries that may have been attempted for it.
pub fn operation_timeout(&self) -> Option<Duration> {
self.operation_timeout
}
/// Returns this config's operation attempt timeout.
///
/// An operation represents the full request/response lifecycle of a call to a service.
/// When retries are enabled, then this setting makes it possible to set a timeout for individual
/// retry attempts (including the initial attempt) for an operation.
pub fn operation_attempt_timeout(&self) -> Option<Duration> {
self.operation_attempt_timeout
}
/// Returns true if any of the possible timeouts are set.
pub fn has_timeouts(&self) -> bool {
self.operation_timeout.is_some() || self.operation_attempt_timeout.is_some()
}
}
impl From<&TimeoutConfig> for OperationTimeoutConfig {
fn from(cfg: &TimeoutConfig) -> Self {
OperationTimeoutConfig {
operation_timeout: cfg.operation_timeout,
operation_attempt_timeout: cfg.operation_attempt_timeout,
}
}
}
impl From<TimeoutConfig> for OperationTimeoutConfig {
fn from(cfg: TimeoutConfig) -> Self {
OperationTimeoutConfig::from(&cfg)
}
}