1
0
Fork 0
forked from wry/wry

io-uring: add timeout argument to write

This commit is contained in:
Julian Orth 2022-05-13 18:24:12 +02:00
parent 837b5592bc
commit ad85d89641
2 changed files with 42 additions and 39 deletions

View file

@ -18,9 +18,10 @@ use {
WlSurface,
},
},
io_uring::{IoUring, TaskResultExt},
io_uring::{IoUring, IoUringError, TaskResultExt},
rect::Rect,
state::State,
time::Time,
tree::ToplevelNode,
utils::{
bitflags::BitflagsExt, buf::Buf, clonecell::CloneCell, copyhashmap::CopyHashMap,
@ -59,10 +60,7 @@ use {
},
ahash::{AHashMap, AHashSet},
bstr::ByteSlice,
futures_util::{
future::{self, Either},
pin_mut, select, FutureExt,
},
futures_util::{select, FutureExt},
smallvec::SmallVec,
std::{
borrow::Cow,
@ -2380,24 +2378,23 @@ struct XToWaylandTransfer {
impl XToWaylandTransfer {
async fn run(mut self) {
let timeout = self.state.wheel.timeout(5000);
pin_mut!(timeout);
let timeout = Time::in_ms(5000).unwrap();
let mut pos = 0;
while pos < self.data.len() {
let f1 = self.state.ring.write(&self.fd, self.data.slice(pos..));
pin_mut!(f1);
match future::select(f1, &mut timeout).await {
Either::Left((res, _)) => match res.merge() {
Ok(n) => pos += n,
Err(e) => {
log::error!("Could not write to wayland client: {}", ErrorFmt(e));
break;
}
},
Either::Right(_) => {
let res = self
.state
.ring
.write(&self.fd, self.data.slice(pos..), Some(timeout));
match res.await.merge() {
Ok(n) => pos += n,
Err(IoUringError::OsError(OsError(c::ECANCELED))) => {
log::error!("Transfer timed out");
break;
}
Err(e) => {
log::error!("Could not write to wayland client: {}", ErrorFmt(e));
break;
}
}
}
self.shared.transfers.remove(&self.id);