-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathManager.php
158 lines (138 loc) · 4.22 KB
/
Manager.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
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
<?php
namespace EasySwoole\Component\Process;
use EasySwoole\Component\Singleton;
use Swoole\Process;
use Swoole\Server;
use Swoole\Table;
class Manager
{
use Singleton;
/** @var AbstractProcess[] $processList */
protected $processList = [];
protected $autoRegister = [];
protected $table;
public function __construct()
{
$this->table = new Table(2048);
$this->table->column('pid', Table::TYPE_INT, 8);
$this->table->column('name', Table::TYPE_STRING, 50);
$this->table->column('group', Table::TYPE_STRING, 50);
$this->table->column('memoryUsage', Table::TYPE_INT, 8);
$this->table->column('memoryPeakUsage', Table::TYPE_INT, 8);
$this->table->column('startUpTime', Table::TYPE_INT, 8);
$this->table->column('hash', Table::TYPE_STRING, 32);
$this->table->create();
}
public function getProcessTable(): Table
{
return $this->table;
}
public function getProcessByPid(int $pid): ?AbstractProcess
{
$info = $this->table->get($pid);
if($info){
$hash = $info['hash'];
if(isset($this->processList[$hash])){
return $this->processList[$hash];
}
}
return null;
}
public function getProcessByName(string $name): array
{
$ret = [];
foreach ($this->processList as $process) {
if ($process->getProcessName() === $name) {
$ret[] = $process;
}
}
return $ret;
}
public function getProcessByGroup(string $group): array
{
$ret = [];
foreach ($this->processList as $process) {
if ($process->getConfig()->getProcessGroup() === $group) {
$ret[] = $process;
}
}
return $ret;
}
public function kill($pidOrGroupName, $sig = SIGTERM): array
{
$list = [];
if (is_numeric($pidOrGroupName)) {
$info = $this->table->get($pidOrGroupName);
if ($info) {
$list[$pidOrGroupName] = $pidOrGroupName;
}
} else {
foreach ($this->table as $key => $value) {
if ($value['group'] == $pidOrGroupName) {
$list[$key] = $value;
}
}
}
$this->clearPid($list);
foreach ($list as $pid => $value) {
Process::kill($pid, $sig);
}
return $list;
}
public function info($pidOrGroupName = null)
{
$list = [];
if ($pidOrGroupName == null) {
foreach ($this->table as $pid => $value) {
$list[$pid] = $value;
}
} else if (is_numeric($pidOrGroupName)) {
$info = $this->table->get($pidOrGroupName);
if ($info) {
$list[$pidOrGroupName] = $info;
}
} else {
foreach ($this->table as $key => $value) {
if ($value['group'] == $pidOrGroupName) {
$list[$key] = $value;
}
}
}
$sort = array_column($list, 'group');
array_multisort($sort, SORT_DESC, $list);
foreach ($list as $key => $value) {
unset($list[$key]);
$list[$value['pid']] = $value;
}
return $this->clearPid($list);
}
public function addProcess(AbstractProcess $process, bool $autoRegister = true): Manager
{
$hash = spl_object_hash($process->getProcess());
$this->autoRegister[$hash] = $autoRegister;
$this->processList[$hash] = $process;
return $this;
}
public function attachToServer(Server $server)
{
foreach ($this->processList as $hash => $process) {
if ($this->autoRegister[$hash] === true) {
$server->addProcess($process->getProcess());
}
}
}
public function pidExist(int $pid)
{
return Process::kill($pid, 0);
}
protected function clearPid(array $list)
{
foreach ($list as $pid => $value) {
if (!$this->pidExist($pid)) {
$this->table->del($pid);
unset($list[$pid]);
}
}
return $list;
}
}