aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-12 03:19:34 +0900
committernsfisis <nsfisis@gmail.com>2026-06-12 03:19:34 +0900
commitefe5bdb1987411a473d4af15451a376d20928245 (patch)
tree54d3c9e7ab92cfc7d7ec3d90ca3f29e828d929c4 /crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs
parent981cae63d9777b877aa9f96907c7995ec020fbf9 (diff)
downloadphp-shirabe-efe5bdb1987411a473d4af15451a376d20928245.tar.gz
php-shirabe-efe5bdb1987411a473d4af15451a376d20928245.tar.zst
php-shirabe-efe5bdb1987411a473d4af15451a376d20928245.zip
refactor(php-shim): replace literal sprintf calls with format!
Convert every sprintf() call with a compile-time literal format string to format!, implementing Display for PhpMixed (delegating to php_to_string) so PhpMixed values render with PHP string semantics through {}. Also merge the format!-wrapped and conditional-literal dynamic sites into single format! calls. Genuinely runtime format strings (table styles, configurable error messages, command synopsis, progress-bar modifiers, regex-built messages) still go through sprintf. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs67
1 files changed, 30 insertions, 37 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs b/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs
index e9cb8d3..765f601 100644
--- a/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs
+++ b/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs
@@ -148,10 +148,7 @@ impl ArgvInput {
}
};
return Err(RuntimeException(shirabe_php_shim::RuntimeException {
- message: shirabe_php_shim::sprintf(
- "The \"-%s\" option does not exist.",
- &[PhpMixed::String(bad)],
- ),
+ message: format!("The \"-{}\" option does not exist.", PhpMixed::String(bad),),
code: 0,
})
.into());
@@ -251,17 +248,15 @@ impl ArgvInput {
Some(symfony_command_name)
if !matches!(symfony_command_name, PhpMixed::Null) =>
{
- shirabe_php_shim::sprintf(
- "Too many arguments to \"%s\" command, expected arguments \"%s\".",
- &[
- symfony_command_name.clone(),
- PhpMixed::String(shirabe_php_shim::implode("\" \"", &names)),
- ],
+ format!(
+ "Too many arguments to \"{}\" command, expected arguments \"{}\".",
+ symfony_command_name.clone(),
+ PhpMixed::String(shirabe_php_shim::implode("\" \"", &names)),
)
}
- _ => shirabe_php_shim::sprintf(
- "Too many arguments, expected arguments \"%s\".",
- &[PhpMixed::String(shirabe_php_shim::implode("\" \"", &names))],
+ _ => format!(
+ "Too many arguments, expected arguments \"{}\".",
+ PhpMixed::String(shirabe_php_shim::implode("\" \"", &names)),
),
}
} else if symfony_command_name
@@ -269,17 +264,15 @@ impl ArgvInput {
.map(|n| !matches!(n, PhpMixed::Null))
.unwrap_or(false)
{
- shirabe_php_shim::sprintf(
- "No arguments expected for \"%s\" command, got \"%s\".",
- &[
- symfony_command_name.clone().unwrap(),
- PhpMixed::String(token.to_string()),
- ],
+ format!(
+ "No arguments expected for \"{}\" command, got \"{}\".",
+ symfony_command_name.clone().unwrap(),
+ PhpMixed::String(token.to_string()),
)
} else {
- shirabe_php_shim::sprintf(
- "No arguments expected, got \"%s\".",
- &[PhpMixed::String(token.to_string())],
+ format!(
+ "No arguments expected, got \"{}\".",
+ PhpMixed::String(token.to_string()),
)
};
@@ -295,9 +288,9 @@ impl ArgvInput {
fn add_short_option(&mut self, shortcut: &str, value: PhpMixed) -> anyhow::Result<()> {
if !self.inner.definition.has_shortcut(shortcut) {
return Err(RuntimeException(shirabe_php_shim::RuntimeException {
- message: shirabe_php_shim::sprintf(
- "The \"-%s\" option does not exist.",
- &[PhpMixed::String(shortcut.to_string())],
+ message: format!(
+ "The \"-{}\" option does not exist.",
+ PhpMixed::String(shortcut.to_string()),
),
code: 0,
})
@@ -320,9 +313,9 @@ impl ArgvInput {
if !self.inner.definition.has_option(name) {
if !self.inner.definition.has_negation(name) {
return Err(RuntimeException(shirabe_php_shim::RuntimeException {
- message: shirabe_php_shim::sprintf(
- "The \"--%s\" option does not exist.",
- &[PhpMixed::String(name.to_string())],
+ message: format!(
+ "The \"--{}\" option does not exist.",
+ PhpMixed::String(name.to_string()),
),
code: 0,
})
@@ -332,9 +325,9 @@ impl ArgvInput {
let option_name = self.inner.definition.negation_to_name(name)?;
if !matches!(value, PhpMixed::Null) {
return Err(RuntimeException(shirabe_php_shim::RuntimeException {
- message: shirabe_php_shim::sprintf(
- "The \"--%s\" option does not accept a value.",
- &[PhpMixed::String(name.to_string())],
+ message: format!(
+ "The \"--{}\" option does not accept a value.",
+ PhpMixed::String(name.to_string()),
),
code: 0,
})
@@ -351,9 +344,9 @@ impl ArgvInput {
if !matches!(value, PhpMixed::Null) && !option.accept_value() {
return Err(RuntimeException(shirabe_php_shim::RuntimeException {
- message: shirabe_php_shim::sprintf(
- "The \"--%s\" option does not accept a value.",
- &[PhpMixed::String(name.to_string())],
+ message: format!(
+ "The \"--{}\" option does not accept a value.",
+ PhpMixed::String(name.to_string()),
),
code: 0,
})
@@ -379,9 +372,9 @@ impl ArgvInput {
if matches!(value, PhpMixed::Null) {
if option.is_value_required() {
return Err(RuntimeException(shirabe_php_shim::RuntimeException {
- message: shirabe_php_shim::sprintf(
- "The \"--%s\" option requires a value.",
- &[PhpMixed::String(name.to_string())],
+ message: format!(
+ "The \"--{}\" option requires a value.",
+ PhpMixed::String(name.to_string()),
),
code: 0,
})