Merge pull request #561 from matthiasbeyer/libimagstore/verify
Libimagstore/verify
This commit is contained in:
commit
ce766427da
6 changed files with 77 additions and 0 deletions
|
@ -12,6 +12,8 @@ toml = "0.1.25"
|
||||||
|
|
||||||
[dependencies.libimagstore]
|
[dependencies.libimagstore]
|
||||||
path = "../libimagstore"
|
path = "../libimagstore"
|
||||||
|
default-features = false
|
||||||
|
features = ["verify"]
|
||||||
|
|
||||||
[dependencies.libimagrt]
|
[dependencies.libimagrt]
|
||||||
path = "../libimagrt"
|
path = "../libimagrt"
|
||||||
|
|
|
@ -33,6 +33,7 @@ mod get;
|
||||||
mod retrieve;
|
mod retrieve;
|
||||||
mod ui;
|
mod ui;
|
||||||
mod update;
|
mod update;
|
||||||
|
mod verify;
|
||||||
mod util;
|
mod util;
|
||||||
|
|
||||||
use create::create;
|
use create::create;
|
||||||
|
@ -41,6 +42,7 @@ use get::get;
|
||||||
use retrieve::retrieve;
|
use retrieve::retrieve;
|
||||||
use ui::build_ui;
|
use ui::build_ui;
|
||||||
use update::update;
|
use update::update;
|
||||||
|
use verify::verify;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let rt = generate_runtime_setup("imag-store",
|
let rt = generate_runtime_setup("imag-store",
|
||||||
|
@ -63,6 +65,7 @@ fn main() {
|
||||||
"get" => get(&rt),
|
"get" => get(&rt),
|
||||||
"retrieve" => retrieve(&rt),
|
"retrieve" => retrieve(&rt),
|
||||||
"update" => update(&rt),
|
"update" => update(&rt),
|
||||||
|
"verify" => verify(&rt),
|
||||||
_ => {
|
_ => {
|
||||||
debug!("Unknown command");
|
debug!("Unknown command");
|
||||||
// More error handling
|
// More error handling
|
||||||
|
|
|
@ -181,4 +181,9 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
|
||||||
.help("Remove Store Entry with this path. Root (/) is the store itself")
|
.help("Remove Store Entry with this path. Root (/) is the store itself")
|
||||||
.value_name("PATH"))
|
.value_name("PATH"))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
.subcommand(SubCommand::with_name("verify")
|
||||||
|
.about("Verify the store")
|
||||||
|
.version("0.1")
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
13
imag-store/src/verify.rs
Normal file
13
imag-store/src/verify.rs
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
use std::process::exit;
|
||||||
|
|
||||||
|
use libimagrt::runtime::Runtime;
|
||||||
|
|
||||||
|
pub fn verify(rt: &Runtime) {
|
||||||
|
if rt.store().verify() {
|
||||||
|
info!("Store seems to be fine");
|
||||||
|
} else {
|
||||||
|
warn!("Store seems to be broken somehow");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -25,3 +25,7 @@ path = "../libimagutil"
|
||||||
tempdir = "0.3.4"
|
tempdir = "0.3.4"
|
||||||
env_logger = "0.3"
|
env_logger = "0.3"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = []
|
||||||
|
verify = []
|
||||||
|
|
||||||
|
|
|
@ -321,6 +321,56 @@ impl Store {
|
||||||
self.configuration.as_ref()
|
self.configuration.as_ref()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Verify the store.
|
||||||
|
///
|
||||||
|
/// This function is not intended to be called by normal programs but only by `imag-store`.
|
||||||
|
#[cfg(feature = "verify")]
|
||||||
|
pub fn verify(&self) -> bool {
|
||||||
|
info!("Header | Content length | Path");
|
||||||
|
info!("-------+----------------+-----");
|
||||||
|
|
||||||
|
WalkDir::new(self.location.clone())
|
||||||
|
.into_iter()
|
||||||
|
.map(|res| {
|
||||||
|
match res {
|
||||||
|
Ok(dent) => {
|
||||||
|
if dent.file_type().is_file() {
|
||||||
|
match self.get(PathBuf::from(dent.path())) {
|
||||||
|
Ok(Some(fle)) => {
|
||||||
|
let p = fle.get_location();
|
||||||
|
let content_len = fle.get_content().len();
|
||||||
|
let header = if fle.get_header().verify().is_ok() {
|
||||||
|
"ok"
|
||||||
|
} else {
|
||||||
|
"broken"
|
||||||
|
};
|
||||||
|
|
||||||
|
info!("{: >6} | {: >14} | {:?}", header, content_len, p.deref());
|
||||||
|
},
|
||||||
|
|
||||||
|
Ok(None) => {
|
||||||
|
info!("{: >6} | {: >14} | {:?}", "?", "couldn't load", dent.path());
|
||||||
|
},
|
||||||
|
|
||||||
|
Err(e) => {
|
||||||
|
debug!("{:?}", e);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
info!("{: >6} | {: >14} | {:?}", "?", "<no file>", dent.path());
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
Err(e) => {
|
||||||
|
debug!("{:?}", e);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
true
|
||||||
|
})
|
||||||
|
.all(|b| b)
|
||||||
|
}
|
||||||
|
|
||||||
/// Creates the Entry at the given location (inside the entry)
|
/// Creates the Entry at the given location (inside the entry)
|
||||||
pub fn create<'a, S: IntoStoreId>(&'a self, id: S) -> Result<FileLockEntry<'a>> {
|
pub fn create<'a, S: IntoStoreId>(&'a self, id: S) -> Result<FileLockEntry<'a>> {
|
||||||
let id = id.into_storeid().storified(self);
|
let id = id.into_storeid().storified(self);
|
||||||
|
|
Loading…
Reference in a new issue