forked from foxglove/mcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmcapcat.rs
67 lines (56 loc) · 1.53 KB
/
mcapcat.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
#[path = "common/logsetup.rs"]
mod logsetup;
use std::{fs, process};
use anyhow::{Context, Result};
use camino::{Utf8Path, Utf8PathBuf};
use clap::Parser;
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,
mcap: 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 run() -> Result<()> {
let args = Args::parse();
logsetup::init_logger(args.verbose, args.color);
let mapped = map_mcap(&args.mcap)?;
for message in mcap::MessageStream::new(&mapped)? {
let message = message?;
let ts = message.publish_time;
println!(
"{} {} [{}] [{}]...",
ts,
message.channel.topic,
message
.channel
.schema
.as_ref()
.map(|s| s.name.as_str())
.unwrap_or_default(),
message
.data
.iter()
.take(10)
.map(|b| b.to_string())
.collect::<Vec<_>>()
.join(" ")
);
}
info!("{:#?}", mcap::Summary::read(&mapped)?);
Ok(())
}
fn main() {
run().unwrap_or_else(|e| {
error!("{:?}", e);
process::exit(1);
});
}