mirror of
https://github.com/NotAShelf/stash.git
synced 2026-04-13 06:23:47 +00:00
modularize codebase
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I6a6a69648ea836bfeb539450db14a666c623412e
This commit is contained in:
parent
478c020579
commit
b0820a1940
10 changed files with 445 additions and 252 deletions
235
src/db/mod.rs
Normal file
235
src/db/mod.rs
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
use std::fmt;
|
||||
use std::io::{BufRead, BufReader, Read, Write};
|
||||
use std::str;
|
||||
|
||||
use image::{GenericImageView, ImageFormat};
|
||||
use rmp_serde::{decode::from_read, encode::to_vec};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use sled::{Db, IVec};
|
||||
|
||||
pub trait ClipboardDb {
|
||||
fn store_entry(&self, input: impl Read, max_dedupe_search: u64, max_items: u64);
|
||||
fn deduplicate(&self, buf: &[u8], max: u64);
|
||||
fn trim_db(&self, max: u64);
|
||||
fn delete_last(&self);
|
||||
fn wipe_db(&self);
|
||||
fn list_entries(&self, out: impl Write, preview_width: u32);
|
||||
fn decode_entry(&self, in_: impl Read, out: impl Write, input: Option<String>);
|
||||
fn delete_query(&self, query: &str);
|
||||
fn delete_entries(&self, in_: impl Read);
|
||||
fn next_sequence(&self) -> u64;
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize)]
|
||||
pub struct Entry {
|
||||
pub contents: Vec<u8>,
|
||||
pub mime: Option<String>,
|
||||
}
|
||||
|
||||
impl fmt::Display for Entry {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
let preview = preview_entry(&self.contents, self.mime.as_deref(), 100);
|
||||
write!(f, "{preview}")
|
||||
}
|
||||
}
|
||||
|
||||
pub struct SledClipboardDb {
|
||||
pub db: Db,
|
||||
}
|
||||
|
||||
impl ClipboardDb for SledClipboardDb {
|
||||
fn store_entry(&self, mut input: impl Read, max_dedupe_search: u64, max_items: u64) {
|
||||
let mut buf = Vec::new();
|
||||
if input.read_to_end(&mut buf).is_err() || buf.is_empty() || buf.len() > 5 * 1_000_000 {
|
||||
return;
|
||||
}
|
||||
if buf.iter().all(|b| b.is_ascii_whitespace()) {
|
||||
return;
|
||||
}
|
||||
|
||||
let mime = detect_mime(&buf);
|
||||
|
||||
self.deduplicate(&buf, max_dedupe_search);
|
||||
|
||||
let entry = Entry {
|
||||
contents: buf.clone(),
|
||||
mime,
|
||||
};
|
||||
|
||||
let id = self.next_sequence();
|
||||
let enc = to_vec(&entry).unwrap();
|
||||
|
||||
self.db.insert(u64_to_ivec(id), enc).unwrap();
|
||||
self.trim_db(max_items);
|
||||
}
|
||||
|
||||
fn deduplicate(&self, buf: &[u8], max: u64) {
|
||||
let mut count = 0;
|
||||
for item in self.db.iter().rev().take(max as usize) {
|
||||
let (k, v) = item.unwrap();
|
||||
let entry: Entry = from_read(v.as_ref()).unwrap();
|
||||
if entry.contents == buf {
|
||||
self.db.remove(k).unwrap();
|
||||
}
|
||||
count += 1;
|
||||
if count >= max {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn trim_db(&self, max: u64) {
|
||||
let mut keys: Vec<_> = self.db.iter().rev().map(|kv| kv.unwrap().0).collect();
|
||||
if keys.len() as u64 > max {
|
||||
for k in keys.drain((max as usize)..) {
|
||||
self.db.remove(k).unwrap();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn delete_last(&self) {
|
||||
if let Some((k, _)) = self.db.iter().next_back().and_then(Result::ok) {
|
||||
self.db.remove(k).unwrap();
|
||||
}
|
||||
}
|
||||
|
||||
fn wipe_db(&self) {
|
||||
self.db.clear().unwrap();
|
||||
}
|
||||
|
||||
fn list_entries(&self, mut out: impl Write, preview_width: u32) {
|
||||
for (k, v) in self.db.iter().rev().filter_map(Result::ok) {
|
||||
let id = ivec_to_u64(&k);
|
||||
let entry: Entry = from_read(v.as_ref()).unwrap();
|
||||
let preview = preview_entry(&entry.contents, entry.mime.as_deref(), preview_width);
|
||||
writeln!(out, "{id}\t{preview}").unwrap();
|
||||
}
|
||||
}
|
||||
|
||||
fn decode_entry(&self, mut in_: impl Read, mut out: impl Write, input: Option<String>) {
|
||||
let s = if let Some(input) = input {
|
||||
input
|
||||
} else {
|
||||
let mut buf = String::new();
|
||||
in_.read_to_string(&mut buf).unwrap();
|
||||
buf
|
||||
};
|
||||
|
||||
let id = extract_id(&s).unwrap();
|
||||
let v = self.db.get(u64_to_ivec(id)).unwrap().unwrap();
|
||||
let entry: Entry = from_read(v.as_ref()).unwrap();
|
||||
out.write_all(&entry.contents).unwrap();
|
||||
}
|
||||
|
||||
fn delete_query(&self, query: &str) {
|
||||
for (k, v) in self.db.iter().filter_map(Result::ok) {
|
||||
let entry: Entry = from_read(v.as_ref()).unwrap();
|
||||
if entry
|
||||
.contents
|
||||
.windows(query.len())
|
||||
.any(|w| w == query.as_bytes())
|
||||
{
|
||||
self.db.remove(k).unwrap();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn delete_entries(&self, in_: impl Read) {
|
||||
let reader = BufReader::new(in_);
|
||||
for line in reader.lines().map_while(Result::ok) {
|
||||
if let Ok(id) = extract_id(&line) {
|
||||
self.db.remove(u64_to_ivec(id)).unwrap();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn next_sequence(&self) -> u64 {
|
||||
let last = self
|
||||
.db
|
||||
.iter()
|
||||
.next_back()
|
||||
.and_then(|r| r.ok())
|
||||
.map(|(k, _)| ivec_to_u64(&k));
|
||||
last.unwrap_or(0) + 1
|
||||
}
|
||||
}
|
||||
|
||||
// Helper functions
|
||||
pub fn extract_id(input: &str) -> Result<u64, &'static str> {
|
||||
let id_str = input.split('\t').next().unwrap_or("");
|
||||
id_str.parse().map_err(|_| "invalid id")
|
||||
}
|
||||
|
||||
pub fn u64_to_ivec(v: u64) -> IVec {
|
||||
IVec::from(&v.to_be_bytes()[..])
|
||||
}
|
||||
|
||||
pub fn ivec_to_u64(v: &IVec) -> u64 {
|
||||
let arr: [u8; 8] = v.as_ref().try_into().unwrap();
|
||||
u64::from_be_bytes(arr)
|
||||
}
|
||||
|
||||
pub fn detect_mime(data: &[u8]) -> Option<String> {
|
||||
if image::guess_format(data).is_ok() {
|
||||
match image::guess_format(data) {
|
||||
Ok(fmt) => Some(
|
||||
match fmt {
|
||||
ImageFormat::Png => "image/png",
|
||||
ImageFormat::Jpeg => "image/jpeg",
|
||||
ImageFormat::Gif => "image/gif",
|
||||
ImageFormat::Bmp => "image/bmp",
|
||||
ImageFormat::Tiff => "image/tiff",
|
||||
_ => "application/octet-stream",
|
||||
}
|
||||
.to_string(),
|
||||
),
|
||||
Err(_) => None,
|
||||
}
|
||||
} else if data.is_ascii() {
|
||||
Some("text/plain".into())
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
pub fn preview_entry(data: &[u8], mime: Option<&str>, width: u32) -> String {
|
||||
if let Some(mime) = mime {
|
||||
if mime.starts_with("image/") {
|
||||
if let Ok(img) = image::load_from_memory(data) {
|
||||
let (w, h) = img.dimensions();
|
||||
return format!(
|
||||
"[[ binary data {} {} {}x{} ]]",
|
||||
size_str(data.len()),
|
||||
mime,
|
||||
w,
|
||||
h
|
||||
);
|
||||
}
|
||||
} else if mime == "application/json" || mime.starts_with("text/") {
|
||||
let s = str::from_utf8(data).unwrap_or("");
|
||||
let s = s.trim().replace(|c: char| c.is_whitespace(), " ");
|
||||
return truncate(&s, width as usize, "…");
|
||||
}
|
||||
}
|
||||
let s = String::from_utf8_lossy(data);
|
||||
truncate(s.trim(), width as usize, "…")
|
||||
}
|
||||
|
||||
pub fn truncate(s: &str, max: usize, ellip: &str) -> String {
|
||||
if s.chars().count() > max {
|
||||
s.chars().take(max).collect::<String>() + ellip
|
||||
} else {
|
||||
s.to_string()
|
||||
}
|
||||
}
|
||||
|
||||
pub fn size_str(size: usize) -> String {
|
||||
let units = ["B", "KiB", "MiB"];
|
||||
let mut fsize = size as f64;
|
||||
let mut i = 0;
|
||||
while fsize >= 1024.0 && i < units.len() - 1 {
|
||||
fsize /= 1024.0;
|
||||
i += 1;
|
||||
}
|
||||
format!("{:.0} {}", fsize, units[i])
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue