mirror of
https://github.com/EasyTier/EasyTier.git
synced 2024-11-16 11:42:27 +08:00
optimize cli output (#6)
This commit is contained in:
parent
003520f2b4
commit
d4b0f49443
|
@ -13,3 +13,5 @@ easytier-core = { path = "../easytier-core" }
|
||||||
clap = { version = "4.4.8", features = ["unicode", "derive", "wrap_help"] }
|
clap = { version = "4.4.8", features = ["unicode", "derive", "wrap_help"] }
|
||||||
tonic = "0.10"
|
tonic = "0.10"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
|
tabled = "0.15.*"
|
||||||
|
humansize = "2.1.3"
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
|
use std::vec;
|
||||||
|
|
||||||
use clap::{command, Args, Parser, Subcommand};
|
use clap::{command, Args, Parser, Subcommand};
|
||||||
use easytier_rpc::{
|
use easytier_rpc::{
|
||||||
connector_manage_rpc_client::ConnectorManageRpcClient,
|
connector_manage_rpc_client::ConnectorManageRpcClient,
|
||||||
peer_manage_rpc_client::PeerManageRpcClient, ListConnectorRequest, ListPeerRequest,
|
peer_manage_rpc_client::PeerManageRpcClient, *,
|
||||||
ListRouteRequest,
|
|
||||||
};
|
};
|
||||||
|
use humansize::format_size;
|
||||||
|
use tabled::settings::Style;
|
||||||
|
|
||||||
#[derive(Parser, Debug)]
|
#[derive(Parser, Debug)]
|
||||||
#[command(author, version, about, long_about = None)]
|
#[command(author, version, about, long_about = None)]
|
||||||
|
@ -35,11 +38,17 @@ struct PeerArgs {
|
||||||
sub_command: Option<PeerSubCommand>,
|
sub_command: Option<PeerSubCommand>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Args, Debug)]
|
||||||
|
struct PeerListArgs {
|
||||||
|
#[arg(short, long)]
|
||||||
|
verbose: bool,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Subcommand, Debug)]
|
#[derive(Subcommand, Debug)]
|
||||||
enum PeerSubCommand {
|
enum PeerSubCommand {
|
||||||
Add,
|
Add,
|
||||||
Remove,
|
Remove,
|
||||||
List,
|
List(PeerListArgs),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Args, Debug)]
|
#[derive(Args, Debug)]
|
||||||
|
@ -69,6 +78,107 @@ enum Error {
|
||||||
TonicRpcError(#[from] tonic::Status),
|
TonicRpcError(#[from] tonic::Status),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
struct PeerRoutePair {
|
||||||
|
route: Route,
|
||||||
|
peer: Option<PeerInfo>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl PeerRoutePair {
|
||||||
|
fn get_latency_ms(&self) -> Option<f64> {
|
||||||
|
let mut ret = u64::MAX;
|
||||||
|
let p = self.peer.as_ref()?;
|
||||||
|
for conn in p.conns.iter() {
|
||||||
|
let Some(stats) = &conn.stats else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
ret = ret.min(stats.latency_us);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ret == u64::MAX {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(f64::from(ret as u32) / 1000.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_rx_bytes(&self) -> Option<u64> {
|
||||||
|
let mut ret = 0;
|
||||||
|
let p = self.peer.as_ref()?;
|
||||||
|
for conn in p.conns.iter() {
|
||||||
|
let Some(stats) = &conn.stats else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
ret += stats.rx_bytes;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ret == 0 {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(ret)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_tx_bytes(&self) -> Option<u64> {
|
||||||
|
let mut ret = 0;
|
||||||
|
let p = self.peer.as_ref()?;
|
||||||
|
for conn in p.conns.iter() {
|
||||||
|
let Some(stats) = &conn.stats else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
ret += stats.tx_bytes;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ret == 0 {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(ret)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_loss_rate(&self) -> Option<f64> {
|
||||||
|
let mut ret = 0.0;
|
||||||
|
let p = self.peer.as_ref()?;
|
||||||
|
for conn in p.conns.iter() {
|
||||||
|
ret += conn.loss_rate;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ret == 0.0 {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(ret as f64)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_conn_protos(&self) -> Option<Vec<String>> {
|
||||||
|
let mut ret = vec![];
|
||||||
|
let p = self.peer.as_ref()?;
|
||||||
|
for conn in p.conns.iter() {
|
||||||
|
let Some(tunnel_info) = &conn.tunnel else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
// insert if not exists
|
||||||
|
if !ret.contains(&tunnel_info.tunnel_type) {
|
||||||
|
ret.push(tunnel_info.tunnel_type.clone());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ret.is_empty() {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(ret)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_udp_nat_type(self: &Self) -> String {
|
||||||
|
let mut ret = NatType::Unknown;
|
||||||
|
if let Some(r) = &self.route.stun_info {
|
||||||
|
ret = NatType::try_from(r.udp_nat_type).unwrap();
|
||||||
|
}
|
||||||
|
format!("{:?}", ret)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct CommandHandler {
|
struct CommandHandler {
|
||||||
addr: String,
|
addr: String,
|
||||||
}
|
}
|
||||||
|
@ -86,6 +196,36 @@ impl CommandHandler {
|
||||||
Ok(ConnectorManageRpcClient::connect(self.addr.clone()).await?)
|
Ok(ConnectorManageRpcClient::connect(self.addr.clone()).await?)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn list_peers(&self) -> Result<ListPeerResponse, Error> {
|
||||||
|
let mut client = self.get_peer_manager_client().await?;
|
||||||
|
let request = tonic::Request::new(ListPeerRequest::default());
|
||||||
|
let response = client.list_peer(request).await?;
|
||||||
|
Ok(response.into_inner())
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn list_routes(&self) -> Result<ListRouteResponse, Error> {
|
||||||
|
let mut client = self.get_peer_manager_client().await?;
|
||||||
|
let request = tonic::Request::new(ListRouteRequest::default());
|
||||||
|
let response = client.list_route(request).await?;
|
||||||
|
Ok(response.into_inner())
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn list_peer_route_pair(&self) -> Result<Vec<PeerRoutePair>, Error> {
|
||||||
|
let mut peers = self.list_peers().await?.peer_infos;
|
||||||
|
let mut routes = self.list_routes().await?.routes;
|
||||||
|
let mut pairs: Vec<PeerRoutePair> = vec![];
|
||||||
|
|
||||||
|
for route in routes.iter_mut() {
|
||||||
|
let peer = peers.iter_mut().find(|peer| peer.peer_id == route.peer_id);
|
||||||
|
pairs.push(PeerRoutePair {
|
||||||
|
route: route.clone(),
|
||||||
|
peer: peer.cloned(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(pairs)
|
||||||
|
}
|
||||||
|
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
fn handle_peer_add(&self, _args: PeerArgs) {
|
fn handle_peer_add(&self, _args: PeerArgs) {
|
||||||
println!("add peer");
|
println!("add peer");
|
||||||
|
@ -96,19 +236,102 @@ impl CommandHandler {
|
||||||
println!("remove peer");
|
println!("remove peer");
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn handle_peer_list(&self, _args: PeerArgs) -> Result<(), Error> {
|
async fn handle_peer_list(&self, _args: &PeerArgs) -> Result<(), Error> {
|
||||||
let mut client = self.get_peer_manager_client().await?;
|
#[derive(tabled::Tabled)]
|
||||||
let request = tonic::Request::new(ListPeerRequest::default());
|
struct PeerTableItem {
|
||||||
let response = client.list_peer(request).await?;
|
ipv4: String,
|
||||||
println!("response: {:#?}", response.into_inner());
|
hostname: String,
|
||||||
|
cost: i32,
|
||||||
|
lat_ms: f64,
|
||||||
|
loss_rate: f64,
|
||||||
|
rx_bytes: String,
|
||||||
|
tx_bytes: String,
|
||||||
|
tunnel_proto: String,
|
||||||
|
nat_type: String,
|
||||||
|
id: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl From<PeerRoutePair> for PeerTableItem {
|
||||||
|
fn from(p: PeerRoutePair) -> Self {
|
||||||
|
PeerTableItem {
|
||||||
|
ipv4: p.route.ipv4_addr.clone(),
|
||||||
|
hostname: p.route.hostname.clone(),
|
||||||
|
cost: p.route.cost,
|
||||||
|
lat_ms: p.get_latency_ms().unwrap_or(0.0),
|
||||||
|
loss_rate: p.get_loss_rate().unwrap_or(0.0),
|
||||||
|
rx_bytes: format_size(p.get_rx_bytes().unwrap_or(0), humansize::DECIMAL),
|
||||||
|
tx_bytes: format_size(p.get_tx_bytes().unwrap_or(0), humansize::DECIMAL),
|
||||||
|
tunnel_proto: p.get_conn_protos().unwrap_or(vec![]).join(",").to_string(),
|
||||||
|
nat_type: p.get_udp_nat_type(),
|
||||||
|
id: p.route.peer_id.clone(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut items: Vec<PeerTableItem> = vec![];
|
||||||
|
let peer_routes = self.list_peer_route_pair().await?;
|
||||||
|
for p in peer_routes {
|
||||||
|
items.push(p.into());
|
||||||
|
}
|
||||||
|
|
||||||
|
println!(
|
||||||
|
"{}",
|
||||||
|
tabled::Table::new(items).with(Style::modern()).to_string()
|
||||||
|
);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn handle_route_list(&self) -> Result<(), Error> {
|
async fn handle_route_list(&self) -> Result<(), Error> {
|
||||||
let mut client = self.get_peer_manager_client().await?;
|
#[derive(tabled::Tabled)]
|
||||||
let request = tonic::Request::new(ListRouteRequest::default());
|
struct RouteTableItem {
|
||||||
let response = client.list_route(request).await?;
|
ipv4: String,
|
||||||
println!("response: {:#?}", response.into_inner());
|
hostname: String,
|
||||||
|
proxy_cidrs: String,
|
||||||
|
next_hop_ipv4: String,
|
||||||
|
next_hop_hostname: String,
|
||||||
|
next_hop_lat: f64,
|
||||||
|
cost: i32,
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut items: Vec<RouteTableItem> = vec![];
|
||||||
|
let peer_routes = self.list_peer_route_pair().await?;
|
||||||
|
for p in peer_routes.iter() {
|
||||||
|
let Some(next_hop_pair) = peer_routes
|
||||||
|
.iter()
|
||||||
|
.find(|pair| pair.route.peer_id == p.route.next_hop_peer_id)
|
||||||
|
else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
|
||||||
|
if p.route.cost == 1 {
|
||||||
|
items.push(RouteTableItem {
|
||||||
|
ipv4: p.route.ipv4_addr.clone(),
|
||||||
|
hostname: p.route.hostname.clone(),
|
||||||
|
proxy_cidrs: p.route.proxy_cidrs.clone().join(",").to_string(),
|
||||||
|
next_hop_ipv4: "DIRECT".to_string(),
|
||||||
|
next_hop_hostname: "".to_string(),
|
||||||
|
next_hop_lat: next_hop_pair.get_latency_ms().unwrap_or(0.0),
|
||||||
|
cost: p.route.cost,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
items.push(RouteTableItem {
|
||||||
|
ipv4: p.route.ipv4_addr.clone(),
|
||||||
|
hostname: p.route.hostname.clone(),
|
||||||
|
proxy_cidrs: p.route.proxy_cidrs.clone().join(",").to_string(),
|
||||||
|
next_hop_ipv4: next_hop_pair.route.ipv4_addr.clone(),
|
||||||
|
next_hop_hostname: next_hop_pair.route.hostname.clone(),
|
||||||
|
next_hop_lat: next_hop_pair.get_latency_ms().unwrap_or(0.0),
|
||||||
|
cost: p.route.cost,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
println!(
|
||||||
|
"{}",
|
||||||
|
tabled::Table::new(items).with(Style::modern()).to_string()
|
||||||
|
);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -124,25 +347,27 @@ impl CommandHandler {
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() -> Result<(), Error> {
|
async fn main() -> Result<(), Error> {
|
||||||
let cli = Cli::parse();
|
let cli = Cli::parse();
|
||||||
println!("cli: {:?}", cli);
|
|
||||||
|
|
||||||
let handler = CommandHandler {
|
let handler = CommandHandler {
|
||||||
addr: "http://127.0.0.1:15888".to_string(),
|
addr: "http://127.0.0.1:15888".to_string(),
|
||||||
};
|
};
|
||||||
|
|
||||||
match cli.sub_command {
|
match cli.sub_command {
|
||||||
Some(SubCommand::Peer(peer_args)) => match peer_args.sub_command {
|
Some(SubCommand::Peer(peer_args)) => match &peer_args.sub_command {
|
||||||
Some(PeerSubCommand::Add) => {
|
Some(PeerSubCommand::Add) => {
|
||||||
println!("add peer");
|
println!("add peer");
|
||||||
}
|
}
|
||||||
Some(PeerSubCommand::Remove) => {
|
Some(PeerSubCommand::Remove) => {
|
||||||
println!("remove peer");
|
println!("remove peer");
|
||||||
}
|
}
|
||||||
Some(PeerSubCommand::List) => {
|
Some(PeerSubCommand::List(arg)) => {
|
||||||
handler.handle_peer_list(peer_args).await?;
|
if arg.verbose {
|
||||||
|
println!("{:#?}", handler.list_peer_route_pair().await?);
|
||||||
|
} else {
|
||||||
|
handler.handle_peer_list(&peer_args).await?;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
handler.handle_peer_list(peer_args).await?;
|
handler.handle_peer_list(&peer_args).await?;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Some(SubCommand::Connector(conn_args)) => match conn_args.sub_command {
|
Some(SubCommand::Connector(conn_args)) => match conn_args.sub_command {
|
||||||
|
|
|
@ -296,7 +296,7 @@ impl PeerConnPinger {
|
||||||
}
|
}
|
||||||
|
|
||||||
self.loss_rate_stats
|
self.loss_rate_stats
|
||||||
.store((loss_rate_20 * 100.0) as u32, Ordering::Relaxed);
|
.store((loss_rate_1 * 100.0) as u32, Ordering::Relaxed);
|
||||||
}
|
}
|
||||||
|
|
||||||
stopped.store(1, Ordering::Relaxed);
|
stopped.store(1, Ordering::Relaxed);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user