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
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
//! Type-erased variants of [`Client`] and friends.
use std::fmt;
use tower::{Layer, Service, ServiceExt};
use aws_smithy_http::body::SdkBody;
use aws_smithy_http::result::ConnectorError;
use boxclone::*;
use crate::{bounds, retry, Client};
// These types are technically public in that they're reachable from the public trait impls on
// DynMiddleware, but no-one should ever look at them or use them.
#[doc(hidden)]
pub mod boxclone;
/// A [`Client`] whose connector and middleware types have been erased.
///
/// Mainly useful if you need to name `R` in a type-erased client. If you do not, you can instead
/// just use `Client` with no type parameters, which ends up being the same type.
pub type DynClient<R = retry::Standard> = Client<DynConnector, DynMiddleware<DynConnector>, R>;
impl<C, M, R> Client<C, M, R>
where
C: bounds::SmithyConnector,
M: bounds::SmithyMiddleware<C> + Send + Sync + 'static,
R: retry::NewRequestPolicy,
{
/// Erase the middleware type from the client type signature.
///
/// This makes the final client type easier to name, at the cost of a marginal increase in
/// runtime performance. See [`DynMiddleware`] for details.
///
/// In practice, you'll use this method once you've constructed a client to your liking:
///
/// ```no_run
/// # #[cfg(feature = "https")]
/// # fn not_main() {
/// use aws_smithy_client::{Builder, Client};
/// struct MyClient {
/// client: Client<aws_smithy_client::conns::Https>,
/// }
///
/// let client = Builder::new()
/// .https()
/// .middleware(tower::layer::util::Identity::new())
/// .build();
/// let client = MyClient { client: client.into_dyn_middleware() };
/// # client.client.check();
/// # }
pub fn into_dyn_middleware(self) -> Client<C, DynMiddleware<C>, R> {
Client {
connector: self.connector,
middleware: DynMiddleware::new(self.middleware),
retry_policy: self.retry_policy,
operation_timeout_config: self.operation_timeout_config,
sleep_impl: self.sleep_impl,
reconnect_mode: self.reconnect_mode,
}
}
}
impl<C, M, R> Client<C, M, R>
where
C: bounds::SmithyConnector,
M: bounds::SmithyMiddleware<DynConnector> + Send + Sync + 'static,
R: retry::NewRequestPolicy,
{
/// Erase the connector type from the client type signature.
///
/// This makes the final client type easier to name, at the cost of a marginal increase in
/// runtime performance. See [`DynConnector`] for details.
///
/// In practice, you'll use this method once you've constructed a client to your liking:
///
/// ```no_run
/// # #[cfg(feature = "https")]
/// # fn not_main() {
/// # type MyMiddleware = aws_smithy_client::DynMiddleware<aws_smithy_client::DynConnector>;
/// use aws_smithy_client::{Builder, Client};
/// struct MyClient {
/// client: Client<aws_smithy_client::DynConnector, MyMiddleware>,
/// }
///
/// let client = Builder::new()
/// .https()
/// .middleware(tower::layer::util::Identity::new())
/// .build();
/// let client = MyClient { client: client.into_dyn_connector() };
/// # client.client.check();
/// # }
pub fn into_dyn_connector(self) -> Client<DynConnector, M, R> {
Client {
connector: DynConnector::new(self.connector),
middleware: self.middleware,
retry_policy: self.retry_policy,
operation_timeout_config: self.operation_timeout_config,
sleep_impl: self.sleep_impl,
reconnect_mode: self.reconnect_mode,
}
}
/// Erase the connector and middleware types from the client type signature.
///
/// This makes the final client type easier to name, at the cost of a marginal increase in
/// runtime performance. See [`DynConnector`] and [`DynMiddleware`] for details.
///
/// Note that if you're using the standard retry mechanism, [`retry::Standard`], `DynClient<R>`
/// is equivalent to `Client` with no type arguments.
///
/// In practice, you'll use this method once you've constructed a client to your liking:
///
/// ```no_run
/// # #[cfg(feature = "https")]
/// # fn not_main() {
/// use aws_smithy_client::{Builder, Client};
/// struct MyClient {
/// client: aws_smithy_client::Client,
/// }
///
/// let client = Builder::new()
/// .https()
/// .middleware(tower::layer::util::Identity::new())
/// .build();
/// let client = MyClient { client: client.into_dyn() };
/// # client.client.check();
/// # }
pub fn into_dyn(self) -> DynClient<R> {
self.into_dyn_connector().into_dyn_middleware()
}
}
/// A Smithy connector that uses dynamic dispatch.
///
/// This type allows you to pay a small runtime cost to avoid having to name the exact connector
/// you're using anywhere you want to hold a [`Client`]. Specifically, this will use `Box` to
/// enable dynamic dispatch for every request that goes through the connector, which increases
/// memory pressure and suffers an additional vtable indirection for each request, but is unlikely
/// to matter in all but the highest-performance settings.
#[non_exhaustive]
#[derive(Clone)]
pub struct DynConnector(
BoxCloneService<http::Request<SdkBody>, http::Response<SdkBody>, ConnectorError>,
);
impl fmt::Debug for DynConnector {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct("DynConnector").finish()
}
}
impl DynConnector {
/// Construct a new dynamically-dispatched Smithy middleware.
pub fn new<E, C>(connector: C) -> Self
where
C: bounds::SmithyConnector<Error = E> + Send + 'static,
E: Into<ConnectorError>,
{
Self(BoxCloneService::new(connector.map_err(|e| e.into())))
}
#[doc(hidden)]
pub fn call_lite(
&mut self,
req: http::Request<SdkBody>,
) -> BoxFuture<http::Response<SdkBody>, Box<dyn std::error::Error + Send + Sync + 'static>>
{
let future = Service::call(self, req);
Box::pin(async move { future.await.map_err(|err| Box::new(err) as _) })
}
}
impl Service<http::Request<SdkBody>> for DynConnector {
type Response = http::Response<SdkBody>;
type Error = ConnectorError;
type Future = BoxFuture<Self::Response, Self::Error>;
fn poll_ready(
&mut self,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Result<(), Self::Error>> {
self.0.poll_ready(cx)
}
fn call(&mut self, req: http::Request<SdkBody>) -> Self::Future {
self.0.call(req)
}
}
/// A Smithy middleware that uses dynamic dispatch.
///
/// This type allows you to pay a small runtime cost to avoid having to name the exact middleware
/// you're using anywhere you want to hold a [`Client`]. Specifically, this will use `Box` to
/// enable dynamic dispatch for every request that goes through the middleware, which increases
/// memory pressure and suffers an additional vtable indirection for each request, but is unlikely
/// to matter in all but the highest-performance settings.
#[non_exhaustive]
pub struct DynMiddleware<C>(
ArcCloneLayer<
aws_smithy_http_tower::dispatch::DispatchService<C>,
aws_smithy_http::operation::Request,
aws_smithy_http::operation::Response,
aws_smithy_http_tower::SendOperationError,
>,
);
impl<C> Clone for DynMiddleware<C> {
fn clone(&self) -> Self {
Self(self.0.clone())
}
}
impl<C> fmt::Debug for DynMiddleware<C> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct("DynMiddleware").finish()
}
}
impl<C> DynMiddleware<C> {
/// Construct a new dynamically-dispatched Smithy middleware.
pub fn new<M: bounds::SmithyMiddleware<C> + Send + Sync + 'static>(middleware: M) -> Self {
Self(ArcCloneLayer::new(middleware))
}
}
impl<C> Layer<aws_smithy_http_tower::dispatch::DispatchService<C>> for DynMiddleware<C> {
type Service = BoxCloneService<
aws_smithy_http::operation::Request,
aws_smithy_http::operation::Response,
aws_smithy_http_tower::SendOperationError,
>;
fn layer(&self, inner: aws_smithy_http_tower::dispatch::DispatchService<C>) -> Self::Service {
self.0.layer(inner)
}
}