imag/bin/core/imag-diagnostics/src/main.rs

235 lines
7.8 KiB
Rust
Raw Normal View History

2017-10-12 20:46:47 +00:00
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2018 Matthias Beyer <mail@beyermatthias.de> and contributors
2017-10-12 20:46:47 +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
//
#![deny(
non_camel_case_types,
non_snake_case,
path_statements,
trivial_numeric_casts,
unstable_features,
unused_allocation,
unused_import_braces,
unused_imports,
unused_must_use,
unused_mut,
unused_qualifications,
while_true,
)]
extern crate clap;
2017-10-12 21:46:39 +00:00
extern crate toml;
extern crate toml_query;
#[macro_use] extern crate log;
2017-10-12 20:46:47 +00:00
#[macro_use] extern crate libimagrt;
2017-10-12 20:46:47 +00:00
extern crate libimagerror;
2017-10-13 14:42:37 +00:00
extern crate libimagentrylink;
2017-10-12 20:46:47 +00:00
extern crate libimagstore;
2018-02-14 22:49:52 +00:00
use std::io::Write;
2017-10-12 20:46:47 +00:00
use libimagrt::setup::generate_runtime_setup;
use libimagerror::trace::MapErrTrace;
2018-02-14 22:49:52 +00:00
use libimagerror::io::ToExitCode;
use libimagerror::exit::ExitUnwrap;
2017-10-12 21:46:39 +00:00
use libimagstore::store::FileLockEntry;
use libimagstore::storeid::StoreId;
2017-10-12 21:46:39 +00:00
use libimagstore::error::StoreError as Error;
2017-10-13 14:42:37 +00:00
use libimagentrylink::internal::*;
2017-10-12 21:46:39 +00:00
use toml::Value;
use toml_query::read::TomlValueReadExt;
use std::collections::BTreeMap;
2017-10-12 20:46:47 +00:00
mod ui;
#[derive(Debug)]
2017-10-12 21:46:39 +00:00
struct Diagnostic {
pub id: StoreId,
2017-10-12 21:46:39 +00:00
pub entry_store_version: String,
pub header_sections: usize,
pub bytecount_content: usize,
pub overall_byte_size: usize,
pub verified: bool,
2017-10-13 14:42:37 +00:00
pub num_internal_links: usize,
2017-10-12 21:46:39 +00:00
}
impl Diagnostic {
2017-10-12 21:46:39 +00:00
fn for_entry<'a>(entry: &FileLockEntry<'a>) -> Result<Diagnostic, ::libimagstore::error::StoreError> {
Ok(Diagnostic {
id: entry.get_location().clone(),
2017-10-12 21:46:39 +00:00
entry_store_version: entry
.get_header()
.read("imag.version")
.map(|opt| match opt {
Some(&Value::String(ref s)) => s.clone(),
Some(_) => "Non-String type in 'imag.version'".to_owned(),
None => "No version".to_owned(),
})
.unwrap_or("Error reading version".to_owned()),
header_sections: match entry.get_header() {
&Value::Table(ref map) => map.keys().count(),
_ => 0
},
bytecount_content: entry.get_content().as_str().len(),
overall_byte_size: entry.to_str()?.as_str().len(),
2017-10-12 21:46:39 +00:00
verified: entry.verify().is_ok(),
2017-10-13 14:42:37 +00:00
num_internal_links: entry.get_internal_links().map(Iterator::count).unwrap_or(0),
})
2017-10-12 21:46:39 +00:00
}
}
2018-04-30 12:15:34 +00:00
macro_rules! do_write {
($dest:ident, $pattern:tt) => {
let _ = writeln!($dest, $pattern)
.to_exit_code()
.unwrap_or_exit();
};
($dest:ident, $pattern:tt, $( $args:expr ),*) => {
let _ = writeln!($dest, $pattern, $( $args ),*)
.to_exit_code()
.unwrap_or_exit();
}
}
2017-10-12 20:46:47 +00:00
fn main() {
let version = make_imag_version!();
2017-10-12 20:46:47 +00:00
let rt = generate_runtime_setup("imag-diagnostics",
&version,
2017-10-12 20:46:47 +00:00
"Print diagnostics about imag and the imag store",
ui::build_ui);
let mut entries_counter = 0;
2017-10-12 21:46:39 +00:00
let diags = rt.store()
2017-10-12 20:46:47 +00:00
.entries()
.map_err_trace_exit_unwrap(1)
.into_get_iter()
2017-10-12 21:46:39 +00:00
.map(|e| {
e.map_err_trace_exit_unwrap(1)
.ok_or(Error::from("Unable to get entry".to_owned()))
.map_err_trace_exit_unwrap(1)
})
.map(|e| {
let diag = Diagnostic::for_entry(&e);
debug!("Diagnostic for '{:?}' = {:?}", e.get_location(), diag);
drop(e);
entries_counter += 1;
// because we're effectively reading _all_ store entries here.
//
// The store has an API for it, but the cache size calculation is O(n) and we can do
// better by simply flushing the cache each 100 entries
if entries_counter > 100 {
let _ = rt.store().flush_cache().map_err_trace_exit_unwrap(1);
entries_counter = 0;
}
diag
})
.collect::<Result<Vec<_>, _>>()
.map_err_trace_exit_unwrap(1);
2017-10-12 21:46:39 +00:00
let mut version_counts : BTreeMap<String, usize> = BTreeMap::new();
let mut sum_header_sections = 0;
let mut sum_bytecount_content = 0;
let mut sum_overall_byte_size = 0;
let mut max_overall_byte_size : Option<(usize, StoreId)> = None;
2017-10-12 21:46:39 +00:00
let mut verified_count = 0;
let mut unverified_count = 0;
2017-10-13 14:42:37 +00:00
let mut num_internal_links = 0;
let mut max_internal_links : Option<(usize, StoreId)> = None;
2017-10-12 21:46:39 +00:00
for diag in diags.iter() {
sum_header_sections += diag.header_sections;
sum_bytecount_content += diag.bytecount_content;
sum_overall_byte_size += diag.overall_byte_size;
match max_overall_byte_size {
None => max_overall_byte_size = Some((diag.num_internal_links, diag.id.clone())),
Some((num, _)) => if num < diag.overall_byte_size {
max_overall_byte_size = Some((diag.overall_byte_size, diag.id.clone()));
}
}
2017-10-12 21:46:39 +00:00
let n = version_counts.get(&diag.entry_store_version).map(Clone::clone).unwrap_or(0);
version_counts.insert(diag.entry_store_version.clone(), n+1);
if diag.verified {
verified_count += 1;
} else {
unverified_count += 1;
}
2017-10-13 14:42:37 +00:00
num_internal_links += diag.num_internal_links;
match max_internal_links {
None => max_internal_links = Some((diag.num_internal_links, diag.id.clone())),
Some((num, _)) => if num < diag.num_internal_links {
max_internal_links = Some((diag.num_internal_links, diag.id.clone()));
}
}
2017-10-12 21:46:39 +00:00
}
let n = diags.len();
2017-10-12 20:46:47 +00:00
let mut out = rt.stdout();
2018-02-14 22:49:52 +00:00
2018-04-30 12:15:34 +00:00
do_write!(out, "imag version {}", { env!("CARGO_PKG_VERSION") });
do_write!(out, "");
do_write!(out, "{} entries", n);
2017-10-12 21:46:39 +00:00
for (k, v) in version_counts {
2018-04-30 12:15:34 +00:00
do_write!(out, "{} entries with store version '{}'", v, k);
2017-10-12 21:46:39 +00:00
}
if n != 0 {
2018-04-30 12:15:34 +00:00
do_write!(out, "{} header sections in the average entry", sum_header_sections / n);
do_write!(out, "{} average content bytecount", sum_bytecount_content / n);
do_write!(out, "{} average overall bytecount", sum_overall_byte_size / n);
if let Some((num, path)) = max_overall_byte_size {
2018-04-30 12:15:34 +00:00
do_write!(out, "Largest Entry ({} bytes): {}",
num,
path
.into_pathbuf()
.map_err_trace_exit_unwrap(1)
.to_str()
.unwrap_or("Failed converting path to string")
);
}
2018-04-30 12:15:34 +00:00
do_write!(out, "{} average internal link count per entry", num_internal_links / n);
if let Some((num, path)) = max_internal_links {
2018-04-30 12:15:34 +00:00
do_write!(out, "Entry with most internal links ({}): {}",
num,
path
.into_pathbuf()
.map_err_trace_exit_unwrap(1)
.to_str()
.unwrap_or("Failed converting path to string")
2018-04-30 12:15:34 +00:00
);
}
2018-04-30 12:15:34 +00:00
do_write!(out, "{} verified entries", verified_count);
do_write!(out, "{} unverified entries", unverified_count);
2017-10-12 21:46:39 +00:00
}
2017-10-12 20:46:47 +00:00
}