ed_journals/modules/shared/blocking/
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
79
80
81
82
83
84
85
86
use std::marker::PhantomData;
use std::path::{Path, PathBuf};
use std::{fs, io};

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

use crate::modules::shared::blocking::sync_blocker::SyncBlocker;

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

    // This is needed so that there's a constraint for the `Iterator` trait.
    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 = SyncBlocker::new();
        let local_blocker = blocker.clone();

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

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

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

impl<T> Iterator for LiveJsonFileWatcher<T>
where
    T: for<'de> Deserialize<'de>,
{
    type Item = Result<T, LiveJsonFileWatcherError>;

    fn next(&mut self) -> Option<Self::Item> {
        if !self.first {
            self.blocker.block();
        }

        self.first = false;

        let string_content = match fs::read_to_string(&self.path) {
            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))
    }
}