2022-04-01 17:45:08 +00:00
|
|
|
use crate::Theme;
|
2021-09-15 18:56:20 +00:00
|
|
|
use anyhow::{Context, Result};
|
2021-08-26 22:06:00 +00:00
|
|
|
use gpui::{fonts, AssetSource, FontCache};
|
2021-08-24 23:33:56 +00:00
|
|
|
use parking_lot::Mutex;
|
2022-04-01 17:45:08 +00:00
|
|
|
use serde_json::Value;
|
2021-09-15 18:56:20 +00:00
|
|
|
use std::{collections::HashMap, sync::Arc};
|
2021-08-24 23:33:56 +00:00
|
|
|
|
|
|
|
pub struct ThemeRegistry {
|
|
|
|
assets: Box<dyn AssetSource>,
|
|
|
|
themes: Mutex<HashMap<String, Arc<Theme>>>,
|
|
|
|
theme_data: Mutex<HashMap<String, Arc<Value>>>,
|
2021-08-26 22:06:00 +00:00
|
|
|
font_cache: Arc<FontCache>,
|
2021-08-24 23:33:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ThemeRegistry {
|
2021-08-26 22:06:00 +00:00
|
|
|
pub fn new(source: impl AssetSource, font_cache: Arc<FontCache>) -> Arc<Self> {
|
2021-08-24 23:33:56 +00:00
|
|
|
Arc::new(Self {
|
|
|
|
assets: Box::new(source),
|
|
|
|
themes: Default::default(),
|
|
|
|
theme_data: Default::default(),
|
2021-08-26 22:06:00 +00:00
|
|
|
font_cache,
|
2021-08-24 23:33:56 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn list(&self) -> impl Iterator<Item = String> {
|
|
|
|
self.assets.list("themes/").into_iter().filter_map(|path| {
|
|
|
|
let filename = path.strip_prefix("themes/")?;
|
2022-04-01 17:45:08 +00:00
|
|
|
let theme_name = filename.strip_suffix(".json")?;
|
|
|
|
Some(theme_name.to_string())
|
2021-08-24 23:33:56 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn clear(&self) {
|
|
|
|
self.theme_data.lock().clear();
|
|
|
|
self.themes.lock().clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get(&self, name: &str) -> Result<Arc<Theme>> {
|
|
|
|
if let Some(theme) = self.themes.lock().get(name) {
|
|
|
|
return Ok(theme.clone());
|
|
|
|
}
|
|
|
|
|
2022-04-01 17:45:08 +00:00
|
|
|
let asset_path = format!("themes/{}.json", name);
|
|
|
|
let theme_json = self
|
|
|
|
.assets
|
|
|
|
.load(&asset_path)
|
|
|
|
.with_context(|| format!("failed to load theme file {}", asset_path))?;
|
|
|
|
|
2021-08-26 22:02:58 +00:00
|
|
|
let mut theme: Theme = fonts::with_font_cache(self.font_cache.clone(), || {
|
2022-04-01 17:45:08 +00:00
|
|
|
serde_path_to_error::deserialize(&mut serde_json::Deserializer::from_slice(&theme_json))
|
2021-08-26 22:06:00 +00:00
|
|
|
})?;
|
|
|
|
|
2021-08-24 23:33:56 +00:00
|
|
|
theme.name = name.into();
|
|
|
|
let theme = Arc::new(theme);
|
|
|
|
self.themes.lock().insert(name.to_string(), theme.clone());
|
|
|
|
Ok(theme)
|
|
|
|
}
|
|
|
|
}
|