2017-05-30 18:25:00 +00:00
|
|
|
//
|
|
|
|
// imag - the personal information management suite for the commandline
|
2019-01-03 01:32:07 +00:00
|
|
|
// Copyright (C) 2015-2019 Matthias Beyer <mail@beyermatthias.de> and contributors
|
2017-05-30 18:25:00 +00:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; version
|
|
|
|
// 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library 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
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
//
|
|
|
|
|
|
|
|
//! A diary viewer built on libimagentryview.
|
|
|
|
|
2018-04-19 20:45:44 +00:00
|
|
|
use std::io::Write;
|
|
|
|
use std::ops::Deref;
|
2017-05-30 18:25:00 +00:00
|
|
|
|
2018-10-30 17:40:51 +00:00
|
|
|
use failure::Fallible as Result;
|
|
|
|
use failure::ResultExt;
|
|
|
|
use failure::err_msg;
|
|
|
|
use failure::Error;
|
|
|
|
|
2018-04-19 20:45:44 +00:00
|
|
|
use libimagstore::store::Entry;
|
2017-05-30 18:25:00 +00:00
|
|
|
use libimagentryview::viewer::Viewer;
|
|
|
|
use libimagentryview::builtin::plain::PlainViewer;
|
2019-02-28 16:28:32 +00:00
|
|
|
use crate::entry::DiaryEntry;
|
2017-05-30 18:25:00 +00:00
|
|
|
|
|
|
|
/// This viewer does _not_ implement libimagentryview::viewer::Viewer because we need to be able to
|
|
|
|
/// call some diary-type specific functions on the entries passed to this.
|
|
|
|
///
|
|
|
|
/// This type is mainly just written to be constructed-called-deleted in one go:
|
|
|
|
///
|
|
|
|
/// ```ignore
|
|
|
|
/// DiaryViewer::new(show_header).view_entries(entries);
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
pub struct DiaryViewer(PlainViewer);
|
|
|
|
|
|
|
|
impl DiaryViewer {
|
|
|
|
|
|
|
|
pub fn new(show_header: bool) -> DiaryViewer {
|
|
|
|
DiaryViewer(PlainViewer::new(show_header))
|
|
|
|
}
|
|
|
|
|
2018-04-19 20:45:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Viewer for DiaryViewer {
|
|
|
|
|
2018-10-30 17:40:51 +00:00
|
|
|
fn view_entry<W>(&self, e: &Entry, sink: &mut W) -> Result<()>
|
2018-04-19 20:45:44 +00:00
|
|
|
where W: Write
|
|
|
|
{
|
|
|
|
self.0.view_entry(e, sink)
|
|
|
|
}
|
|
|
|
|
2017-05-30 18:25:00 +00:00
|
|
|
/// View all entries from the iterator, or stop immediately if an error occurs, returning that
|
|
|
|
/// error.
|
2018-10-30 17:40:51 +00:00
|
|
|
fn view_entries<I, E, W>(&self, entries: I, sink: &mut W) -> Result<()>
|
2018-04-19 20:45:44 +00:00
|
|
|
where I: Iterator<Item = E>,
|
|
|
|
E: Deref<Target = Entry>,
|
|
|
|
W: Write
|
|
|
|
{
|
2018-04-13 11:41:02 +00:00
|
|
|
let mut entries = entries
|
2018-10-30 17:40:51 +00:00
|
|
|
.map(|e| {
|
|
|
|
e.deref()
|
|
|
|
.diary_id()
|
|
|
|
.map(|id| (id, e))
|
|
|
|
.context(err_msg("View error"))
|
|
|
|
.map_err(Error::from)
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<_>>>()?;
|
2018-04-13 11:41:02 +00:00
|
|
|
|
|
|
|
entries.sort_by_key(|&(ref id, _)| {
|
|
|
|
[id.year() as u32, id.month(), id.day(), id.hour(), id.minute(), id.second()]
|
|
|
|
});
|
|
|
|
|
|
|
|
for (id, entry) in entries.into_iter() {
|
2018-04-19 20:45:44 +00:00
|
|
|
writeln!(sink, "{} :\n", id)?;
|
|
|
|
let _ = self.0.view_entry(entry.deref(), sink)?;
|
|
|
|
writeln!(sink, "\n---\n")?;
|
2017-05-30 18:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|