ed_journals/modules/shared/asynchronous/
live_json_file_watcher.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
use std::io;
use std::marker::PhantomData;
use std::path::{Path, PathBuf};

use notify::{RecommendedWatcher, RecursiveMode, Watcher};
use serde::Deserialize;
use thiserror::Error;
use tokio::fs;

use crate::modules::shared::asynchronous::async_blocker::AsyncBlocker;

#[derive(Debug)]
pub struct LiveJsonFileWatcher<T>
where
    T: for<'de> Deserialize<'de>,
{
    blocker: AsyncBlocker,
    path: PathBuf,
    _watcher: RecommendedWatcher,
    first: bool,
    phantom_data: PhantomData<T>,
}

#[derive(Debug, Error)]
pub enum LiveJsonFileWatcherError {
    #[error(transparent)]
    NotifyError(#[from] notify::Error),

    #[error(transparent)]
    IO(#[from] io::Error),

    #[error(transparent)]
    SerdeJson(#[from] serde_json::Error),
}

impl<T> LiveJsonFileWatcher<T>
where
    T: for<'de> Deserialize<'de>,
{
    pub fn open<P: AsRef<Path>>(path: P) -> Result<Self, LiveJsonFileWatcherError> {
        let blocker = AsyncBlocker::new();
        let local_blocker = blocker.clone();

        let mut watcher = notify::recommended_watcher(move |_| {
            local_blocker.unblock_blocking();
        })?;

        watcher.watch(path.as_ref(), RecursiveMode::NonRecursive)?;

        Ok(LiveJsonFileWatcher {
            blocker,
            path: path.as_ref().to_path_buf(),
            _watcher: watcher,
            first: true,
            phantom_data: PhantomData,
        })
    }

    pub async fn next(&mut self) -> Option<Result<T, LiveJsonFileWatcherError>> {
        if !self.first {
            self.blocker.block().await;
        }

        self.first = false;

        let string_content = match fs::read_to_string(&self.path).await {
            Ok(value) => value,
            Err(error) => return Some(Err(error.into())),
        };

        let value = match serde_json::from_str(&string_content) {
            Ok(value) => value,
            Err(error) => return Some(Err(error.into())),
        };

        Some(Ok(value))
    }
}