1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
//! ref: composer/src/Composer/Downloader/XzDownloader.php
use crate::cache::Cache;
use crate::config::Config;
use crate::downloader::ArchiveDownloader;
use crate::downloader::ChangeReportInterface;
use crate::downloader::FileDownloader;
use crate::event_dispatcher::EventDispatcher;
use crate::io::IOInterface;
use crate::package::PackageInterfaceHandle;
use crate::util::Filesystem;
use crate::util::HttpDownloader;
use crate::util::ProcessExecutor;
use anyhow::{Result, bail};
use indexmap::IndexMap;
use shirabe_php_shim::PhpMixed;
#[derive(Debug)]
pub struct XzDownloader {
inner: FileDownloader,
cleanup_executed: IndexMap<String, bool>,
}
impl XzDownloader {
pub fn new(
io: std::rc::Rc<std::cell::RefCell<dyn IOInterface>>,
config: std::rc::Rc<std::cell::RefCell<Config>>,
http_downloader: std::rc::Rc<std::cell::RefCell<HttpDownloader>>,
event_dispatcher: Option<std::rc::Rc<std::cell::RefCell<EventDispatcher>>>,
cache: Option<std::rc::Rc<std::cell::RefCell<Cache>>>,
filesystem: std::rc::Rc<std::cell::RefCell<Filesystem>>,
process: std::rc::Rc<std::cell::RefCell<ProcessExecutor>>,
) -> Self {
Self {
inner: FileDownloader::new(
io,
config,
http_downloader,
event_dispatcher,
cache,
Some(filesystem),
Some(process),
),
cleanup_executed: IndexMap::new(),
}
}
}
impl ArchiveDownloader for XzDownloader {
fn inner(&self) -> &FileDownloader {
&self.inner
}
fn inner_mut(&mut self) -> &mut FileDownloader {
&mut self.inner
}
fn cleanup_executed(&self) -> &IndexMap<String, bool> {
&self.cleanup_executed
}
fn cleanup_executed_mut(&mut self) -> &mut IndexMap<String, bool> {
&mut self.cleanup_executed
}
async fn extract(
&mut self,
_package: PackageInterfaceHandle,
file: &str,
path: &str,
) -> Result<Option<PhpMixed>> {
let command = ["tar", "-xJf", file, "-C", path];
let mut ignored_output = PhpMixed::Null;
if self.inner.process.borrow_mut().execute(
PhpMixed::List(
command
.iter()
.map(|s| PhpMixed::String(s.to_string()))
.collect(),
),
Some(&mut ignored_output),
(),
)? == 0
{
return Ok(None);
}
let process_error = format!(
"Failed to execute {}\n\n{}",
command.join(" "),
self.inner.process.borrow().get_error_output()
);
bail!(process_error);
}
}
impl ChangeReportInterface for XzDownloader {
fn get_local_changes(
&mut self,
package: PackageInterfaceHandle,
path: &str,
) -> Result<Option<String>> {
self.inner.get_local_changes(package, path)
}
}
#[async_trait::async_trait(?Send)]
impl crate::downloader::DownloaderInterface for XzDownloader {
fn get_installation_source(&self) -> String {
self.inner.get_installation_source()
}
fn as_change_report_interface(
&mut self,
) -> Option<&mut dyn crate::downloader::ChangeReportInterface> {
Some(self)
}
async fn download(
&mut self,
package: PackageInterfaceHandle,
path: &str,
prev_package: Option<PackageInterfaceHandle>,
output: bool,
) -> Result<Option<PhpMixed>> {
self.inner
.download(package, path, prev_package, output)
.await
}
async fn prepare(
&mut self,
r#type: &str,
package: PackageInterfaceHandle,
path: &str,
prev_package: Option<PackageInterfaceHandle>,
) -> Result<Option<PhpMixed>> {
<Self as ArchiveDownloader>::prepare(self, r#type, package, path, prev_package).await
}
async fn install(
&mut self,
package: PackageInterfaceHandle,
path: &str,
output: bool,
) -> Result<Option<PhpMixed>> {
<Self as ArchiveDownloader>::install(self, package, path, output).await
}
async fn update(
&mut self,
initial: PackageInterfaceHandle,
target: PackageInterfaceHandle,
path: &str,
) -> Result<Option<PhpMixed>> {
self.inner.update(initial, target, path).await
}
async fn remove(
&mut self,
package: PackageInterfaceHandle,
path: &str,
output: bool,
) -> Result<Option<PhpMixed>> {
self.inner.remove(package, path, output).await
}
async fn cleanup(
&mut self,
r#type: &str,
package: PackageInterfaceHandle,
path: &str,
prev_package: Option<PackageInterfaceHandle>,
) -> Result<Option<PhpMixed>> {
<Self as ArchiveDownloader>::cleanup(self, r#type, package, path, prev_package).await
}
}
|