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

ANSI escape sequenceの出力の判断を完全にする #616

Conversation

qryxip
Copy link
Member

@qryxip qryxip commented Sep 16, 2023

内容

ANSI escape sequenceを出力すべきかどうかの判定にrust-cli/anstyleを用いることで、 #386 を完全にします。

ENABLE_VIRTUAL_TERMINAL_PROCESSINGがオフの場合でもオンにするようにしたので、これで古いコマンドプロンプトやPowerShellのターミナルでも色が出るようになるかと思います。
(前はPowerShellが壊れちゃってたはず)

関連 Issue

その他

clapは半年前、ターミナルに色を出すためのライブラリをanstreamに切り替えました。
clap-rs/clap#4765

ターミナルに色を出すべきかどうかの判断は今はanstyle(ファミリー)の判定がデファクトになりつつあることから、これを採用しました。Rust CLI WGが手がけているというのもあります。

Comment on lines +54 to +56
AutoStream::choice(&out()) != ColorChoice::Never
&& anstyle_query::term_supports_ansi_color()
&& anstyle_query::windows::enable_ansi_colors().unwrap_or(true)
Copy link
Member Author

@qryxip qryxip Sep 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$TERMのチェックやENABLE_VIRTUAL_TERMINAL_PROCESSINGの有効化はanstyle-queryがやっているのだが、anstream側でこういうことになっているためanstreamを一部利用。

https://github.com/rust-cli/anstyle/blob/anstream-v0.5.0/crates/anstream/src/auto.rs#L139-L162

anstream::AutoStreamからまともな手段で情報を取ることはできない(Debugの出力で判定するしかない)のでanstreamへの一本化は避けた結果、このような形になった。
(今回はWin32の色は使わないというのもある)

// ちゃんとやるなら`ENABLE_VIRTUAL_TERMINAL_PROCESSING`をチェックするなり、そもそも
// fwdansiとかでWin32の色に変換するべきだが、面倒。
env::var_os("TERM").map_or(
cfg!(windows) && env::var_os("PSModulePath").is_some(),
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

以前はここが駄目だった(PowerShellだからといってそのままANSI escapeを出してよいわけではない)

Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!!!

@Hiroshiba
Copy link
Member

あ、注釈説明もありがとうございます、なんとなくではありますがわかるのでとても助かってます🙇

@Hiroshiba Hiroshiba merged commit 814d270 into VOICEVOX:main Sep 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants