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
|
//! ref: composer/src/Composer/Downloader/XzDownloader.php
use crate::cache::Cache;
use crate::config::Config;
use crate::downloader::archive_downloader::ArchiveDownloader;
use crate::downloader::file_downloader::FileDownloader;
use crate::event_dispatcher::event_dispatcher::EventDispatcher;
use crate::io::io_interface::IOInterface;
use crate::package::package_interface::PackageInterface;
use crate::util::filesystem::Filesystem;
use crate::util::http_downloader::HttpDownloader;
use crate::util::process_executor::ProcessExecutor;
use anyhow::{Result, bail};
use indexmap::IndexMap;
use shirabe_external_packages::react::promise::promise_interface::PromiseInterface;
use shirabe_php_shim::PhpMixed;
#[derive(Debug)]
pub struct XzDownloader {
inner: FileDownloader,
cleanup_executed: IndexMap<String, bool>,
}
impl XzDownloader {
pub fn new(
io: Box<dyn IOInterface>,
config: Config,
http_downloader: HttpDownloader,
event_dispatcher: Option<EventDispatcher>,
cache: Option<Cache>,
filesystem: Filesystem,
process: ProcessExecutor,
) -> Self {
Self {
inner: FileDownloader::new(
io,
config,
http_downloader,
event_dispatcher,
cache,
Some(filesystem),
Some(process),
),
cleanup_executed: IndexMap::new(),
}
}
pub(crate) fn extract(
&mut self,
package: &dyn PackageInterface,
file: &str,
path: &str,
) -> Result<Box<dyn PromiseInterface>> {
let command = vec!["tar", "-xJf", file, "-C", path];
let mut ignored_output = PhpMixed::Null;
if self.inner.process.execute(
PhpMixed::List(
command
.iter()
.map(|s| Box::new(PhpMixed::String(s.to_string())))
.collect(),
),
Some(&mut ignored_output),
None,
)? == 0
{
return Ok(shirabe_external_packages::react::promise::resolve(None));
}
let process_error = format!(
"Failed to execute {}\n\n{}",
command.join(" "),
self.inner.process.get_error_output()
);
bail!(process_error);
}
}
impl crate::downloader::downloader_interface::DownloaderInterface for XzDownloader {
fn get_installation_source(&self) -> String {
self.inner.get_installation_source()
}
fn download(
&self,
package: &dyn PackageInterface,
path: &str,
prev_package: Option<&dyn PackageInterface>,
output: bool,
) -> Result<Box<dyn PromiseInterface>> {
self.inner.download(package, path, prev_package, output)
}
fn prepare(
&self,
r#type: &str,
package: &dyn PackageInterface,
path: &str,
prev_package: Option<&dyn PackageInterface>,
) -> Result<Box<dyn PromiseInterface>> {
self.inner.prepare(r#type, package, path, prev_package)
}
fn install(
&self,
package: &dyn PackageInterface,
path: &str,
output: bool,
) -> Result<Box<dyn PromiseInterface>> {
self.inner.install(package, path, output)
}
fn update(
&self,
initial: &dyn PackageInterface,
target: &dyn PackageInterface,
path: &str,
) -> Result<Box<dyn PromiseInterface>> {
self.inner.update(initial, target, path)
}
fn remove(
&self,
package: &dyn PackageInterface,
path: &str,
output: bool,
) -> Result<Box<dyn PromiseInterface>> {
self.inner.remove(package, path, output)
}
fn cleanup(
&self,
r#type: &str,
package: &dyn PackageInterface,
path: &str,
prev_package: Option<&dyn PackageInterface>,
) -> Result<Box<dyn PromiseInterface>> {
self.inner.cleanup(r#type, package, path, prev_package)
}
}
|