mirror of
https://github.com/facebookexperimental/reverie.git
synced 2025-02-09 05:38:13 +00:00
Summary: See rationale in the linked task I was planning to build a new CLI and decided to follow CLI Foundation recommentation. Since hermit is effectively not released it's a good time to migrate now which hasn't been hard mostly followed the fastmods on the task and and some manual fixes of the remaining code Reviewed By: jasonwhite Differential Revision: D39953166 fbshipit-source-id: 6e917c6a8ea2ee8258e7e6068e9c9e787ebf0989
41 lines
1.1 KiB
Rust
41 lines
1.1 KiB
Rust
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
//! This instrumentation tool intercepts events but does nothing with them. It is
|
|
//! useful for observing the overhead of interception, and as a starting point.
|
|
|
|
use clap::Parser;
|
|
use reverie::Error;
|
|
use reverie::Subscription;
|
|
use reverie::Tool;
|
|
use reverie_util::CommonToolArguments;
|
|
use serde::Deserialize;
|
|
use serde::Serialize;
|
|
|
|
#[derive(Debug, Default, Serialize, Deserialize)]
|
|
struct NoopTool;
|
|
|
|
#[reverie::tool]
|
|
impl Tool for NoopTool {
|
|
fn subscriptions(_cfg: &()) -> Subscription {
|
|
Subscription::none()
|
|
}
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), Error> {
|
|
let args = CommonToolArguments::from_args();
|
|
let log_guard = args.init_tracing();
|
|
let tracer = reverie_ptrace::TracerBuilder::<NoopTool>::new(args.into())
|
|
.spawn()
|
|
.await?;
|
|
let (status, _global_state) = tracer.wait().await?;
|
|
drop(log_guard); // Flush logs before exiting.
|
|
status.raise_or_exit()
|
|
}
|