From f411daceacad66e0bd774fda7d3c5ef8533cc55c Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 26 May 2026 20:04:02 +0900 Subject: refactor(io): share IOInterface via Rc> handle Co-Authored-By: Claude Opus 4.7 --- crates/shirabe/src/util/bitbucket.rs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'crates/shirabe/src/util/bitbucket.rs') diff --git a/crates/shirabe/src/util/bitbucket.rs b/crates/shirabe/src/util/bitbucket.rs index 1708447..67ae575 100644 --- a/crates/shirabe/src/util/bitbucket.rs +++ b/crates/shirabe/src/util/bitbucket.rs @@ -8,6 +8,7 @@ use crate::config::Config; use crate::downloader::TransportException; use crate::factory::Factory; use crate::io::IOInterface; +use crate::io::IOInterfaceImmutable; use crate::util::HttpDownloader; use crate::util::ProcessExecutor; @@ -17,7 +18,7 @@ fn transport_error_code(err: &anyhow::Error) -> Option { #[derive(Debug)] pub struct Bitbucket { - io: Box, + io: std::rc::Rc>, config: std::rc::Rc>, process: std::rc::Rc>, http_downloader: std::rc::Rc>, @@ -30,7 +31,7 @@ impl Bitbucket { "https://bitbucket.org/site/oauth2/access_token"; pub fn new( - io: Box, + io: std::rc::Rc>, config: std::rc::Rc>, process: Option>>, http_downloader: Option>>, @@ -38,13 +39,13 @@ impl Bitbucket { ) -> anyhow::Result { let process = process.unwrap_or_else(|| { std::rc::Rc::new(std::cell::RefCell::new(ProcessExecutor::new(Some( - io.clone_box(), + io.clone(), )))) }); let http_downloader = match http_downloader { Some(h) => h, None => std::rc::Rc::new(std::cell::RefCell::new(Factory::create_http_downloader( - &*io, + io.clone(), &config, IndexMap::new(), )?)), @@ -88,7 +89,7 @@ impl Bitbucket { == 0 { let output_str = output.as_string().unwrap_or("").trim().to_string(); - self.io.set_authentication( + self.io.borrow_mut().set_authentication( origin_url.to_string(), "x-token-auth".to_string(), Some(output_str), @@ -292,7 +293,7 @@ impl Bitbucket { return Ok(false); } - self.io.set_authentication( + self.io.borrow_mut().set_authentication( origin_url.to_string(), consumer_key.clone(), Some(consumer_secret.clone()), @@ -338,7 +339,7 @@ impl Bitbucket { .unwrap_or_default()); } - self.io.set_authentication( + self.io.borrow_mut().set_authentication( origin_url.to_string(), consumer_key.to_string(), Some(consumer_secret.to_string()), -- cgit v1.3.1