2024-07-30 05:35:43 +00:00
|
|
|
use crate::display::EInkPanel;
|
|
|
|
use crate::imageproc::{DitherMethod, DitherPalette, EInkImage};
|
2024-07-27 19:11:44 +00:00
|
|
|
use axum::extract::Multipart;
|
2024-07-30 05:35:43 +00:00
|
|
|
use axum::http::{header, StatusCode};
|
2024-07-27 19:11:44 +00:00
|
|
|
use axum::response::IntoResponse;
|
|
|
|
use axum::{extract::State, response::Response, routing::post, Router};
|
2024-07-30 05:35:43 +00:00
|
|
|
use image::{ImageReader, RgbImage};
|
|
|
|
use std::io::{BufWriter, Cursor};
|
|
|
|
use std::str;
|
|
|
|
use std::str::FromStr;
|
2024-07-28 04:01:57 +00:00
|
|
|
use std::sync::Arc;
|
2024-07-30 05:35:43 +00:00
|
|
|
use std::time::Duration;
|
2024-07-28 04:01:57 +00:00
|
|
|
use tokio::sync::mpsc::{self, Receiver, Sender};
|
|
|
|
use tokio::task::JoinHandle;
|
2024-07-30 05:35:43 +00:00
|
|
|
use tracing::{debug, error, info, instrument};
|
2024-07-18 12:34:28 +00:00
|
|
|
|
2024-07-30 05:35:43 +00:00
|
|
|
#[derive(thiserror::Error, Debug)]
|
|
|
|
pub enum ApiError {
|
|
|
|
#[error("missing image field")]
|
|
|
|
MissingImage,
|
2024-07-27 19:11:44 +00:00
|
|
|
}
|
2024-07-24 14:43:09 +00:00
|
|
|
|
|
|
|
#[derive(Clone)]
|
2024-07-27 19:11:44 +00:00
|
|
|
pub struct Context {
|
2024-07-28 04:01:57 +00:00
|
|
|
display_channel: Sender<DisplaySetCommand>,
|
|
|
|
display_task: Arc<JoinHandle<()>>,
|
2024-07-27 19:11:44 +00:00
|
|
|
}
|
2024-07-28 04:01:57 +00:00
|
|
|
|
2024-07-27 19:11:44 +00:00
|
|
|
impl Context {
|
|
|
|
#[must_use]
|
2024-07-28 04:01:57 +00:00
|
|
|
pub fn new(disp: Box<dyn EInkPanel + Send>) -> Self {
|
|
|
|
let (tx, rx) = mpsc::channel(2);
|
|
|
|
let task = tokio::spawn(display_task(rx, disp));
|
2024-07-27 19:11:44 +00:00
|
|
|
Self {
|
2024-07-28 04:01:57 +00:00
|
|
|
display_channel: tx,
|
|
|
|
display_task: Arc::new(task),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-27 19:11:44 +00:00
|
|
|
// Make our own error that wraps `anyhow::Error`.
|
|
|
|
struct AppError(anyhow::Error);
|
|
|
|
|
|
|
|
// Tell axum how to convert `AppError` into a response.
|
|
|
|
impl IntoResponse for AppError {
|
|
|
|
fn into_response(self) -> Response {
|
|
|
|
(
|
|
|
|
StatusCode::INTERNAL_SERVER_ERROR,
|
|
|
|
format!("Something went wrong: {}", self.0),
|
|
|
|
)
|
|
|
|
.into_response()
|
|
|
|
}
|
2024-07-24 14:43:09 +00:00
|
|
|
}
|
2024-07-27 19:11:44 +00:00
|
|
|
|
|
|
|
// This enables using `?` on functions that return `Result<_, anyhow::Error>` to turn them into
|
|
|
|
// `Result<_, AppError>`. That way you don't need to do that manually.
|
|
|
|
impl<E> From<E> for AppError
|
|
|
|
where
|
|
|
|
E: Into<anyhow::Error>,
|
|
|
|
{
|
|
|
|
fn from(err: E) -> Self {
|
|
|
|
Self(err.into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-29 17:51:51 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct DisplaySetCommand {
|
|
|
|
img: Box<EInkImage>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[instrument(skip_all)]
|
|
|
|
pub async fn display_task(
|
|
|
|
mut rx: Receiver<DisplaySetCommand>,
|
|
|
|
mut display: Box<dyn EInkPanel + Send>,
|
|
|
|
) {
|
|
|
|
while let Some(cmd) = rx.recv().await {
|
|
|
|
info!("Got a display set command");
|
|
|
|
if let Err(e) = display.display(&cmd.img) {
|
|
|
|
error!("Error displaying command {e}");
|
|
|
|
}
|
|
|
|
info!("Done setting display");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-18 12:34:28 +00:00
|
|
|
/// API routes for axum
|
|
|
|
/// Start with the basics: Send an image, crop it, dither, and upload.
|
|
|
|
/// we defer the upload to a separate task.
|
2024-07-27 19:11:44 +00:00
|
|
|
pub fn router() -> Router<Context> {
|
2024-07-29 17:51:51 +00:00
|
|
|
Router::new()
|
|
|
|
.route("/setimage", post(set_image))
|
2024-07-30 05:35:43 +00:00
|
|
|
.route("/preview", post(preview_image))
|
2024-07-29 17:51:51 +00:00
|
|
|
}
|
|
|
|
|
2024-07-29 21:39:49 +00:00
|
|
|
#[derive(Debug)]
|
2024-07-30 05:35:43 +00:00
|
|
|
struct ImageRequest {
|
|
|
|
image: Box<RgbImage>,
|
|
|
|
dither_method: DitherMethod,
|
|
|
|
palette: DitherPalette,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ImageRequest {
|
|
|
|
async fn from_multipart(mut parts: Multipart) -> Result<Self, AppError> {
|
|
|
|
let mut img = None;
|
|
|
|
let mut palette = None;
|
|
|
|
let mut dither_method = None;
|
|
|
|
while let Some(field) = parts.next_field().await? {
|
|
|
|
match field.name() {
|
|
|
|
Some("image") => {
|
|
|
|
let data = field.bytes().await?;
|
|
|
|
let reader = ImageReader::new(Cursor::new(data))
|
|
|
|
.with_guessed_format()
|
|
|
|
.expect("cursor never fails");
|
|
|
|
let image = reader.decode()?;
|
|
|
|
img = Some(Box::new(image.into()));
|
|
|
|
}
|
|
|
|
Some("palette") => {
|
|
|
|
let data = field.bytes().await?;
|
|
|
|
let val = str::from_utf8(&data)?;
|
|
|
|
palette = Some(DitherPalette::from_str(val)?);
|
|
|
|
}
|
|
|
|
Some("dither_method") => {
|
|
|
|
let data = field.bytes().await?;
|
|
|
|
let val = str::from_utf8(&data)?;
|
|
|
|
dither_method = Some(DitherMethod::from_str(val)?);
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(i) = img {
|
|
|
|
Ok(Self {
|
|
|
|
image: i,
|
|
|
|
dither_method: dither_method.unwrap_or(DitherMethod::NearestNeighbor),
|
|
|
|
palette: palette.unwrap_or(DitherPalette::Default),
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
Err(ApiError::MissingImage.into())
|
|
|
|
}
|
|
|
|
}
|
2024-07-24 14:43:09 +00:00
|
|
|
}
|
|
|
|
|
2024-07-28 04:01:57 +00:00
|
|
|
#[instrument(skip(ctx))]
|
2024-07-27 19:11:44 +00:00
|
|
|
async fn set_image(
|
|
|
|
State(ctx): State<Context>,
|
2024-07-30 05:35:43 +00:00
|
|
|
parts: Multipart,
|
2024-07-27 19:11:44 +00:00
|
|
|
) -> Result<impl IntoResponse, AppError> {
|
2024-07-30 05:35:43 +00:00
|
|
|
let call = ImageRequest::from_multipart(parts).await?;
|
|
|
|
let mut buf = EInkImage::new(call.palette.value().to_vec());
|
|
|
|
{
|
|
|
|
let mut dither = call.dither_method.get_ditherer();
|
|
|
|
dither.dither(&call.image, &mut buf);
|
2024-07-27 19:11:44 +00:00
|
|
|
}
|
2024-07-30 05:35:43 +00:00
|
|
|
let cmd = DisplaySetCommand { img: Box::new(buf) };
|
|
|
|
ctx.display_channel
|
|
|
|
.send_timeout(cmd, Duration::from_secs(10))
|
|
|
|
.await?;
|
|
|
|
Ok(StatusCode::OK)
|
2024-07-24 14:43:09 +00:00
|
|
|
}
|
2024-07-29 17:51:51 +00:00
|
|
|
|
2024-07-30 05:35:43 +00:00
|
|
|
/// generates a dithered image based on the given image and the dithering parameters.
|
|
|
|
/// Can be used to see how the dithering and palette choices affect the result.
|
|
|
|
async fn preview_image(parts: Multipart) -> Result<impl IntoResponse, AppError> {
|
|
|
|
let call = ImageRequest::from_multipart(parts).await?;
|
|
|
|
let mut buf = EInkImage::new(call.palette.value().to_vec());
|
|
|
|
{
|
|
|
|
let mut dither = call.dither_method.get_ditherer();
|
|
|
|
dither.dither(&call.image, &mut buf);
|
|
|
|
}
|
|
|
|
// Convert buf into a png image.
|
|
|
|
let img = buf.into_rgbimage();
|
|
|
|
|
|
|
|
let mut buffer = Cursor::new(Vec::new());
|
|
|
|
img.write_to(&mut buffer, image::ImageFormat::Png)?;
|
|
|
|
|
|
|
|
let headers = [(header::CONTENT_TYPE, mime::IMAGE_PNG.to_string())];
|
|
|
|
Ok((StatusCode::OK, headers, buffer.into_inner()))
|
2024-07-29 17:51:51 +00:00
|
|
|
}
|