-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShellTask.php
228 lines (172 loc) · 5.93 KB
/
ShellTask.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<?php
namespace idfly\shellTask;
abstract class ShellTask
{
public static function run($task, $options = [])
{
$isConcurrentRun =
isset($options['concurrent']) &&
$options['concurrent'] === true;
if($isConcurrentRun) {
return ShellTask::_concurrentRun($task, $options);
}
return ShellTask::_blockingRun($task, $options);
}
public static function stop($task)
{
if(!empty($task)) {
$cmd = "pkill -f ^php.*" . escapeshellarg($task);
exec($cmd);
}
}
protected static function _concurrentRun($task, $options)
{
$taskDir = ShellTask::_getTaskDir($task);
if(!file_exists($taskDir)) {
mkdir($taskDir);
}
$taskId = ShellTask::_generateTaskId();
$logFile = ShellTask::_getLogFile($task, $taskId);
$statusFile = ShellTask::_getStatusFile($task, $taskId);
$yiiCmd = ShellTask::_getYiiCommandShellSafe($task, $options);
$flock = 'flock -s ' . escapeshellarg($taskDir) . ' bash -c';
$flockCmd = escapeshellarg(
"echo > " . escapeshellarg($logFile) . " && " .
"echo > " . escapeshellarg($statusFile) . " && " .
"$yiiCmd > " . escapeshellarg($logFile) ." 2>&1; " .
"echo $? > " . escapeshellarg($statusFile)
);
$cmd = "$flock $flockCmd" . ">/dev/null 2>/dev/null &";
exec($cmd);
return $taskId;
}
protected static function _blockingRun($task, $options)
{
$yiiCmd = ShellTask::_getYiiCommandShellSafe($task, $options);
$lockFile = ShellTask::_getLockFile($task);
$logFile = ShellTask::_getLogFile($task);
$statusFile = ShellTask::_getStatusFile($task);
$flock = 'flock -n ' . escapeshellarg($lockFile) . ' bash -c';
$needToAppendToLogs =
isset($options['appendToLogs']) &&
$options['appendToLogs'] === true;
if($needToAppendToLogs) {
exec("echo `date` >> " . escapeshellarg($logFile));
$yiiCmd .= '>';
}
$flockCmd = escapeshellarg(
"echo > " . escapeshellarg($statusFile) . " && " .
"$yiiCmd> " . escapeshellarg($logFile) ." 2>&1; " .
"echo $? > " . escapeshellarg($statusFile)
);
$cmd = "$flock $flockCmd" . ">/dev/null 2>/dev/null &";
exec($cmd);
return $task;
}
public static function getInfo($task, $taskId = null)
{
$info = [];
$logFile = ShellTask::_getLogFile($task, $taskId);
if(file_exists($logFile)) {
$info['log'] = file_get_contents($logFile);
}
$statusFile = ShellTask::_getStatusFile($task, $taskId);
if(file_exists($statusFile)) {
$info['status_code'] = exec("cat $statusFile");
$info['last_modify_date'] = exec(
"stat $statusFile | grep Modify | cut -f2,3 -d' '"
);
}
if(!$taskId) {
$lockFile = ShellTask::_getLockFile($task);
if(file_exists($lockFile)) {
$isTaskRunning =
exec("lsof $lockFile | grep flock | wc -l") === '1';
$info['is_running'] = $isTaskRunning;
if($isTaskRunning) {
$info['processes_count'] = 1;
}
}
} else {
$taskDir = ShellTask::_getTaskDir($task);
$isTaskExists =
file_exists($logFile) &&
file_exists($statusFile);
if($isTaskExists) {
$info['processes_count'] =
exec("lsof $taskDir | grep flock | wc -l");
}
}
return $info;
}
protected static function _getYiiCommandShellSafe($task, $options)
{
$php = 'php';
$timeout = '';
if(isset($options['memoryLimit'])) {
$php .= ' -d memory_limit=' .
escapeshellarg($options['memoryLimit']);
}
if(isset($options['timeout'])) {
$timeout = 'timeout ' . escapeshellarg($options['timeout']);
}
$isValidArgs =
isset($options['args']) &&
is_array($options['args']);
$args = '';
if($isValidArgs) {
foreach($options['args'] as $argument) {
$args .= ' ' . escapeshellarg($argument);
}
}
$yii = \yii::getAlias('@app/yii');
return "$timeout $php $yii " . escapeshellarg($task) . " $args";
}
protected static function _getTaskDir($task)
{
return ShellTask::_getTaskFile($task) . '.async';
}
protected static function _getTasksPath()
{
$path = \yii::getAlias('@app/runtime/tasks');
if(!file_exists($path)) {
mkdir($path);
chmod($path, 0740);
}
return $path;
}
protected static function _getTaskFile($task)
{
return
ShellTask::_getTasksPath() . '/' .
str_replace('/', '--', $task);
}
protected static function _generateTaskId()
{
return md5(microtime(true));
}
protected static function _getStatusFile($task, $taskId = null)
{
if($taskId === null) {
return ShellTask::_getTaskFile($task) . '.status';
}
$taskDir = ShellTask::_getTaskDir($task);
$taskFile = $taskDir . '/' . $taskId;
$statusFile = $taskFile . '.status';
return $statusFile;
}
protected static function _getLogFile($task, $taskId = null)
{
if($taskId === null) {
return ShellTask::_getTaskFile($task) . '.log';
}
$taskDir = ShellTask::_getTaskDir($task);
$taskFile = $taskDir . '/' . $taskId;
$logFile = $taskFile . '.log';
return $logFile;
}
protected static function _getLockFile($task)
{
return ShellTask::_getTaskFile($task) . '.lock';
}
}