From d5c9d8d6abe901e9b7258fd74fdc9dcc29d9dcab Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 14 May 2026 19:51:11 +0900 Subject: feat(port): port CommandEvent.php --- crates/shirabe/src/plugin/command_event.rs | 39 ++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'crates') diff --git a/crates/shirabe/src/plugin/command_event.rs b/crates/shirabe/src/plugin/command_event.rs index cce8f98..0eb952a 100644 --- a/crates/shirabe/src/plugin/command_event.rs +++ b/crates/shirabe/src/plugin/command_event.rs @@ -1 +1,40 @@ //! ref: composer/src/Composer/Plugin/CommandEvent.php + +use shirabe_external_packages::symfony::console::input::input_interface::InputInterface; +use shirabe_external_packages::symfony::console::output::output_interface::OutputInterface; +use crate::event_dispatcher::event::Event; +use shirabe_php_shim::PhpMixed; + +#[derive(Debug)] +pub struct CommandEvent { + inner: Event, + command_name: String, + input: Box, + output: Box, +} + +impl CommandEvent { + pub fn new( + name: String, + command_name: String, + input: Box, + output: Box, + args: Vec, + flags: Vec, + ) -> Self { + let inner = Event::new(name, args, flags); + Self { inner, command_name, input, output } + } + + pub fn get_input(&self) -> &dyn InputInterface { + self.input.as_ref() + } + + pub fn get_output(&self) -> &dyn OutputInterface { + self.output.as_ref() + } + + pub fn get_command_name(&self) -> &str { + &self.command_name + } +} -- cgit v1.3.1