not-decky-store/src/storage/interface.rs

33 lines
1.1 KiB
Rust
Raw Normal View History

2022-12-17 05:03:41 +00:00
pub trait IStorage: Send + Sync {
fn plugins(&self, query: &str) -> decky_api::StorePluginList;
fn get_artifact(&self, _name: &str, _version: &str, _hash: &str) -> Result<bytes::Bytes, std::io::Error> {
Err(std::io::Error::new(std::io::ErrorKind::InvalidInput, "Artifact downloading not supported"))
}
fn get_image(&self, _name: &str) -> Result<bytes::Bytes, std::io::Error> {
Err(std::io::Error::new(std::io::ErrorKind::InvalidInput, "Image downloading not supported"))
}
fn get_statistics(&self) -> std::collections::HashMap<String, u64> {
std::collections::HashMap::with_capacity(0)
}
}
pub struct EmptyStorage;
impl IStorage for EmptyStorage {
fn plugins(&self, _query: &str) -> decky_api::StorePluginList {
Vec::new()
}
}
2023-12-31 02:44:10 +00:00
pub trait IQueryHandler: Send + Sync {
fn filter(&self, query: &str, plugins: decky_api::StorePluginList) -> decky_api::StorePluginList;
/// Filter out recognized query parameters from query string, returning only those that the query handler can use in IQueryHandler::filter
fn supported_params(&self, query: &str) -> String {
query.to_owned()
}
}