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
use super::*;
use std::ops::Deref;
use std::sync::Arc;

impl<R: ReadableJournal> ReadableJournal for Arc<R> {
    fn read(&self) -> anyhow::Result<Option<LogReadResult<'_>>> {
        self.deref().read()
    }

    fn as_restarted(&self) -> anyhow::Result<Box<DynReadableJournal>> {
        self.deref().as_restarted()
    }
}

impl<W: WritableJournal> WritableJournal for Arc<W> {
    fn write<'a>(&'a self, entry: JournalEntry<'a>) -> anyhow::Result<LogWriteResult> {
        self.deref().write(entry)
    }

    fn flush(&self) -> anyhow::Result<()> {
        self.deref().flush()
    }

    fn commit(&self) -> anyhow::Result<usize> {
        self.deref().commit()
    }

    fn rollback(&self) -> anyhow::Result<usize> {
        self.deref().rollback()
    }
}

impl ReadableJournal for Arc<DynJournal> {
    fn read(&self) -> anyhow::Result<Option<LogReadResult<'_>>> {
        self.deref().read()
    }

    fn as_restarted(&self) -> anyhow::Result<Box<DynReadableJournal>> {
        self.deref().as_restarted()
    }
}

impl WritableJournal for Arc<DynJournal> {
    fn write<'a>(&'a self, entry: JournalEntry<'a>) -> anyhow::Result<LogWriteResult> {
        self.deref().write(entry)
    }

    fn flush(&self) -> anyhow::Result<()> {
        self.deref().flush()
    }

    fn commit(&self) -> anyhow::Result<usize> {
        self.deref().commit()
    }

    fn rollback(&self) -> anyhow::Result<usize> {
        self.deref().rollback()
    }
}

impl Journal for Arc<DynJournal> {
    fn split(self) -> (Box<DynWritableJournal>, Box<DynReadableJournal>) {
        (Box::new(self.clone()), Box::new(self.clone()))
    }
}