-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cleanup stale lock files in the .lsp-locks directory #6816
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,6 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use crate::{hash_path, user_forc_directory}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use std::{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fs::{create_dir_all, remove_file, File}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fs::{create_dir_all, read_dir, remove_file, File}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
io::{self, Read, Write}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
path::{Path, PathBuf}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -19,6 +19,9 @@ impl PidFileLocking { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dir: Y, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
extension: &str, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) -> PidFileLocking { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Try to cleanup stale files, ignore any errors as this is best-effort | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let _ = Self::cleanup_stale_files(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let file_name = hash_path(filename); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Self( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user_forc_directory() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -136,11 +139,43 @@ impl PidFileLocking { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fs.flush()?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/// Cleans up all stale lock files in the .lsp-locks directory | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/// Returns a vector of paths that were cleaned up | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pub fn cleanup_stale_files() -> io::Result<Vec<PathBuf>> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let lock_dir = user_forc_directory().join(".lsp-locks"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let entries = read_dir(&lock_dir)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut cleaned_paths = Vec::new(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for entry in entries { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let entry = entry?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let path = entry.path(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if let Some(ext) = path.extension().and_then(|ext| ext.to_str()) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if ext == "lock" { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if let Ok(mut file) = File::open(&path) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut contents = String::new(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if file.read_to_string(&mut contents).is_ok() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if let Ok(pid) = contents.trim().parse::<usize>() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if !Self::is_pid_active(pid) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've stopped using PID files because I've been burned by this before - the call to
Instead, I now use advisory locking (the following is code from
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
remove_file(&path)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cleaned_paths.push(path); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think the |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
remove_file(&path)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cleaned_paths.push(path); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+153
to
+170
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: reduced nesting
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Ok(cleaned_paths) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
#[cfg(test)] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mod test { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use super::PidFileLocking; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use super::{user_forc_directory, PidFileLocking}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use std::{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fs::{metadata, File}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
io::{ErrorKind, Write}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -201,4 +236,32 @@ mod test { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let e = metadata(&x.0).unwrap_err().kind(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(e, ErrorKind::NotFound); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
#[test] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fn test_cleanup_stale_files() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// First create some test files | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let test_lock = PidFileLocking::lsp("test_cleanup"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
test_lock.lock().expect("Failed to create test lock file"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Create a test lock file with invalid PID | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let lock_path = user_forc_directory() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.join(".lsp-locks") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.join("test_cleanup.lock"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
File::create(&lock_path).expect("Failed to create test lock file"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Run cleanup and check returned paths | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let cleaned_paths = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PidFileLocking::cleanup_stale_files().expect("Failed to cleanup stale files"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Verify that only the invalid lock file was cleaned up | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cleaned_paths.len(), 1); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert_eq!(cleaned_paths[0], lock_path); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Verify file system state | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert!(test_lock.0.exists(), "Active lock file should still exist"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assert!(!lock_path.exists(), "Lock file should be removed"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Cleanup after test | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
test_lock.release().expect("Failed to release test lock"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: not a biggie, maybe we should use tempfile to ensure file/dir cleanup (automatically done when var goes out of scope - even if a test fails mid-way) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: