Skip to content

Commit bbe9f71

Browse files
authored
Particle Data Store: fix cleanup function (#1222)
1 parent 5022da0 commit bbe9f71

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

aquamarine/src/particle_data_store.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use std::path::PathBuf;
1919
use avm_server::DataStore;
2020
use thiserror::Error;
2121

22-
use fs_utils::{create_dir, remove_dir};
22+
use fs_utils::{create_dir, remove_file};
2323
use particle_execution::{ParticleVault, VaultError};
2424
use DataStoreError::{CleanupData, CreateDataStore, StoreData};
2525

@@ -74,7 +74,7 @@ impl DataStore<DataStoreError> for ParticleDataStore {
7474
}
7575

7676
fn cleanup_data(&mut self, key: &str) -> Result<()> {
77-
remove_dir(&self.data_file(key)).map_err(CleanupData)?;
77+
remove_file(&self.data_file(key)).map_err(CleanupData)?;
7878
self.vault.cleanup(key)?;
7979

8080
Ok(())

crates/fs-utils/src/lib.rs

+20-4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ use rand::Rng;
3131
use std::fmt::Debug;
3232
use std::fs;
3333
use std::fs::Permissions;
34+
use std::io::ErrorKind;
3435
use std::path::{Path, PathBuf};
3536

3637
pub fn to_abs_path(path: PathBuf) -> PathBuf {
@@ -106,12 +107,27 @@ where
106107
}
107108

108109
pub fn remove_dir(dir: &Path) -> Result<(), std::io::Error> {
109-
std::fs::remove_dir_all(&dir).map_err(|err| {
110-
std::io::Error::new(
110+
match std::fs::remove_dir_all(dir) {
111+
Ok(_) => Ok(()),
112+
// ignore NotFound
113+
Err(err) if err.kind() == ErrorKind::NotFound => Ok(()),
114+
Err(err) => Err(std::io::Error::new(
111115
err.kind(),
112116
format!("error removing directory {:?}: {:?}", dir, err),
113-
)
114-
})
117+
)),
118+
}
119+
}
120+
121+
pub fn remove_file(file: &Path) -> Result<(), std::io::Error> {
122+
match std::fs::remove_file(file) {
123+
Ok(_) => Ok(()),
124+
// ignore NotFound
125+
Err(err) if err.kind() == ErrorKind::NotFound => Ok(()),
126+
Err(err) => Err(std::io::Error::new(
127+
err.kind(),
128+
format!("error removing file {:?}: {:?}", file, err),
129+
)),
130+
}
115131
}
116132

117133
pub fn file_stem(path: impl AsRef<Path>) -> eyre::Result<String> {

0 commit comments

Comments
 (0)