From 901b8704f00bcfc885977098f5741f436f591c76 Mon Sep 17 00:00:00 2001 From: Jiajie Chen Date: Fri, 10 May 2024 09:06:56 +0800 Subject: [PATCH] repo: ensure ciel lock file exists --- src/repo/monitor.rs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/repo/monitor.rs b/src/repo/monitor.rs index 1a9bfdf..d439e46 100644 --- a/src/repo/monitor.rs +++ b/src/repo/monitor.rs @@ -10,6 +10,8 @@ use std::{ thread::sleep, time::Duration, }; +use crate::info; +use console::style; use super::refresh_repo; @@ -67,11 +69,18 @@ fn refresh_once(pool_path: &Path) -> Result<()> { } pub fn start_monitor(pool_path: &Path, stop_token: Receiver<()>) -> Result<()> { + // ensure lock exists + let lock_path = pool_path.join(LOCK_FILE); + if !Path::exists(&lock_path) { + File::create(&lock_path)?; + info!("Creating lock file at {}...", LOCK_FILE); + } + let mut inotify = Inotify::init()?; let mut buffer = [0u8; 1024]; let mut ignore_next = false; inotify.watches().add( - pool_path.join(LOCK_FILE), + &lock_path, WatchMask::DELETE_SELF | WatchMask::CLOSE_WRITE | WatchMask::CREATE, )?;