mirror of
https://git.asonix.dog/asonix/pict-rs.git
synced 2024-11-25 02:51:17 +00:00
Make CancelSafeProcessor impl more concise, format code
This commit is contained in:
parent
c53ae967d5
commit
80044616f9
1 changed files with 28 additions and 21 deletions
49
src/main.rs
49
src/main.rs
|
@ -9,11 +9,18 @@ use awc::Client;
|
||||||
use dashmap::{mapref::entry::Entry, DashMap};
|
use dashmap::{mapref::entry::Entry, DashMap};
|
||||||
use futures_core::stream::Stream;
|
use futures_core::stream::Stream;
|
||||||
use once_cell::sync::{Lazy, OnceCell};
|
use once_cell::sync::{Lazy, OnceCell};
|
||||||
use std::{collections::HashSet, future::{Future, ready}, path::PathBuf, time::SystemTime, task::{Context, Poll}, pin::Pin};
|
use std::{
|
||||||
|
collections::HashSet,
|
||||||
|
future::{ready, Future},
|
||||||
|
path::PathBuf,
|
||||||
|
pin::Pin,
|
||||||
|
task::{Context, Poll},
|
||||||
|
time::SystemTime,
|
||||||
|
};
|
||||||
use structopt::StructOpt;
|
use structopt::StructOpt;
|
||||||
use tokio::{
|
use tokio::{
|
||||||
io::{AsyncReadExt, AsyncWriteExt},
|
io::{AsyncReadExt, AsyncWriteExt},
|
||||||
sync::oneshot::{Sender, Receiver},
|
sync::oneshot::{Receiver, Sender},
|
||||||
};
|
};
|
||||||
use tracing::{debug, error, info, instrument, Span};
|
use tracing::{debug, error, info, instrument, Span};
|
||||||
use tracing_subscriber::EnvFilter;
|
use tracing_subscriber::EnvFilter;
|
||||||
|
@ -97,7 +104,11 @@ where
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
CancelSafeProcessor { path, receiver, fut }
|
CancelSafeProcessor {
|
||||||
|
path,
|
||||||
|
receiver,
|
||||||
|
fut,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -109,25 +120,21 @@ where
|
||||||
|
|
||||||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
if let Some(ref mut rx) = self.receiver {
|
if let Some(ref mut rx) = self.receiver {
|
||||||
Pin::new(rx).poll(cx).map(|res| res.map_err(|_| UploadError::Canceled))
|
Pin::new(rx)
|
||||||
|
.poll(cx)
|
||||||
|
.map(|res| res.map_err(|_| UploadError::Canceled))
|
||||||
} else {
|
} else {
|
||||||
match Pin::new(&mut self.fut).poll(cx) {
|
Pin::new(&mut self.fut).poll(cx).map(|res| {
|
||||||
Poll::Pending => Poll::Pending,
|
let opt = PROCESS_MAP.remove(&self.path);
|
||||||
Poll::Ready(res) => {
|
res.map(|tup| {
|
||||||
let opt = PROCESS_MAP.remove(&self.path);
|
if let Some((_, vec)) = opt {
|
||||||
match res {
|
for sender in vec {
|
||||||
Err(e) => Poll::Ready(Err(e)),
|
let _ = sender.send(tup.clone());
|
||||||
Ok(tup) => {
|
|
||||||
if let Some((_, vec)) = opt {
|
|
||||||
for sender in vec {
|
|
||||||
let _ = sender.send(tup.clone());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Poll::Ready(Ok(tup))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
tup
|
||||||
}
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -533,8 +540,8 @@ async fn process(
|
||||||
Ok((details, bytes)) as Result<(Details, web::Bytes), UploadError>
|
Ok((details, bytes)) as Result<(Details, web::Bytes), UploadError>
|
||||||
};
|
};
|
||||||
|
|
||||||
let (details, bytes) = CancelSafeProcessor::new(thumbnail_path.clone(), Box::pin(process_fut)).await?;
|
let (details, bytes) =
|
||||||
|
CancelSafeProcessor::new(thumbnail_path.clone(), Box::pin(process_fut)).await?;
|
||||||
|
|
||||||
return Ok(srv_response(
|
return Ok(srv_response(
|
||||||
HttpResponse::Ok(),
|
HttpResponse::Ok(),
|
||||||
|
|
Loading…
Reference in a new issue