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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
//! Synchronization structures based on the filesystem.

use lazy_static::lazy_static;
use notify::RecommendedWatcher;
use rand::Rng;
use std::fs::*;
use std::future::Future;
use std::io::{self, Read, Seek, Write};
use std::path::{Path, PathBuf};
use std::pin::Pin;
use std::sync::{Arc, Mutex};
use std::task::{Context, Poll, Waker};

use crate::watcher::{file_removal_watcher, file_watcher, removal_watcher};

lazy_static! {
    /// A unique token to differentiate between processes which might have the
    /// same PID, but are otherwise different instances.
    pub(crate) static ref UNIQUE_PROCESS_TOKEN: u64 = rand::thread_rng().gen();
}

pub fn render_lock() -> String {
    format!(
        "pid={}\ntoken={}",
        std::process::id(),
        *UNIQUE_PROCESS_TOKEN
    )
}

/// A lock using the atomicity of [`OpenOptions::create_new`].
///
/// Be careful! You can easily delete it; just open your file explorer throw
/// it into the trash. It is not the most guaranteed for of atomicity, but it
/// is one standard way of providing a persistent locking mechanism between
/// processes.
pub struct FileGuard {
    path: PathBuf,
    ignore: bool,
}

impl Drop for FileGuard {
    fn drop(&mut self) {
        if let Err(err) = remove_file(&self.path) {
            if !self.ignore {
                log::error!("unable to drop file lock: {}", err);
                return;
            }
        }

        log::trace!("file guard on `{:?}` dropped", self.path);
    }
}

impl FileGuard {
    /// Ignores errors on the deletion of the guard.
    pub(crate) fn ignore(&mut self) {
        self.ignore = true;
    }

    /// Tries to lock using a certain path in the disk. If the file exists, i.e.
    /// the lock is locked, returns `Ok(None)`.
    pub fn try_lock<P: AsRef<Path>>(path: P) -> io::Result<Option<FileGuard>> {
        match OpenOptions::new().write(true).create_new(true).open(&path) {
            Ok(mut file) => {
                writeln!(file, "{}", render_lock())?;
                Ok(Some(FileGuard {
                    path: path.as_ref().to_path_buf(),
                    ignore: false,
                }))
            }
            Err(err) if err.kind() == io::ErrorKind::AlreadyExists => Ok(None),
            Err(err) => Err(err),
        }
    }

    /// Awaits for the lock in a certain disk path to be unlocked and locks it
    /// when possible.
    pub async fn lock<P: AsRef<Path>>(path: P) -> io::Result<FileGuard> {
        // Set up waker:
        let waker = Arc::new(Mutex::new(None));

        // Set up watcher:
        let _watcher = file_removal_watcher(path.as_ref(), waker.clone());

        Lock { path, waker }.await
    }
}

/// Future for the internals of [`FileGuard::lock`].
struct Lock<P: AsRef<Path>> {
    path: P,
    waker: Arc<Mutex<Option<Waker>>>,
}

impl<P: AsRef<Path>> Future for Lock<P> {
    type Output = io::Result<FileGuard>;
    fn poll(self: Pin<&mut Self>, context: &mut Context<'_>) -> Poll<Self::Output> {
        // Set the waker in the file watcher:
        let mut lock = self.waker.lock().expect("waker mutex poisoned");
        *lock = Some(context.waker().clone());

        match FileGuard::try_lock(self.path.as_ref()) {
            Ok(Some(file_guard)) => Poll::Ready(Ok(file_guard)),
            Ok(None) => Poll::Pending,
            Err(err) => Poll::Ready(Err(err)),
        }
    }
}

fn open_new<P: AsRef<Path>>(path: P) -> io::Result<File> {
    // "Touch" the file and then open it to ensure its existence:
    // Any errors here are OK.
    let maybe_new = OpenOptions::new().create_new(true).append(true).open(&path);

    if maybe_new.is_ok() {
        log::debug!("file `{:?}` didn't exist. Created new", path.as_ref());
    }

    File::open(&path)
}

/// Follows a file asynchronously. The file needs not to even to exist.
pub struct TailFollower {
    file: io::BufReader<File>,
    read_and_unused: usize,
    _watcher: RecommendedWatcher,
    waker: Arc<Mutex<Option<Waker>>>,
}

impl TailFollower {
    /// Creates a new following file.
    fn new(path: &Path, file: File) -> TailFollower {
        // Set up waker:
        let waker = Arc::new(Mutex::new(None));

        // Set up watcher:
        let watcher = file_watcher(path, waker.clone());

        TailFollower {
            file: io::BufReader::new(file),
            read_and_unused: 0,
            _watcher: watcher,
            waker,
        }
    }

    /// Tries to open a file for reading, creating it, if necessary. This is
    /// not atomic: someone might sneak in just in the right moment and delete
    /// the file before we open it for reading. To prevent this, use a lockfile.
    pub fn open(path: &Path) -> io::Result<TailFollower> {
        let file = open_new(&path)?;

        Ok(TailFollower::new(path, file))
    }

    pub fn seek(&mut self, seek: io::SeekFrom) -> io::Result<()> {
        self.file.seek(seek).map(|_| ())
    }

    /// Tries to fill the supplied buffer asynchronously. Be careful, since
    /// an EOF (or an interrupted) is considered as "pending". If not enough
    /// data is written to the file, the future will never resolve.
    ///
    /// The returned future operation is _atomic_. If the future is not polled
    /// to completion, the next invocation will rewind to the last position
    /// and start over again.
    ///
    /// # Panics
    ///
    /// This function will panic if unable to seek while rewinding to recover
    /// from an incomplete operation. This may change in the future.
    #[must_use = "futures do nothing until polled"]
    pub fn read_exact<'a>(&'a mut self, buffer: &'a mut [u8]) -> ReadExact<'a> {
        // Rewind if last invocation was not polled to conclusion:
        if self.read_and_unused != 0 {
            log::trace!("found {} bytes read but unused", self.read_and_unused);
            self.seek(io::SeekFrom::Current(-(self.read_and_unused as i64)))
                .expect("could not seek back read and unused bytes");
            self.read_and_unused = 0;
        }

        ReadExact {
            file: &mut self.file,
            buffer,
            waker: &self.waker,
            read_and_unused: &mut self.read_and_unused,
            was_polled: false,
        }
    }
}

// /// A future to the opening of a file. This future will resolve immediately if
// /// the file exists or await the file creation.
// struct Open<'a, P> {
//     waker: &'a Mutex<Option<Waker>>,
//     path: &'a P,
// }

// impl<'a, P: 'static + AsRef<Path> + Send + Sync> Future for Open<'a, P> {
//     type Output = io::Result<File>;
//     fn poll(self: Pin<&mut Self>, context: &mut Context<'_>) -> Poll<Self::Output> {
//         // Set the waker in the file watcher:
//         let mut lock = self.waker.lock().expect("waker mutex poisoned");
//         *lock = Some(context.waker().clone());

//         match File::open(self.path.as_ref()) {
//             Ok(file) => Poll::Ready(Ok(file)),
//             Err(err) if err.kind() == io::ErrorKind::NotFound => Poll::Pending,
//             Err(err) => Poll::Ready(Err(err)),
//         }
//     }
// }

/// The future returned by `TailFollower::read_exact`.
pub struct ReadExact<'a> {
    file: &'a mut io::BufReader<File>,
    buffer: &'a mut [u8],
    waker: &'a Mutex<Option<Waker>>,
    read_and_unused: &'a mut usize,
    was_polled: bool,
}

impl<'a> ReadExact<'a> {
    fn read_until_you_drain(&mut self) -> Poll<io::Result<()>> {
        log::trace!("reading until drained");
        loop {
            break match self.file.read(&mut self.buffer[*self.read_and_unused..]) {
                Ok(0) => {
                    log::trace!("will have to wait for more");
                    Poll::Pending
                }
                Ok(i) => {
                    log::trace!("read {} bytes", i);
                    *self.read_and_unused += i;
                    if *self.read_and_unused == self.buffer.len() {
                        log::trace!("enough! Done reading");
                        // Now, it is read _and_ used.
                        *self.read_and_unused = 0;
                        Poll::Ready(Ok(()))
                    } else {
                        log::trace!("can read more");
                        continue;
                    }
                }
                Err(err) if err.kind() == io::ErrorKind::Interrupted => {
                    log::trace!("got interrupted by eof");
                    Poll::Pending
                }
                Err(err) => {
                    log::trace!("oops! error");
                    Poll::Ready(Err(err))
                }
            };
        }
    }
}

impl<'a> Future for ReadExact<'a> {
    type Output = io::Result<()>;
    fn poll(mut self: Pin<&mut Self>, context: &mut Context<'_>) -> Poll<Self::Output> {
        self.was_polled = true;
        // See what happens when we read.
        let outcome = self.read_until_you_drain();

        if outcome.is_pending() {
            // Set the waker in the file watcher:
            let mut lock = self.waker.lock().expect("waker mutex poisoned");
            *lock = Some(context.waker().clone());

            // Now, you will have to recheck (TOCTOU!)
            self.read_until_you_drain()
        } else {
            outcome
        }
    }
}

impl<'a> Drop for ReadExact<'a> {
    fn drop(&mut self) {
        if !self.was_polled {
            log::warn!("read_exact future never polled");
        }
    }
}

/// A future that resolves every time that a file is deleted in a directory. This
/// future can be polled over and over again to make a stream of deletions.
pub struct DeletionEvent {
    waker: Arc<Mutex<Option<Waker>>>,
    _watcher: RecommendedWatcher,
}

impl Future for DeletionEvent {
    type Output = ();
    fn poll(self: Pin<&mut Self>, context: &mut Context<'_>) -> Poll<Self::Output> {
        // Set the waker in the file watcher:
        let mut lock = self.waker.lock().expect("waker mutex poisoned");
        *lock = Some(context.waker().clone());

        Poll::Ready(())
    }
}

impl DeletionEvent {
    pub fn new(base: &Path) -> DeletionEvent {
        let waker = Arc::new(Mutex::new(None));
        let watcher = removal_watcher(base, Arc::clone(&waker));

        DeletionEvent {
            waker,
            _watcher: watcher,
        }
    }
}

/// A simpler, sync alternative to [`TailFollower`] used in the implementation
/// of [`crate::QueueIter`].
pub struct SyncFollower {
    file: io::BufReader<File>,
}

impl SyncFollower {
    /// Tries to open a file for reading, creating it, if necessary. This is
    /// not atomic: someone might sneak in just in the right moment and delete
    /// the file before we open it for reading. To prevent this, use a lockfile.
    pub fn open<P>(path: P) -> io::Result<SyncFollower>
    where
        P: 'static + AsRef<Path> + Send + Sync,
    {
        let file = io::BufReader::new(open_new(&path)?);

        Ok(SyncFollower { file })
    }

    pub fn seek(&mut self, seek: io::SeekFrom) -> io::Result<()> {
        self.file.seek(seek).map(|_| ())
    }

    pub fn read_exact(&mut self, buffer: &mut [u8]) -> io::Result<()> {
        self.file.read_exact(buffer)
    }
}