
While this lint is allow-by-default, it seems pretty useful to get rid of mutable borrows when they're not needed. Closes #ISSUE Release Notes: - N/A
247 lines
7.3 KiB
Rust
247 lines
7.3 KiB
Rust
mod format;
|
|
mod registry;
|
|
|
|
use std::{
|
|
path::{Path, PathBuf},
|
|
sync::Arc,
|
|
time::Duration,
|
|
};
|
|
|
|
use anyhow::Result;
|
|
use collections::{BTreeMap, BTreeSet, HashMap};
|
|
use format::VSSnippetsFile;
|
|
use fs::Fs;
|
|
use futures::stream::StreamExt;
|
|
use gpui::{AppContext, AsyncAppContext, Context, Model, ModelContext, Task, WeakModel};
|
|
pub use registry::*;
|
|
use util::ResultExt;
|
|
|
|
pub fn init(cx: &mut AppContext) {
|
|
SnippetRegistry::init_global(cx);
|
|
}
|
|
|
|
// Is `None` if the snippet file is global.
|
|
type SnippetKind = Option<String>;
|
|
fn file_stem_to_key(stem: &str) -> SnippetKind {
|
|
if stem == "snippets" {
|
|
None
|
|
} else {
|
|
Some(stem.to_owned())
|
|
}
|
|
}
|
|
|
|
fn file_to_snippets(file_contents: VSSnippetsFile) -> Vec<Arc<Snippet>> {
|
|
let mut snippets = vec![];
|
|
for (prefix, snippet) in file_contents.snippets {
|
|
let prefixes = snippet
|
|
.prefix
|
|
.map_or_else(move || vec![prefix], |prefixes| prefixes.into());
|
|
let description = snippet
|
|
.description
|
|
.map(|description| description.to_string());
|
|
let body = snippet.body.to_string();
|
|
if snippet::Snippet::parse(&body).log_err().is_none() {
|
|
continue;
|
|
};
|
|
snippets.push(Arc::new(Snippet {
|
|
body,
|
|
prefix: prefixes,
|
|
description,
|
|
}));
|
|
}
|
|
snippets
|
|
}
|
|
// Snippet with all of the metadata
|
|
#[derive(Debug)]
|
|
pub struct Snippet {
|
|
pub prefix: Vec<String>,
|
|
pub body: String,
|
|
pub description: Option<String>,
|
|
}
|
|
|
|
async fn process_updates(
|
|
this: WeakModel<SnippetProvider>,
|
|
entries: Vec<PathBuf>,
|
|
mut cx: AsyncAppContext,
|
|
) -> Result<()> {
|
|
let fs = this.update(&mut cx, |this, _| this.fs.clone())?;
|
|
for entry_path in entries {
|
|
if !entry_path
|
|
.extension()
|
|
.map_or(false, |extension| extension == "json")
|
|
{
|
|
continue;
|
|
}
|
|
let entry_metadata = fs.metadata(&entry_path).await;
|
|
// Entry could have been removed, in which case we should no longer show completions for it.
|
|
let entry_exists = entry_metadata.is_ok();
|
|
if entry_metadata.map_or(false, |entry| entry.map_or(false, |e| e.is_dir)) {
|
|
// Don't process dirs.
|
|
continue;
|
|
}
|
|
let Some(stem) = entry_path.file_stem().and_then(|s| s.to_str()) else {
|
|
continue;
|
|
};
|
|
let key = file_stem_to_key(stem);
|
|
|
|
let contents = if entry_exists {
|
|
fs.load(&entry_path).await.ok()
|
|
} else {
|
|
None
|
|
};
|
|
|
|
this.update(&mut cx, move |this, _| {
|
|
let snippets_of_kind = this.snippets.entry(key).or_default();
|
|
if entry_exists {
|
|
let Some(file_contents) = contents else {
|
|
return;
|
|
};
|
|
let Ok(as_json) = serde_json::from_str::<VSSnippetsFile>(&file_contents) else {
|
|
return;
|
|
};
|
|
let snippets = file_to_snippets(as_json);
|
|
*snippets_of_kind.entry(entry_path).or_default() = snippets;
|
|
} else {
|
|
snippets_of_kind.remove(&entry_path);
|
|
}
|
|
})?;
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
async fn initial_scan(
|
|
this: WeakModel<SnippetProvider>,
|
|
path: Arc<Path>,
|
|
mut cx: AsyncAppContext,
|
|
) -> Result<()> {
|
|
let fs = this.update(&mut cx, |this, _| this.fs.clone())?;
|
|
let entries = fs.read_dir(&path).await;
|
|
if let Ok(entries) = entries {
|
|
let entries = entries
|
|
.collect::<Vec<_>>()
|
|
.await
|
|
.into_iter()
|
|
.collect::<Result<Vec<_>>>()?;
|
|
process_updates(this, entries, cx).await?;
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub struct SnippetProvider {
|
|
fs: Arc<dyn Fs>,
|
|
snippets: HashMap<SnippetKind, BTreeMap<PathBuf, Vec<Arc<Snippet>>>>,
|
|
watch_tasks: Vec<Task<Result<()>>>,
|
|
}
|
|
|
|
// Watches global snippet directory, is created just once and reused across multiple projects
|
|
struct GlobalSnippetWatcher(Model<SnippetProvider>);
|
|
|
|
impl GlobalSnippetWatcher {
|
|
fn new(fs: Arc<dyn Fs>, cx: &mut AppContext) -> Self {
|
|
let global_snippets_dir = paths::config_dir().join("snippets");
|
|
let provider = cx.new_model(|_cx| SnippetProvider {
|
|
fs,
|
|
snippets: Default::default(),
|
|
watch_tasks: vec![],
|
|
});
|
|
provider.update(cx, |this, cx| {
|
|
this.watch_directory(&global_snippets_dir, cx)
|
|
});
|
|
Self(provider)
|
|
}
|
|
}
|
|
|
|
impl gpui::Global for GlobalSnippetWatcher {}
|
|
|
|
impl SnippetProvider {
|
|
pub fn new(
|
|
fs: Arc<dyn Fs>,
|
|
dirs_to_watch: BTreeSet<PathBuf>,
|
|
cx: &mut AppContext,
|
|
) -> Model<Self> {
|
|
cx.new_model(move |cx| {
|
|
if !cx.has_global::<GlobalSnippetWatcher>() {
|
|
let global_watcher = GlobalSnippetWatcher::new(fs.clone(), cx);
|
|
cx.set_global(global_watcher);
|
|
}
|
|
let mut this = Self {
|
|
fs,
|
|
watch_tasks: Vec::new(),
|
|
snippets: Default::default(),
|
|
};
|
|
|
|
for dir in dirs_to_watch {
|
|
this.watch_directory(&dir, cx);
|
|
}
|
|
|
|
this
|
|
})
|
|
}
|
|
|
|
/// Add directory to be watched for content changes
|
|
fn watch_directory(&mut self, path: &Path, cx: &ModelContext<Self>) {
|
|
let path: Arc<Path> = Arc::from(path);
|
|
|
|
self.watch_tasks.push(cx.spawn(|this, mut cx| async move {
|
|
let fs = this.update(&mut cx, |this, _| this.fs.clone())?;
|
|
let watched_path = path.clone();
|
|
let watcher = fs.watch(&watched_path, Duration::from_secs(1));
|
|
initial_scan(this.clone(), path, cx.clone()).await?;
|
|
|
|
let (mut entries, _) = watcher.await;
|
|
while let Some(entries) = entries.next().await {
|
|
process_updates(
|
|
this.clone(),
|
|
entries.into_iter().map(|event| event.path).collect(),
|
|
cx.clone(),
|
|
)
|
|
.await?;
|
|
}
|
|
Ok(())
|
|
}));
|
|
}
|
|
|
|
fn lookup_snippets<'a, const LOOKUP_GLOBALS: bool>(
|
|
&'a self,
|
|
language: &'a SnippetKind,
|
|
cx: &AppContext,
|
|
) -> Vec<Arc<Snippet>> {
|
|
let mut user_snippets: Vec<_> = self
|
|
.snippets
|
|
.get(language)
|
|
.cloned()
|
|
.unwrap_or_default()
|
|
.into_iter()
|
|
.flat_map(|(_, snippets)| snippets.into_iter())
|
|
.collect();
|
|
if LOOKUP_GLOBALS {
|
|
if let Some(global_watcher) = cx.try_global::<GlobalSnippetWatcher>() {
|
|
user_snippets.extend(
|
|
global_watcher
|
|
.0
|
|
.read(cx)
|
|
.lookup_snippets::<false>(language, cx),
|
|
);
|
|
}
|
|
}
|
|
|
|
let Some(registry) = SnippetRegistry::try_global(cx) else {
|
|
return user_snippets;
|
|
};
|
|
|
|
let registry_snippets = registry.get_snippets(language);
|
|
user_snippets.extend(registry_snippets);
|
|
|
|
user_snippets
|
|
}
|
|
|
|
pub fn snippets_for(&self, language: SnippetKind, cx: &AppContext) -> Vec<Arc<Snippet>> {
|
|
let mut requested_snippets = self.lookup_snippets::<true>(&language, cx);
|
|
|
|
if language.is_some() {
|
|
// Look up global snippets as well.
|
|
requested_snippets.extend(self.lookup_snippets::<true>(&None, cx));
|
|
}
|
|
requested_snippets
|
|
}
|
|
}
|