-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoundRobinTransport.php
142 lines (117 loc) · 3.79 KB
/
RoundRobinTransport.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
<?php
/*
* This file is part of the Klipper package.
*
* (c) François Pluchino <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Klipper\Component\SmsSender\Transport;
use Klipper\Component\SmsSender\Envelope;
use Klipper\Component\SmsSender\Exception\TransportException;
use Klipper\Component\SmsSender\Exception\TransportExceptionInterface;
use Klipper\Component\SmsSender\SentMessage;
use Symfony\Component\Mime\RawMessage;
/**
* Pretends messages have been sent, but just ignores them.
*
* @author François Pluchino <[email protected]>
*/
class RoundRobinTransport implements TransportInterface
{
private \SplObjectStorage $deadTransports;
/**
* @var TransportInterface[]
*/
private array $transports;
private int $retryPeriod;
private int $cursor = 0;
/**
* @param TransportInterface[] $transports The transports
* @param int $retryPeriod The retry period
*/
public function __construct(array $transports, int $retryPeriod = 60)
{
if (empty($transports)) {
throw new TransportException(static::class.' must have at least one transport configured.');
}
$this->transports = $transports;
$this->deadTransports = new \SplObjectStorage();
$this->retryPeriod = $retryPeriod;
}
public function getName(): string
{
return implode(' '.$this->getNameSymbol().' ', array_map(static function (TransportInterface $transport) {
return $transport->getName();
}, $this->transports));
}
public function send(RawMessage $message, Envelope $envelope = null): ?SentMessage
{
while ($transport = $this->getNextTransport()) {
try {
return $transport->send($message, $envelope);
} catch (TransportExceptionInterface $e) {
$this->deadTransports[$transport] = microtime(true);
}
}
throw new TransportException('All transports failed.');
}
public function hasRequiredFrom(): bool
{
foreach ($this->transports as $transport) {
if ($transport->hasRequiredFrom()) {
return true;
}
}
return false;
}
/**
* Get the name symbol.
*/
protected function getNameSymbol(): string
{
return '&&';
}
/**
* Rotates the transport list around and returns the first instance.
*/
protected function getNextTransport(): ?TransportInterface
{
$cursor = $this->cursor;
$transport = null;
while (true) {
$transport = $this->transports[$cursor];
if (!$this->isTransportDead($transport)) {
break;
}
if ((microtime(true) - $this->deadTransports[$transport]) > $this->retryPeriod) {
$this->deadTransports->detach($transport);
break;
}
if ($this->cursor === $cursor = $this->moveCursor($cursor)) {
return null;
}
}
$this->cursor = $this->moveCursor($cursor);
return $transport;
}
/**
* Check if the transport is dead.
*
* @param TransportInterface $transport The transport
*/
protected function isTransportDead(TransportInterface $transport): bool
{
return $this->deadTransports->contains($transport);
}
/**
* Move the cursor on the next transport, or the first transport if all transports are tested.
*
* @param int $cursor The cursor position
*/
private function moveCursor(int $cursor): int
{
return ++$cursor >= \count($this->transports) ? 0 : $cursor;
}
}