1
|
|
|
<?php |
|
|
|
|
2
|
|
|
|
3
|
|
|
namespace ClickHouseDB\Transport; |
4
|
|
|
|
5
|
|
|
use ClickHouseDB\Exception\TransportException; |
6
|
|
|
|
7
|
|
|
class CurlerRolling |
8
|
|
|
{ |
9
|
|
|
const SLEEP_DELAY = 1000; // 1ms |
|
|
|
|
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* @var int |
13
|
|
|
* |
14
|
|
|
* Max number of simultaneous requests. |
15
|
|
|
*/ |
16
|
|
|
private $simultaneousLimit = 10; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* @var array |
|
|
|
|
20
|
|
|
* |
21
|
|
|
* Requests currently being processed by curl |
22
|
|
|
*/ |
23
|
|
|
private $activeRequests = []; |
24
|
|
|
|
25
|
|
|
/** |
|
|
|
|
26
|
|
|
* @var int |
27
|
|
|
*/ |
28
|
|
|
private $runningRequests = 0; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* @var CurlerRequest[] |
32
|
|
|
* |
33
|
|
|
* Requests queued to be processed |
34
|
|
|
*/ |
35
|
|
|
private $pendingRequests = []; |
36
|
|
|
|
37
|
|
|
/** |
|
|
|
|
38
|
|
|
* @return int |
39
|
|
|
*/ |
40
|
|
|
private $completedRequestCount = 0; |
|
|
|
|
41
|
|
|
|
42
|
|
|
/** |
|
|
|
|
43
|
|
|
* @var null|resource |
|
|
|
|
44
|
|
|
*/ |
45
|
|
|
private $_pool_master = null; |
|
|
|
|
46
|
|
|
|
47
|
|
|
/** |
|
|
|
|
48
|
|
|
* @var int |
49
|
|
|
*/ |
50
|
|
|
private $waitRequests = 0; |
51
|
|
|
|
52
|
|
|
/** |
|
|
|
|
53
|
|
|
* @var array |
|
|
|
|
54
|
|
|
*/ |
55
|
|
|
private $handleMapTasks = []; |
56
|
|
|
|
57
|
|
|
/** |
|
|
|
|
58
|
|
|
* |
59
|
|
|
*/ |
60
|
|
|
public function __destruct() |
|
|
|
|
61
|
|
|
{ |
62
|
|
|
$this->close(); |
63
|
|
|
} |
|
|
|
|
64
|
|
|
|
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* @return resource |
68
|
|
|
*/ |
69
|
10 |
|
private function handlerMulti() |
70
|
|
|
{ |
71
|
10 |
|
if (!$this->_pool_master) { |
|
|
|
|
72
|
10 |
|
$this->_pool_master = curl_multi_init(); |
|
|
|
|
73
|
|
|
|
74
|
10 |
|
if (function_exists('curl_multi_setopt')) { |
|
|
|
|
75
|
10 |
|
curl_multi_setopt($this->_pool_master, CURLMOPT_MAXCONNECTS, $this->simultaneousLimit); |
|
|
|
|
76
|
|
|
} |
77
|
|
|
} |
78
|
|
|
|
79
|
10 |
|
return $this->_pool_master; |
|
|
|
|
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
/** |
|
|
|
|
83
|
|
|
* |
84
|
|
|
*/ |
85
|
|
|
public function close() |
|
|
|
|
86
|
|
|
{ |
87
|
|
|
if ($this->_pool_master) { |
|
|
|
|
88
|
|
|
curl_multi_close($this->handlerMulti()); |
|
|
|
|
89
|
|
|
} |
90
|
|
|
} |
|
|
|
|
91
|
|
|
|
92
|
|
|
|
93
|
|
|
/** |
94
|
|
|
* @param CurlerRequest $req |
|
|
|
|
95
|
|
|
* @param bool $checkMultiAdd |
|
|
|
|
96
|
|
|
* @param bool $force |
|
|
|
|
97
|
|
|
* @return bool |
98
|
|
|
* @throws TransportException |
99
|
|
|
*/ |
100
|
15 |
|
public function addQueLoop(CurlerRequest $req, $checkMultiAdd = true, $force = false) |
|
|
|
|
101
|
|
|
{ |
102
|
15 |
|
$id = $req->getId(); |
103
|
|
|
|
104
|
15 |
|
if (!$id) { |
|
|
|
|
105
|
15 |
|
$id = $req->getUniqHash($this->completedRequestCount); |
106
|
|
|
} |
107
|
|
|
|
108
|
15 |
|
if (!$force && isset($this->pendingRequests[$id])) { |
|
|
|
|
109
|
|
|
if (!$checkMultiAdd) { |
|
|
|
|
110
|
|
|
return false; |
111
|
|
|
} |
112
|
|
|
|
113
|
|
|
throw new TransportException("Cant add exists que - cant overwrite : $id!\n"); |
|
|
|
|
114
|
|
|
} |
115
|
|
|
|
116
|
15 |
|
$this->pendingRequests[$id] = $req; |
117
|
15 |
|
return true; |
|
|
|
|
118
|
|
|
} |
119
|
|
|
|
120
|
|
|
/** |
121
|
|
|
* @param resource $oneHandle |
|
|
|
|
122
|
|
|
* @return CurlerResponse |
123
|
|
|
*/ |
124
|
49 |
|
private function makeResponse($oneHandle) |
|
|
|
|
125
|
|
|
{ |
126
|
49 |
|
$response = curl_multi_getcontent($oneHandle); |
|
|
|
|
127
|
49 |
|
$header_size = curl_getinfo($oneHandle, CURLINFO_HEADER_SIZE); |
|
|
|
|
128
|
49 |
|
$header = substr($response ?? '', 0, $header_size); |
|
|
|
|
129
|
49 |
|
$body = substr($response ?? '', $header_size); |
|
|
|
|
130
|
|
|
|
131
|
49 |
|
$n = new CurlerResponse(); |
|
|
|
|
132
|
49 |
|
$n->_headers = $this->parse_headers_from_curl_response($header); |
133
|
49 |
|
$n->_body = $body; |
|
|
|
|
134
|
49 |
|
$n->_info = curl_getinfo($oneHandle); |
|
|
|
|
135
|
49 |
|
$n->_error = curl_error($oneHandle); |
|
|
|
|
136
|
49 |
|
$n->_errorNo = curl_errno($oneHandle); |
|
|
|
|
137
|
49 |
|
$n->_useTime = 0; |
138
|
|
|
|
139
|
49 |
|
return $n; |
140
|
|
|
} |
141
|
|
|
|
142
|
|
|
/** |
143
|
|
|
* @return bool |
|
|
|
|
144
|
|
|
* @throws TransportException |
145
|
|
|
*/ |
146
|
10 |
|
public function execLoopWait() |
|
|
|
|
147
|
|
|
{ |
148
|
|
|
do { |
149
|
10 |
|
$this->exec(); |
150
|
10 |
|
usleep(self::SLEEP_DELAY); |
|
|
|
|
151
|
10 |
|
} while (($this->countActive() + $this->countPending()) > 0); |
|
|
|
|
152
|
|
|
|
153
|
10 |
|
return true; |
154
|
|
|
} |
155
|
|
|
|
156
|
|
|
/** |
157
|
|
|
* @param string $response |
|
|
|
|
158
|
|
|
* @return array |
|
|
|
|
159
|
|
|
*/ |
160
|
49 |
|
private function parse_headers_from_curl_response($response) |
|
|
|
|
161
|
|
|
{ |
162
|
49 |
|
$headers = []; |
|
|
|
|
163
|
49 |
|
$header_text = $response; |
|
|
|
|
164
|
|
|
|
165
|
49 |
|
foreach (explode("\r\n", $header_text) as $i => $line) { |
|
|
|
|
166
|
49 |
|
if ($i === 0) { |
167
|
49 |
|
$headers['http_code'] = $line; |
168
|
|
|
} else { |
169
|
48 |
|
$r = explode(': ', $line); |
|
|
|
|
170
|
48 |
|
if (sizeof($r) == 2) { |
|
|
|
|
171
|
48 |
|
$headers[$r[0]] = $r[1]; |
172
|
|
|
} |
173
|
|
|
} |
174
|
|
|
} |
175
|
|
|
|
176
|
49 |
|
return $headers; |
177
|
|
|
} |
178
|
|
|
|
179
|
|
|
/** |
180
|
|
|
* @return int |
181
|
|
|
*/ |
182
|
14 |
|
public function countPending() |
|
|
|
|
183
|
|
|
{ |
184
|
14 |
|
return sizeof($this->pendingRequests); |
|
|
|
|
185
|
|
|
} |
186
|
|
|
|
187
|
|
|
/** |
188
|
|
|
* @return int |
189
|
|
|
*/ |
190
|
10 |
|
public function countActive() |
|
|
|
|
191
|
|
|
{ |
192
|
10 |
|
return count($this->activeRequests); |
|
|
|
|
193
|
|
|
} |
194
|
|
|
|
195
|
|
|
/** |
196
|
|
|
* @return int |
197
|
|
|
*/ |
198
|
|
|
public function countCompleted() |
|
|
|
|
199
|
|
|
{ |
200
|
|
|
return $this->completedRequestCount; |
201
|
|
|
} |
202
|
|
|
|
203
|
|
|
/** |
204
|
|
|
* Set the limit for how many cURL requests will be execute simultaneously. |
205
|
|
|
* |
206
|
|
|
* Please be mindful that if you set this too high, requests are likely to fail |
207
|
|
|
* more frequently or automated software may perceive you as a DOS attack and |
208
|
|
|
* automatically block further requests. |
209
|
|
|
* |
210
|
|
|
* @param int $count |
|
|
|
|
211
|
|
|
* @throws \InvalidArgumentException |
|
|
|
|
212
|
|
|
* @return $this |
213
|
|
|
*/ |
214
|
|
|
public function setSimultaneousLimit($count) |
|
|
|
|
215
|
|
|
{ |
216
|
|
|
if (!is_int($count) || $count < 2) { |
|
|
|
|
217
|
|
|
throw new \InvalidArgumentException("setSimultaneousLimit count must be an int >= 2"); |
|
|
|
|
218
|
|
|
} |
219
|
|
|
|
220
|
|
|
$this->simultaneousLimit = $count; |
221
|
|
|
return $this; |
|
|
|
|
222
|
|
|
} |
223
|
|
|
|
224
|
|
|
/** |
225
|
|
|
* @return int |
226
|
|
|
*/ |
227
|
10 |
|
public function getSimultaneousLimit() |
|
|
|
|
228
|
|
|
{ |
229
|
10 |
|
return $this->simultaneousLimit; |
230
|
|
|
} |
231
|
|
|
|
232
|
|
|
/** |
233
|
|
|
* @return int |
234
|
|
|
*/ |
235
|
|
|
public function getRunningRequests() |
|
|
|
|
236
|
|
|
{ |
237
|
|
|
return $this->runningRequests; |
238
|
|
|
} |
239
|
|
|
|
240
|
|
|
/** |
241
|
|
|
* @param CurlerRequest $request |
|
|
|
|
242
|
|
|
* @param bool $auto_close |
|
|
|
|
243
|
|
|
* @return mixed |
244
|
|
|
* @throws TransportException |
245
|
|
|
*/ |
246
|
49 |
|
public function execOne(CurlerRequest $request, $auto_close = false) |
|
|
|
|
247
|
|
|
{ |
248
|
49 |
|
$h = $request->handle(); |
249
|
49 |
|
curl_exec($h); |
|
|
|
|
250
|
|
|
|
251
|
49 |
|
$request->setResponse($this->makeResponse($h)); |
|
|
|
|
252
|
|
|
|
253
|
49 |
|
if ($auto_close) { |
|
|
|
|
254
|
4 |
|
$request->close(); |
255
|
|
|
} |
256
|
|
|
|
257
|
49 |
|
return $request->response()->http_code(); |
258
|
|
|
} |
259
|
|
|
|
260
|
|
|
/** |
261
|
|
|
* @return string |
262
|
|
|
*/ |
263
|
|
|
public function getInfo() |
|
|
|
|
264
|
|
|
{ |
265
|
|
|
return "runningRequests = {$this->runningRequests} , pending=" . sizeof($this->pendingRequests) . " "; |
|
|
|
|
266
|
|
|
} |
267
|
|
|
|
268
|
|
|
/** |
269
|
|
|
* @throws TransportException |
270
|
|
|
*/ |
271
|
10 |
|
public function exec() |
|
|
|
|
272
|
|
|
{ |
273
|
10 |
|
$this->makePendingRequestsQue(); |
274
|
|
|
|
275
|
|
|
// ensure we're running |
276
|
|
|
// a request was just completed -- find out which one |
277
|
|
|
|
278
|
10 |
|
while (($execrun = curl_multi_exec($this->handlerMulti(), $running)) == CURLM_CALL_MULTI_PERFORM); |
|
|
|
|
279
|
|
|
|
280
|
10 |
|
if ($execrun != CURLM_OK) { |
|
|
|
|
281
|
|
|
throw new TransportException("[ NOT CURLM_OK ]"); |
|
|
|
|
282
|
|
|
} |
283
|
|
|
|
284
|
10 |
|
$this->runningRequests = $running; |
285
|
|
|
|
286
|
10 |
|
while ($done = curl_multi_info_read($this->handlerMulti())) { |
|
|
|
|
287
|
10 |
|
$response = $this->makeResponse($done['handle']); |
288
|
|
|
|
289
|
|
|
// send the return values to the callback function. |
290
|
|
|
|
|
|
|
|
291
|
|
|
|
292
|
10 |
|
if (is_object($done['handle'])) { |
|
|
|
|
293
|
|
|
$key = spl_object_id( $done['handle'] ); |
|
|
|
|
294
|
|
|
} else { |
295
|
10 |
|
$key = (string) $done['handle'] ; |
|
|
|
|
296
|
|
|
} |
297
|
|
|
|
298
|
10 |
|
$task_id = $this->handleMapTasks[$key]; |
|
|
|
|
299
|
10 |
|
$request = $this->pendingRequests[$this->handleMapTasks[$key]]; |
300
|
|
|
|
301
|
10 |
|
unset($this->handleMapTasks[$key]); |
302
|
10 |
|
unset($this->activeRequests[$task_id]); |
|
|
|
|
303
|
|
|
|
304
|
10 |
|
$this->pendingRequests[$task_id]->setResponse($response); |
|
|
|
|
305
|
10 |
|
$this->pendingRequests[$task_id]->onCallback(); |
|
|
|
|
306
|
|
|
|
|
|
|
|
307
|
|
|
|
308
|
10 |
|
if (!$request->isPersistent()) { |
|
|
|
|
309
|
10 |
|
unset($this->pendingRequests[$task_id]); |
|
|
|
|
310
|
|
|
} |
311
|
|
|
|
312
|
10 |
|
$this->completedRequestCount++; |
313
|
|
|
|
314
|
|
|
// remove the curl handle that just completed |
315
|
10 |
|
curl_multi_remove_handle($this->handlerMulti(), $done['handle']); |
|
|
|
|
316
|
|
|
|
317
|
|
|
// if something was requeued, this will get it running/update our loop check values |
318
|
10 |
|
$status = curl_multi_exec($this->handlerMulti(), $active); |
|
|
|
|
319
|
|
|
} |
320
|
|
|
|
321
|
|
|
// see if there is anything to read |
322
|
10 |
|
curl_multi_select($this->handlerMulti(), 0.01); |
|
|
|
|
323
|
10 |
|
return $this->countActive(); |
|
|
|
|
324
|
|
|
} |
325
|
|
|
|
326
|
10 |
|
public function makePendingRequestsQue() |
|
|
|
|
327
|
|
|
{ |
328
|
10 |
|
$max = $this->getSimultaneousLimit(); |
|
|
|
|
329
|
10 |
|
$active = $this->countActive(); |
330
|
|
|
|
|
|
|
|
331
|
|
|
|
332
|
10 |
|
if ($active < $max) { |
333
|
10 |
|
$canAdd = $max - $active; |
334
|
|
|
// $pending = sizeof($this->pendingRequests); |
335
|
|
|
|
336
|
10 |
|
$add = []; |
337
|
|
|
|
|
|
|
|
338
|
|
|
|
339
|
10 |
|
foreach ($this->pendingRequests as $task_id => $params) { |
|
|
|
|
340
|
10 |
|
if (empty($this->activeRequests[$task_id])) { |
|
|
|
|
341
|
10 |
|
$add[$task_id] = $task_id; |
|
|
|
|
342
|
|
|
} |
343
|
|
|
} |
344
|
|
|
|
|
|
|
|
345
|
|
|
|
346
|
10 |
|
if (sizeof($add)) { |
|
|
|
|
347
|
10 |
|
if ($canAdd >= sizeof($add)) { |
|
|
|
|
348
|
10 |
|
$ll = $add; |
349
|
|
|
} else { |
350
|
1 |
|
$ll = array_rand($add, $canAdd); |
|
|
|
|
351
|
1 |
|
if (!is_array($ll)) { |
|
|
|
|
352
|
1 |
|
$ll = array($ll => $ll); |
|
|
|
|
353
|
|
|
} |
354
|
|
|
} |
355
|
|
|
|
356
|
10 |
|
foreach ($ll as $task_id) { |
|
|
|
|
357
|
10 |
|
$this->_prepareLoopQue($task_id); |
|
|
|
|
358
|
|
|
} |
359
|
|
|
}// if add |
360
|
|
|
}// if can add |
361
|
10 |
|
} |
362
|
|
|
|
363
|
|
|
/** |
364
|
|
|
* @param string $task_id |
365
|
|
|
*/ |
366
|
10 |
|
private function _prepareLoopQue($task_id) |
|
|
|
|
367
|
|
|
{ |
368
|
10 |
|
$this->activeRequests[$task_id] = 1; |
|
|
|
|
369
|
10 |
|
$this->waitRequests++; |
370
|
|
|
|
371
|
10 |
|
$h = $this->pendingRequests[$task_id]->handle(); |
|
|
|
|
372
|
|
|
|
373
|
|
|
// pool |
374
|
10 |
|
curl_multi_add_handle($this->handlerMulti(), $h); |
|
|
|
|
375
|
|
|
|
376
|
10 |
|
if (is_object($h)) { |
|
|
|
|
377
|
|
|
$key = spl_object_id( $h ); |
|
|
|
|
378
|
|
|
} else { |
379
|
10 |
|
$key = (string) $h ; |
|
|
|
|
380
|
|
|
} |
381
|
|
|
|
382
|
10 |
|
$this->handleMapTasks[$key] = $task_id; |
|
|
|
|
383
|
10 |
|
} |
384
|
|
|
} |
385
|
|
|
|