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
//! Lightweight middleware/interceptor chain for the HTTP client.
//!
//! Provides a `ClientMiddleware` trait that lets callers observe and instrument
//! each request/response round-trip without the complex type-erasure required
//! by a full `tower::Service` composition.
//!
//! # Example
//!
//! ```rust,no_run
//! use oxihttp_client::{Client, middleware::{ClientMiddleware, LoggingMiddleware}};
//!
//! let client = Client::builder()
//! .with_middleware(LoggingMiddleware::new("my-client"))
//! .build()
//! .expect("client build");
//! ```
use Arc;
use Duration;
use ;
// ---------------------------------------------------------------------------
// Context types
// ---------------------------------------------------------------------------
/// Request context passed to `ClientMiddleware::before_request`.
///
/// Contains read-only references to the parts of the outgoing request that
/// are cheaply observable without buffering the body.
/// Response context passed to `ClientMiddleware::after_response`.
// ---------------------------------------------------------------------------
// Trait
// ---------------------------------------------------------------------------
/// A request/response interceptor that can observe (but not modify) each
/// HTTP round-trip.
///
/// Both callbacks receive a context struct describing the relevant phase.
/// The `before_request` hook fires once per `send()` call, immediately before
/// the first attempt. The `after_response` hook fires once after the final
/// successful response (or after the last failed attempt returns an error,
/// though in error cases `after_response` is *not* called — see
/// `ClientMiddleware::after_error` for that).
// ---------------------------------------------------------------------------
// Concrete middleware
// ---------------------------------------------------------------------------
/// Logging middleware: emits one line to `stderr` before each request and one
/// line after each response.
///
/// # Example
///
/// ```rust,no_run
/// use oxihttp_client::middleware::LoggingMiddleware;
///
/// let mw = LoggingMiddleware::new("api-client");
/// ```
/// Timing middleware: invokes a user-supplied callback with the elapsed
/// duration after each successful response.
///
/// Useful for recording latency metrics without coupling to any particular
/// metrics framework.
///
/// # Example
///
/// ```rust,no_run
/// use std::sync::Arc;
/// use std::sync::Mutex;
/// use oxihttp_client::middleware::TimingMiddleware;
///
/// let recorded = Arc::new(Mutex::new(Vec::new()));
/// let r = Arc::clone(&recorded);
/// let mw = TimingMiddleware::new(move |d| r.lock().expect("lock").push(d));
/// ```