Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Colored text for readability and transfer speed display #279

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
106 changes: 93 additions & 13 deletions cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ use std::{

use async_std::sync::Arc;
use clap::{Args, CommandFactory, Parser, Subcommand};
use color_eyre::{eyre, eyre::Context};
use color_eyre::{
eyre::{self, Context},
owo_colors::OwoColorize,
};
use completer::enter_code;
use console::{style, Term};
use futures::{future::Either, Future, FutureExt};
Expand Down Expand Up @@ -259,8 +262,18 @@ struct WormholeCli {
display_order = 100
)]
log: bool,

#[clap(subcommand)]
command: WormholeCommand,

/// Disable color output
#[arg(
long = "no-color",
global = true,
help = "Disable color output",
display_order = 101
)]
no_color: bool,
}

#[async_std::main]
Expand All @@ -272,6 +285,11 @@ async fn main() -> eyre::Result<()> {

let mut term = Term::stdout();

// Set NO_COLOR environment variable if --no-color flag is used
if app.no_color {
std::env::set_var("NO_COLOR", "1");
}

if app.log {
tracing_subscriber::fmt()
.with_max_level(tracing::Level::TRACE)
Expand Down Expand Up @@ -758,11 +776,16 @@ async fn make_send_offer(
fn create_progress_bar(file_size: u64) -> ProgressBar {
use indicatif::ProgressStyle;

let template = if should_use_color() {
"[{elapsed_precise:.yellow.bold}] [{wide_bar}] {bytes:.blue.bold}/{total_bytes:.blue.bold} | {decimal_bytes_per_sec:.green.bold} | ETA: {eta:.yellow.bold}"
} else {
"[{elapsed_precise}] [{wide_bar}] {bytes}/{total_bytes} | {decimal_bytes_per_sec} | ETA: {eta}"
};

let pb = ProgressBar::new(file_size);
pb.set_style(
ProgressStyle::default_bar()
// .template("[{elapsed_precise}] [{wide_bar:.cyan/blue}] {bytes}/{total_bytes} ({eta})")
.template("[{elapsed_precise}] [{wide_bar}] {bytes}/{total_bytes} ({eta})")
.template(template)
.unwrap()
.progress_chars("#>-"),
);
Expand All @@ -776,6 +799,7 @@ fn create_progress_handler(pb: ProgressBar) -> impl FnMut(u64, u64) {
pb.set_length(total);
pb.enable_steady_tick(std::time::Duration::from_millis(250));
}

pb.set_position(sent);
}
}
Expand Down Expand Up @@ -1052,15 +1076,28 @@ async fn receive_inner_v1(
use number_prefix::NumberPrefix;
if !(noconfirm
|| util::ask_user(
format!(
"Receive file '{}' ({})?",
req.file_name(),
match NumberPrefix::binary(req.file_size() as f64) {
NumberPrefix::Standalone(bytes) => format!("{} bytes", bytes),
NumberPrefix::Prefixed(prefix, n) =>
format!("{:.1} {}B in size", n, prefix.symbol()),
},
),
match should_use_color() {
true => format!(
"Receive file '{}' ({})?",
req.file_name().green().bold(),
match NumberPrefix::binary(req.file_size() as f64) {
NumberPrefix::Standalone(bytes) => format!("{} bytes", bytes),
NumberPrefix::Prefixed(prefix, n) =>
format!("{:.1} {}B", n, prefix.symbol()),
}
.blue()
.bold(),
),
false => format!(
"Receive file '{}' ({})?",
req.file_name(),
match NumberPrefix::binary(req.file_size() as f64) {
NumberPrefix::Standalone(bytes) => format!("{} bytes", bytes),
NumberPrefix::Prefixed(prefix, n) =>
format!("{:.1} {}B", n, prefix.symbol()),
},
),
},
true,
)
.await)
Expand Down Expand Up @@ -1094,7 +1131,14 @@ async fn receive_inner_v1(

/* If there is a collision, ask whether to overwrite */
if !util::ask_user(
format!("Override existing file {}?", file_path.display()),
if should_use_color() {
format!(
"Override existing file {}?",
file_path.display().red().bold()
)
} else {
format!("Override existing file {}?", file_path.display())
},
false,
)
.await
Expand Down Expand Up @@ -1218,6 +1262,42 @@ async fn receive_inner_v2(

fn transit_handler(info: TransitInfo) {
tracing::info!("{info}");
let mut term = Term::stderr();
let use_color = should_use_color();

let conn_type = if use_color {
info.conn_type.bright_magenta().bold().to_string()
} else {
info.conn_type.to_string()
};

let peer_addr = if use_color {
info.peer_addr.cyan().bold().to_string()
} else {
info.peer_addr.to_string()
};

let _ = writeln!(term, "Connecting {} to {}", conn_type, peer_addr);
}

fn should_use_color() -> bool {
// Check NO_COLOR first - if it exists with any value, disable colors
if std::env::var_os("NO_COLOR").is_some() {
kernelPanic0x marked this conversation as resolved.
Show resolved Hide resolved
return false;
}

// Then check CLICOLOR_FORCE - if set, enable colors regardless of terminal
if std::env::var_os("CLICOLOR_FORCE").is_some() {
return true;
}

// Check CLICOLOR - if set, use colors only when writing to a terminal
if std::env::var_os("CLICOLOR").is_some() {
return std::io::stdout().is_terminal();
}

// Modern default (acting as if CLICOLOR is set):
std::io::stdout().is_terminal()
}

#[cfg(test)]
Expand Down
5 changes: 3 additions & 2 deletions cli/tests/cmd/basic.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ Commands:

Options:
-v, --verbose[..]
-h, --help[..]
-V, --version[..]
--no-color Disable color output
-h, --help Print help
-V, --version Print version

Run a subcommand with `--help` to know how it's used.
To send files, use `wormhole send <PATH>`.
Expand Down
1 change: 1 addition & 0 deletions cli/tests/cmd/help.stdout
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Commands:

Options:
-v, --verbose[..]
--no-color Disable color output
-h, --help[..]
-V, --version[..]

Expand Down
10 changes: 10 additions & 0 deletions src/transit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,16 @@ pub enum ConnectionType {
},
}

impl std::fmt::Display for ConnectionType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
ConnectionType::Direct => write!(f, "directly"),
ConnectionType::Relay { name: Some(name) } => write!(f, "via relay ({})", name),
ConnectionType::Relay { name: None } => write!(f, "via relay"),
}
}
}

/// Metadata for the established transit connection
#[derive(Clone, Debug, Eq, PartialEq)]
#[non_exhaustive]
Expand Down
Loading