/* * 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 . */ use std::sync::{Arc, Mutex, RwLock}; use super::protocol_parser::SelectResponse; use crate::{ backends::{ BackendMailbox, LazyCountSet, Mailbox, MailboxHash, MailboxPermissions, SpecialUsageMailbox, }, error::*, }; #[derive(Debug, Default, Clone)] pub struct ImapMailbox { pub hash: MailboxHash, pub imap_path: String, pub path: String, pub name: String, pub parent: Option, pub children: Vec, pub separator: u8, pub usage: Arc>, pub select: Arc>>, pub no_select: bool, pub is_subscribed: bool, pub permissions: Arc>, pub exists: Arc>, pub unseen: Arc>, pub warm: Arc>, } impl ImapMailbox { pub fn imap_path(&self) -> &str { &self.imap_path } /// Establish that mailbox contents have been fetched at least once during /// this execution #[inline(always)] pub fn set_warm(&self, new_value: bool) { *self.warm.lock().unwrap() = new_value; } /// Mailbox contents have been fetched at least once during this execution #[inline(always)] pub fn is_warm(&self) -> bool { *self.warm.lock().unwrap() } /// Mailbox contents have not been fetched at all during this execution #[inline(always)] pub fn is_cold(&self) -> bool { !self.is_warm() } } impl BackendMailbox for ImapMailbox { fn hash(&self) -> MailboxHash { self.hash } fn name(&self) -> &str { &self.name } fn path(&self) -> &str { &self.path } fn children(&self) -> &[MailboxHash] { &self.children } fn clone(&self) -> Mailbox { Box::new(std::clone::Clone::clone(self)) } fn special_usage(&self) -> SpecialUsageMailbox { *self.usage.read().unwrap() } fn parent(&self) -> Option { self.parent } fn permissions(&self) -> MailboxPermissions { *self.permissions.lock().unwrap() } fn is_subscribed(&self) -> bool { self.is_subscribed } fn set_is_subscribed(&mut self, new_val: bool) -> Result<()> { self.is_subscribed = new_val; Ok(()) } fn set_special_usage(&mut self, new_val: SpecialUsageMailbox) -> Result<()> { *self.usage.write()? = new_val; Ok(()) } fn count(&self) -> Result<(usize, usize)> { Ok((self.unseen.lock()?.len(), self.exists.lock()?.len())) } }