Skip to content

Commit 899e92a

Browse files
committedNov 15, 2023
feat(lib): update to http 1.0
Updates dependencies `http` and `http-body` to 1.0. To do so, implements `Clone` for `OnUpgrade`. BREAKING CHANGE: Upgrade to `http` 1.0.
1 parent 6fd696e commit 899e92a

File tree

5 files changed

+28
-13
lines changed

5 files changed

+28
-13
lines changed
 

‎Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ include = [
2323
bytes = "1"
2424
futures-channel = "0.3"
2525
futures-util = { version = "0.3", default-features = false }
26-
http = "0.2.7"
27-
http-body = "=1.0.0-rc.2"
26+
http = "1"
27+
http-body = "1"
2828
pin-project-lite = "0.2.4"
2929
tokio = { version = "1.13", features = ["sync"] }
3030

3131
# Optional
3232

33-
h2 = { version = "0.3.9", optional = true }
34-
http-body-util = { version = "=0.1.0-rc.3", optional = true }
33+
h2 = { version = "0.4", optional = true }
34+
http-body-util = { version = "0.1", optional = true }
3535
httparse = { version = "1.8", optional = true }
3636
httpdate = { version = "1.0", optional = true }
3737
itoa = { version = "1", optional = true }
@@ -41,7 +41,7 @@ want = { version = "0.3", optional = true }
4141

4242
[dev-dependencies]
4343
form_urlencoded = "1"
44-
http-body-util = "=0.1.0-rc.3"
44+
http-body-util = "0.1"
4545
pretty_env_logger = "0.5"
4646
spmc = "0.3"
4747
serde = { version = "1.0", features = ["derive"] }

‎src/ffi/http_types.rs

+2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ pub struct hyper_response(pub(super) Response<IncomingBody>);
2020
/// An HTTP header map.
2121
///
2222
/// These can be part of a request or response.
23+
#[derive(Clone)]
2324
pub struct hyper_headers {
2425
pub(super) headers: HeaderMap,
2526
orig_casing: HeaderCaseMap,
2627
orig_order: OriginalHeaderOrder,
2728
}
2829

30+
#[derive(Clone)]
2931
pub(crate) struct OnInformational {
3032
func: hyper_request_on_informational_callback,
3133
data: UserDataPointer,

‎src/ffi/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ pub const HYPER_HTTP_VERSION_1_1: libc::c_int = 11;
7676
/// The HTTP/2 version.
7777
pub const HYPER_HTTP_VERSION_2: libc::c_int = 20;
7878

79+
#[derive(Clone)]
7980
struct UserDataPointer(*mut std::ffi::c_void);
8081

8182
// We don't actually know anything about this pointer, it's up to the user

‎src/upgrade.rs

+19-8
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ use std::future::Future;
4646
use std::io;
4747
use std::marker::Unpin;
4848
use std::pin::Pin;
49+
use std::sync::{Arc, Mutex};
4950
use std::task::{Context, Poll};
5051

5152
use crate::rt::{Read, ReadBufCursor, Write};
@@ -69,8 +70,9 @@ pub struct Upgraded {
6970
/// A future for a possible HTTP upgrade.
7071
///
7172
/// If no upgrade was available, or it doesn't succeed, yields an `Error`.
73+
#[derive(Clone)]
7274
pub struct OnUpgrade {
73-
rx: Option<oneshot::Receiver<crate::Result<Upgraded>>>,
75+
rx: Option<Arc<Mutex<oneshot::Receiver<crate::Result<Upgraded>>>>>,
7476
}
7577

7678
/// The deconstructed parts of an [`Upgraded`] type.
@@ -119,7 +121,12 @@ pub(super) struct Pending {
119121
))]
120122
pub(super) fn pending() -> (Pending, OnUpgrade) {
121123
let (tx, rx) = oneshot::channel();
122-
(Pending { tx }, OnUpgrade { rx: Some(rx) })
124+
(
125+
Pending { tx },
126+
OnUpgrade {
127+
rx: Some(Arc::new(Mutex::new(rx))),
128+
},
129+
)
123130
}
124131

125132
// ===== impl Upgraded =====
@@ -219,13 +226,17 @@ impl OnUpgrade {
219226
impl Future for OnUpgrade {
220227
type Output = Result<Upgraded, crate::Error>;
221228

222-
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
229+
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
223230
match self.rx {
224-
Some(ref mut rx) => Pin::new(rx).poll(cx).map(|res| match res {
225-
Ok(Ok(upgraded)) => Ok(upgraded),
226-
Ok(Err(err)) => Err(err),
227-
Err(_oneshot_canceled) => Err(crate::Error::new_canceled().with(UpgradeExpected)),
228-
}),
231+
Some(ref rx) => Pin::new(&mut *rx.lock().unwrap())
232+
.poll(cx)
233+
.map(|res| match res {
234+
Ok(Ok(upgraded)) => Ok(upgraded),
235+
Ok(Err(err)) => Err(err),
236+
Err(_oneshot_canceled) => {
237+
Err(crate::Error::new_canceled().with(UpgradeExpected))
238+
}
239+
}),
229240
None => Poll::Ready(Err(crate::Error::new_user_no_upgrade())),
230241
}
231242
}

‎tests/client.rs

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ async fn tcp_connect(addr: &SocketAddr) -> std::io::Result<TokioIo<TcpStream>> {
3838
TcpStream::connect(*addr).await.map(TokioIo::new)
3939
}
4040

41+
#[derive(Clone)]
4142
struct HttpInfo {
4243
remote_addr: SocketAddr,
4344
}

0 commit comments

Comments
 (0)
Please sign in to comment.