summaryrefslogtreecommitdiffstats
path: root/libimagdiary/src/entry.rs
blob: c042fd9171052d55b83b972235ee2bab11c98d4c (plain)
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
use std::ops::Deref;
use std::ops::DerefMut;

use libimagstore::store::FileLockEntry;
use libimagentryedit::edit::Edit;
use libimagentryedit::result::Result as EditResult;
use libimagrt::runtime::Runtime;

use diaryid::DiaryId;
use diaryid::FromStoreId;

#[derive(Debug)]
pub struct Entry<'a>(FileLockEntry<'a>);

impl<'a> Deref for Entry<'a> {
    type Target = FileLockEntry<'a>;

    fn deref(&self) -> &FileLockEntry<'a> {
        &self.0
    }

}

impl<'a> DerefMut for Entry<'a> {

    fn deref_mut(&mut self) -> &mut FileLockEntry<'a> {
        &mut self.0
    }

}

impl<'a> Entry<'a> {

    pub fn new(fle: FileLockEntry<'a>) -> Entry<'a> {
        Entry(fle)
    }

    /// Get the diary id for this entry.
    ///
    /// TODO: calls Option::unwrap() as it assumes that an existing Entry has an ID that is parsable
    pub fn diary_id(&self) -> DiaryId {
        DiaryId::from_storeid(&self.0.get_location().clone()).unwrap()
    }

}

impl<'a> Into<FileLockEntry<'a>> for Entry<'a> {

    fn into(self) -> FileLockEntry<'a> {
        self.0
    }

}

impl<'a> From<FileLockEntry<'a>> for Entry<'a> {

    fn from(fle: FileLockEntry<'a>) -> Entry<'a> {
        Entry::new(fle)
    }

}

impl<'a> Edit for Entry<'a> {

    fn edit_content(&mut self, rt: &Runtime) -> EditResult<()> {
        self.0.edit_content(rt)
    }

}