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
|
|
|
|
//
|
|
|
|
|
2018-02-20 12:16:31 +00:00
|
|
|
use std::io::Write;
|
|
|
|
|
2017-05-30 18:25:00 +00:00
|
|
|
use libimagdiary::diary::Diary;
|
|
|
|
use libimagrt::runtime::Runtime;
|
|
|
|
use libimagutil::warn_exit::warn_exit;
|
|
|
|
use libimagerror::trace::MapErrTrace;
|
2018-05-01 15:42:47 +00:00
|
|
|
use libimagerror::iter::TraceIterator;
|
2018-02-20 12:16:31 +00:00
|
|
|
use libimagerror::io::ToExitCode;
|
|
|
|
use libimagerror::exit::ExitUnwrap;
|
2017-05-30 18:25:00 +00:00
|
|
|
use libimagutil::debug_result::*;
|
2018-04-13 11:51:39 +00:00
|
|
|
use libimagdiary::diaryid::DiaryId;
|
|
|
|
use libimagdiary::diaryid::FromStoreId;
|
2018-04-18 16:32:11 +00:00
|
|
|
use libimagstore::storeid::IntoStoreId;
|
2017-05-30 18:25:00 +00:00
|
|
|
|
2018-10-30 17:40:53 +00:00
|
|
|
use failure::Fallible as Result;
|
|
|
|
|
2019-02-28 16:28:32 +00:00
|
|
|
use crate::util::get_diary_name;
|
2017-05-30 18:25:00 +00:00
|
|
|
|
|
|
|
pub fn list(rt: &Runtime) {
|
|
|
|
let diaryname = get_diary_name(rt)
|
|
|
|
.unwrap_or_else(|| warn_exit("No diary selected. Use either the configuration file or the commandline option", 1));
|
|
|
|
|
2018-04-13 11:51:39 +00:00
|
|
|
let mut ids = Diary::entries(rt.store(), &diaryname)
|
2017-05-30 18:25:00 +00:00
|
|
|
.map_dbg_str("Ok")
|
2019-02-05 00:37:32 +00:00
|
|
|
.map_err_trace_exit_unwrap()
|
|
|
|
.trace_unwrap_exit()
|
2018-04-13 11:51:39 +00:00
|
|
|
.map(|id| DiaryId::from_storeid(&id))
|
|
|
|
.collect::<Result<Vec<_>>>()
|
2019-02-05 00:37:32 +00:00
|
|
|
.map_err_trace_exit_unwrap();
|
2018-04-13 11:51:39 +00:00
|
|
|
|
|
|
|
ids.sort_by_key(|id| {
|
|
|
|
[id.year() as u32, id.month(), id.day(), id.hour(), id.minute(), id.second()]
|
|
|
|
});
|
|
|
|
|
2018-11-04 21:28:47 +00:00
|
|
|
ids.into_iter()
|
|
|
|
.map(IntoStoreId::into_storeid)
|
2019-02-05 00:37:32 +00:00
|
|
|
.trace_unwrap_exit()
|
2018-10-06 10:50:20 +00:00
|
|
|
.for_each(|id| {
|
2019-02-03 18:53:50 +00:00
|
|
|
let _ = rt.report_touched(&id).unwrap_or_exit();
|
2018-10-06 10:50:20 +00:00
|
|
|
|
2019-07-21 08:42:27 +00:00
|
|
|
if !rt.output_is_pipe() {
|
|
|
|
writeln!(rt.stdout(), "{}", id).to_exit_code().unwrap_or_exit()
|
|
|
|
}
|
2018-10-06 10:50:20 +00:00
|
|
|
});
|
2017-05-30 18:25:00 +00:00
|
|
|
}
|
|
|
|
|