summaryrefslogtreecommitdiff
path: root/melib/src/backends/nntp/mailbox.rs
blob: bb42ab65dd11c59e0cdb8a3ab879344b329ae5fe (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * meli - nntp 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::{
    BackendMailbox, LazyCountSet, Mailbox, MailboxHash, MailboxPermissions, SpecialUsageMailbox,
};
use crate::error::*;
use crate::UnixTimestamp;
use std::sync::{Arc, Mutex};

#[derive(Debug, Default, Clone)]
pub struct NntpMailbox {
    pub(super) hash: MailboxHash,
    pub(super) nntp_path: String,

    pub high_watermark: Arc<Mutex<usize>>,
    pub low_watermark: Arc<Mutex<usize>>,

    pub exists: Arc<Mutex<LazyCountSet>>,
    pub unseen: Arc<Mutex<LazyCountSet>>,

    pub latest_article: Arc<Mutex<Option<UnixTimestamp>>>,
}

impl NntpMailbox {
    pub fn nntp_path(&self) -> &str {
        &self.nntp_path
    }
}

impl BackendMailbox for NntpMailbox {
    fn hash(&self) -> MailboxHash {
        self.hash
    }

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

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

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

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

    fn clone(&self) -> Mailbox {
        Box::new(std::clone::Clone::clone(self))
    }

    fn special_usage(&self) -> SpecialUsageMailbox {
        SpecialUsageMailbox::default()
    }

    fn parent(&self) -> Option<MailboxHash> {
        None
    }

    fn permissions(&self) -> MailboxPermissions {
        MailboxPermissions::default()
    }

    fn is_subscribed(&self) -> bool {
        true
    }

    fn set_is_subscribed(&mut self, _new_val: bool) -> Result<()> {
        Err(Error::new("Cannot set subscription in NNTP."))
    }

    fn set_special_usage(&mut self, _new_val: SpecialUsageMailbox) -> Result<()> {
        Err(Error::new("Cannot set special usage in NNTP."))
    }

    fn count(&self) -> Result<(usize, usize)> {
        Ok((self.unseen.lock()?.len(), self.exists.lock()?.len()))
    }
}