summaryrefslogtreecommitdiffstats
path: root/bin/core/imag-store/src/verify.rs
blob: 698c0c07db7f83b39c27daddce815e621d8b8ec7 (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
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2020 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// 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
//

use std::ops::Deref;

use failure::Fallible as Result;
use failure::err_msg;
use resiter::AndThen;
use resiter::IterInnerOkOrElse;

use libimagrt::runtime::Runtime;

/// Verify the store.
///
/// This function is not intended to be called by normal programs but only by `imag-store`.
pub fn verify(rt: &Runtime) -> Result<()> {
    info!("Header | Content length | Path");
    info!("-------+----------------+-----");
    let result = rt
        .store()
        .entries()?
        .into_get_iter()
        .map_inner_ok_or_else(|| err_msg("Did not find one entry"))
        .and_then_ok(|fle| {
            let p           = fle.get_location();
            let content_len = fle.get_content().len();
            let (verify, status) = if fle.verify().is_ok() {
                ("ok", true)
            } else {
                ("broken", false)
            };

            info!("{: >6} | {: >14} | {:?}", verify, content_len, p.deref());
            rt.report_touched(fle.get_location())?;
            Ok(status)
        })
        .collect::<Result<Vec<_>>>()?
        .iter()
        .all(|x| *x);

    if result {
        info!("Store seems to be fine");
        Ok(())
    } else {
        Err(err_msg("Store seems to be broken somehow"))
    }
}