You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mediarepo/mediarepo-api/src/tauri_plugin/state.rs

54 lines
1.1 KiB
Rust

use std::collections::HashMap;
use std::mem;
use std::sync::Arc;
use parking_lot::Mutex;
use tauri::async_runtime::RwLock;
use crate::client_api::ApiClient;
use crate::tauri_plugin::error::{PluginError, PluginResult};
pub struct ApiState {
inner: Arc<RwLock<Option<ApiClient>>>,
}
impl ApiState {
pub fn new() -> Self {
Self {
inner: Arc::new(RwLock::new(None)),
}
}
pub async fn set_api(&self, client: ApiClient) {
let mut inner = self.inner.write().await;
let old_client = mem::replace(&mut *inner, Some(client));
if let Some(client) = old_client {
let _ = client.exit().await;
}
}
pub async fn api(&self) -> PluginResult<ApiClient> {
let inner = self.inner.read().await;
inner
.clone()
.ok_or_else(|| PluginError::from("Not connected"))
}
}
pub struct OnceBuffer {
pub mime: String,
pub buf: Vec<u8>,
}
impl OnceBuffer {
pub fn new(mime: String, buf: Vec<u8>) -> Self {
Self { mime, buf }
}
}
#[derive(Default)]
pub struct BufferState {
pub buffer: Arc<Mutex<HashMap<String, OnceBuffer>>>,
}