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
|
//! ref: composer/src/Composer/Installer/InstallerEvent.php
use crate::composer::ComposerWeakHandle;
use crate::dependency_resolver::Transaction;
use crate::event_dispatcher::Event;
use crate::io::IOInterface;
#[derive(Debug)]
pub struct InstallerEvent {
inner: Event,
composer: ComposerWeakHandle,
io: std::rc::Rc<std::cell::RefCell<dyn IOInterface>>,
dev_mode: bool,
execute_operations: bool,
transaction: Transaction,
}
impl InstallerEvent {
pub fn new(
event_name: String,
composer: ComposerWeakHandle,
io: std::rc::Rc<std::cell::RefCell<dyn IOInterface>>,
dev_mode: bool,
execute_operations: bool,
transaction: Transaction,
) -> Self {
let inner = Event::new(event_name, vec![], indexmap::IndexMap::new());
Self {
inner,
composer,
io,
dev_mode,
execute_operations,
transaction,
}
}
pub fn get_composer(&self) -> &ComposerWeakHandle {
&self.composer
}
pub fn get_io(&self) -> std::rc::Rc<std::cell::RefCell<dyn IOInterface>> {
self.io.clone()
}
pub fn is_dev_mode(&self) -> bool {
self.dev_mode
}
pub fn is_executing_operations(&self) -> bool {
self.execute_operations
}
pub fn get_transaction(&self) -> Option<&Transaction> {
Some(&self.transaction)
}
}
|