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
|
//! ref: composer/vendor/symfony/process/Pipes/AbstractPipes.php
use indexmap::IndexMap;
use shirabe_php_shim::{self as php, PhpMixed, PhpResource};
#[derive(Debug)]
pub struct AbstractPipes {
pub pipes: IndexMap<i64, PhpResource>,
input_buffer: String,
input: PhpMixed,
blocked: bool,
last_error: Option<String>,
}
impl AbstractPipes {
pub fn new(input: PhpMixed) -> Self {
let input_buffer;
let stored_input;
// TODO(plugin): `$input instanceof \Iterator` is not modeled. The PHP `is_resource($input)`
// branch never applies: a PhpMixed is never a resource, so input is never stored as-is here.
if let PhpMixed::String(s) = &input {
input_buffer = s.clone();
stored_input = PhpMixed::Null;
} else {
input_buffer = input.as_string().map(|s| s.to_string()).unwrap_or_default();
stored_input = PhpMixed::Null;
}
Self {
pipes: IndexMap::new(),
input_buffer,
input: stored_input,
blocked: true,
last_error: None,
}
}
pub fn close(&mut self) {
for (_, pipe) in &self.pipes {
php::fclose(pipe);
}
self.pipes = IndexMap::new();
}
/// Returns true if a system call has been interrupted.
pub(crate) fn has_system_call_been_interrupted(&mut self) -> bool {
let last_error = self.last_error.take();
// stream_select returns false when the `select` system call is interrupted by an incoming signal
last_error
.map(|e| e.to_lowercase().contains("interrupted system call"))
.unwrap_or(false)
}
/// Unblocks streams.
pub(crate) fn unblock(&mut self) {
if !self.blocked {
return;
}
for (_, pipe) in &self.pipes {
php::stream_set_blocking(pipe, false);
}
// The `is_resource($this->input)` branch does not apply: `input` is never a resource in this
// port (is_resource on a PhpMixed is always false).
self.blocked = false;
}
/// Writes input to stdin.
pub(crate) fn write(&mut self) -> Option<Vec<PhpResource>> {
let stdin = self.pipes.get(&0)?.clone();
// TODO(plugin): the `$input instanceof \Iterator` branch is not modeled. `input` is never a
// resource here, so the fread($input)/stream_set_blocking($input) paths do not apply and
// only the input buffer is written to stdin.
let mut r: Vec<PhpResource> = Vec::new();
let mut e: Vec<PhpResource> = Vec::new();
let mut w: Vec<PhpResource> = vec![stdin.clone()];
// let's have a look if something changed in streams
php::stream_select(&mut r, &mut w, &mut e, 0, Some(0))?;
if !self.input_buffer.is_empty() {
let written = php::fwrite(&stdin, &self.input_buffer, None).unwrap_or(0) as usize;
self.input_buffer = self.input_buffer.get(written..).unwrap_or("").to_string();
if !self.input_buffer.is_empty() {
return Some(vec![stdin]);
}
}
// no input to read on resource, buffer is empty
if self.input_buffer.is_empty() && !php::php_truthy(&self.input) {
self.input = PhpMixed::Null;
php::fclose(&stdin);
self.pipes.shift_remove(&0);
}
None
}
pub fn handle_error(&mut self, _type: i64, msg: String) {
self.last_error = Some(msg);
}
}
|