|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Cerbero\LazyJsonPages\Services; |
|
4
|
|
|
|
|
5
|
|
|
use Generator; |
|
6
|
|
|
use Psr\Http\Message\ResponseInterface; |
|
7
|
|
|
|
|
8
|
|
|
/** |
|
9
|
|
|
* The collector of pages. |
|
10
|
|
|
*/ |
|
11
|
|
|
final class Book |
|
12
|
|
|
{ |
|
13
|
|
|
/** |
|
14
|
|
|
* The HTTP responses of the fetched pages. |
|
15
|
|
|
* |
|
16
|
|
|
* @var array<int, ResponseInterface> |
|
17
|
|
|
*/ |
|
18
|
|
|
private array $pages = []; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* The pages unable to be fetched. |
|
22
|
|
|
* |
|
23
|
|
|
* @var int[] |
|
24
|
|
|
*/ |
|
25
|
|
|
private array $failedPages = []; |
|
26
|
|
|
|
|
27
|
|
|
/** |
|
28
|
|
|
* Add the HTTP response of the given page. |
|
29
|
|
|
*/ |
|
30
|
38 |
|
public function addPage(int $page, ResponseInterface $response): self |
|
31
|
|
|
{ |
|
32
|
38 |
|
$this->pages[$page] = $response; |
|
33
|
|
|
|
|
34
|
38 |
|
return $this; |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* Yield and forget each page. |
|
39
|
|
|
* |
|
40
|
|
|
* @return Generator<int, ResponseInterface> |
|
41
|
|
|
*/ |
|
42
|
38 |
|
public function pullPages(): Generator |
|
43
|
|
|
{ |
|
44
|
38 |
|
ksort($this->pages); |
|
45
|
|
|
|
|
46
|
38 |
|
foreach ($this->pages as $page => $response) { |
|
47
|
38 |
|
yield $response; |
|
48
|
|
|
|
|
49
|
38 |
|
unset($this->pages[$page]); |
|
50
|
|
|
} |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
/** |
|
54
|
|
|
* Add the given failed page. |
|
55
|
|
|
*/ |
|
56
|
1 |
|
public function addFailedPage(int $page): self |
|
57
|
|
|
{ |
|
58
|
1 |
|
$this->failedPages[] = $page; |
|
59
|
|
|
|
|
60
|
1 |
|
return $this; |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
/** |
|
64
|
|
|
* Retrieve and unset the failed pages. |
|
65
|
|
|
* |
|
66
|
|
|
* @return array<int, int> |
|
67
|
|
|
*/ |
|
68
|
1 |
|
public function pullFailedPages(): array |
|
69
|
|
|
{ |
|
70
|
1 |
|
$failedPages = $this->failedPages; |
|
71
|
|
|
|
|
72
|
1 |
|
$this->failedPages = []; |
|
73
|
|
|
|
|
74
|
1 |
|
return $failedPages; |
|
75
|
|
|
} |
|
76
|
|
|
|
|
77
|
|
|
/** |
|
78
|
|
|
* Retrieve and unset the oldest failed page. |
|
79
|
|
|
*/ |
|
80
|
39 |
|
public function pullFailedPage(): ?int |
|
81
|
|
|
{ |
|
82
|
39 |
|
return array_shift($this->failedPages); |
|
83
|
|
|
} |
|
84
|
|
|
} |
|
85
|
|
|
|