2024-08-11 03:48:20 +02:00
|
|
|
//! One of the goals of the bot is to never save user-images to disk (for
|
|
|
|
//! performance and safety reasons), opting to perform operations in-memory
|
|
|
|
//! instead.
|
|
|
|
//!
|
|
|
|
//! While great in practice, this makes debugging much harder. This module
|
|
|
|
//! allows for a convenient way to throw images into a `logs` directory with
|
|
|
|
//! a simple env var.
|
|
|
|
|
2024-08-11 03:14:02 +02:00
|
|
|
use std::{env, ops::Deref};
|
|
|
|
|
|
|
|
use image::{DynamicImage, EncodableLayout, ImageBuffer, PixelWithColorType};
|
|
|
|
use poise::serenity_prelude::Timestamp;
|
|
|
|
|
|
|
|
use crate::context::Error;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn should_save_debug_images() -> bool {
|
|
|
|
env::var("SHIMMERING_DEBUG_IMGS")
|
|
|
|
.map(|s| s == "1")
|
|
|
|
.unwrap_or(false)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn debug_image_log(image: &DynamicImage) -> Result<(), Error> {
|
|
|
|
if should_save_debug_images() {
|
|
|
|
image.save(format!("./logs/{}.png", Timestamp::now()))?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn debug_image_buffer_log<P, C>(image: &ImageBuffer<P, C>) -> Result<(), Error>
|
|
|
|
where
|
|
|
|
P: PixelWithColorType,
|
|
|
|
[P::Subpixel]: EncodableLayout,
|
|
|
|
C: Deref<Target = [P::Subpixel]>,
|
|
|
|
{
|
|
|
|
if should_save_debug_images() {
|
|
|
|
image.save(format!("./logs/{}.png", Timestamp::now()))?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|