-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathProcessController.php
133 lines (109 loc) · 3.67 KB
/
ProcessController.php
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
<?php declare(strict_types=1);
/**
* The file is part of inhere/console
*
* @author https://github.com/inhere
* @homepage https://github.com/inhere/php-console
* @license https://github.com/inhere/php-console/blob/master/LICENSE
*/
namespace Inhere\Console\Examples\Controller;
use Inhere\Console\Controller;
use RuntimeException;
use Toolkit\Sys\Proc\ProcessUtil;
use Toolkit\Sys\Sys;
use function is_resource;
/**
* Class ProcessController
* @package Inhere\Console\Examples\Controller
*/
class ProcessController extends Controller
{
protected static string $name = 'process';
protected static string $desc = 'Some simple process to create and use examples';
protected static function commandAliases(): array
{
return [
'cpr' => 'childProcess',
'mpr' => 'multiProcess',
'dr' => 'daemonRun',
'rs' => 'runScript',
'rb' => 'runInBackground',
];
}
/**
* simple process example for child-process
*/
public function runScriptCommand(): void
{
/*$script = '<?php echo "foo"; ?>';*/
$script = '<?php print_r($_SERVER); ?>';
// $tmpDir = CliUtil::getTempDir();
// $tmpFile = $tmpDir . '/' . md5($script) . '.php';
// file_put_contents($tmpFile, $script);
$descriptorSpec = [
0 => ['pipe', 'r'], // 标准输入,子进程从此管道中读取数据
1 => ['pipe', 'w'], // 标准输出,子进程向此管道中写入数据
2 => ['file', $this->app->getRootPath() . '/examples/tmp/error-output.log', 'a'] // 标准错误,写入到一个文件
];
$process = proc_open('php', $descriptorSpec, $pipes);
if (is_resource($process)) {
// $pipes 现在看起来是这样的:
// 0 => 可以向子进程标准输入写入的句柄
// 1 => 可以从子进程标准输出读取的句柄
// 错误输出将被追加到文件 error-output.txt
fwrite($pipes[0], $script);
fclose($pipes[0]);
$result = stream_get_contents($pipes[1]);
fclose($pipes[1]);
$this->write("RESULT:\n" . $result);
// 切记:在调用 proc_close 之前关闭所有的管道以避免死锁。
$retVal = proc_close($process);
echo "command returned $retVal\n";
}
}
/**
* simple process example for child-process
*/
public function childProcessCommand(): void
{
$ret = ProcessUtil::create(function ($pid): void {
echo "print in process $pid";
sleep(5);
});
if ($ret === false) {
$this->output->liteError('current env is not support process create.');
}
}
/**
* simple process example for daemon run
* @throws RuntimeException
*/
public function daemonRunCommand(): void
{
$ret = ProcessUtil::daemonRun(function ($pid): void {
$this->output->info("will running background by new process: $pid");
});
if ($ret === 0) {
$this->output->liteError('current env is not support process create.');
}
}
/**
* simple process example for run In Background
*/
public function runInBackgroundCommand(): void
{
$script = '<?php print_r($_SERVER); ?>';
$ret = Sys::execInBackground("php $script");
if ($ret === false) {
$this->output->liteError('current env is not support process create.');
}
}
/**
* simple process example for multi-process
* @options
*
*/
public function multiProcessCommand(): void
{
}
}