summaryrefslogtreecommitdiffstats
path: root/melib/src/backends/imap/folder.rs
blob: 3ca20047a0e5731973b9b8848db40b91e5bf926e (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
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
 * meli - imap module.
 *
 * Copyright 2019 Manos Pitsidianakis
 *
 * This file is part of meli.
 *
 * meli is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * meli is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with meli. If not, see <http://www.gnu.org/licenses/>.
 */
use crate::backends::{BackendFolder, Folder, FolderHash, FolderPermissions, SpecialUsageMailbox};
use std::sync::{Arc, Mutex};

#[derive(Debug, Default, Clone)]
pub struct ImapFolder {
    pub(super) hash: FolderHash,
    pub(super) path: String,
    pub(super) name: String,
    pub(super) parent: Option<FolderHash>,
    pub(super) children: Vec<FolderHash>,
    pub usage: SpecialUsageMailbox,
    pub no_select: bool,

    pub permissions: Arc<Mutex<FolderPermissions>>,
    pub exists: Arc<Mutex<usize>>,
}

impl BackendFolder for ImapFolder {
    fn hash(&self) -> FolderHash {
        self.hash
    }

    fn name(&self) -> &str {
        &self.name
    }

    fn path(&self) -> &str {
        &self.path
    }

    fn change_name(&mut self, s: &str) {
        self.name = s.to_string();
    }

    fn children(&self) -> &[FolderHash] {
        &self.children
    }

    fn clone(&self) -> Folder {
        Box::new(ImapFolder {
            hash: self.hash,
            path: self.path.clone(),
            name: self.name.clone(),
            parent: self.parent,
            children: self.children.clone(),
            usage: self.usage,
            no_select: self.no_select,
            permissions: self.permissions.clone(),
            exists: self.exists.clone(),
        })
    }

    fn special_usage(&self) -> SpecialUsageMailbox {
        self.usage
    }

    fn parent(&self) -> Option<FolderHash> {
        self.parent
    }

    fn permissions(&self) -> FolderPermissions {
        *self.permissions.lock().unwrap()
    }
}