forked from foxglove/mcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecover.rs
85 lines (72 loc) · 2.22 KB
/
recover.rs
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#[path = "common/logsetup.rs"]
mod logsetup;
use std::{fs, io::BufWriter};
use anyhow::{ensure, Context, Result};
use camino::{Utf8Path, Utf8PathBuf};
use clap::Parser;
use enumset::enum_set;
use log::*;
use memmap::Mmap;
#[derive(Parser, Debug)]
struct Args {
/// Verbosity (-v, -vv, -vvv, etc.)
#[clap(short, long, parse(from_occurrences))]
verbose: u8,
#[clap(short, long, arg_enum, default_value = "auto")]
color: logsetup::Color,
#[clap(help = "input MCAP file")]
input: Utf8PathBuf,
#[clap(
short,
long,
help = "output MCAP file, defaults to <input-file>.recovered.mcap"
)]
output: Option<Utf8PathBuf>,
}
fn map_mcap(p: &Utf8Path) -> Result<Mmap> {
let fd = fs::File::open(p).context("Couldn't open MCAP file")?;
unsafe { Mmap::map(&fd) }.context("Couldn't map MCAP file")
}
fn make_output_path(input: Utf8PathBuf) -> Result<Utf8PathBuf> {
use std::str::FromStr;
let file_stem = input.file_stem().context("no file stem for input path")?;
let output_path = Utf8PathBuf::from_str(file_stem)?.with_extension("recovered.mcap");
Ok(output_path)
}
fn run() -> Result<()> {
let args = Args::parse();
logsetup::init_logger(args.verbose, args.color);
debug!("{:?}", args);
let mapped = map_mcap(&args.input)?;
let output_path = args.output.unwrap_or(make_output_path(args.input)?);
ensure!(
!output_path.exists(),
"output path {output_path} already exists"
);
let mut out = mcap::Writer::new(BufWriter::new(fs::File::create(output_path)?))?;
info!("recovering as many messages as possible...");
let mut recovered_count = 0;
for maybe_message in mcap::MessageStream::new_with_options(
&mapped,
enum_set!(mcap::read::Options::IgnoreEndMagic),
)? {
match maybe_message {
Ok(message) => {
out.write(&message)?;
recovered_count += 1;
}
Err(err) => {
error!("{err} -- stopping");
break;
}
}
}
info!("recovered {} messages", recovered_count);
Ok(())
}
fn main() {
run().unwrap_or_else(|e| {
error!("{:?}", e);
std::process::exit(1);
});
}