forked from symfony/messenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnvelope.php
130 lines (109 loc) · 3.12 KB
/
Envelope.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
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Messenger;
use Symfony\Component\Messenger\Stamp\StampInterface;
/**
* A message wrapped in an envelope with stamps (configurations, markers, ...).
*
* @author Maxime Steinhausser <[email protected]>
*/
final class Envelope
{
/**
* @var array<class-string<StampInterface>, list<StampInterface>>
*/
private array $stamps = [];
private object $message;
/**
* @param object|Envelope $message
* @param StampInterface[] $stamps
*/
public function __construct(object $message, array $stamps = [])
{
$this->message = $message;
foreach ($stamps as $stamp) {
$this->stamps[$stamp::class][] = $stamp;
}
}
/**
* Makes sure the message is in an Envelope and adds the given stamps.
*
* @param StampInterface[] $stamps
*/
public static function wrap(object $message, array $stamps = []): self
{
$envelope = $message instanceof self ? $message : new self($message);
return $envelope->with(...$stamps);
}
/**
* Adds one or more stamps.
*/
public function with(StampInterface ...$stamps): static
{
$cloned = clone $this;
foreach ($stamps as $stamp) {
$cloned->stamps[$stamp::class][] = $stamp;
}
return $cloned;
}
/**
* Removes all stamps of the given class.
*/
public function withoutAll(string $stampFqcn): static
{
$cloned = clone $this;
unset($cloned->stamps[$stampFqcn]);
return $cloned;
}
/**
* Removes all stamps that implement the given type.
*/
public function withoutStampsOfType(string $type): self
{
$cloned = clone $this;
foreach ($cloned->stamps as $class => $stamps) {
if ($class === $type || is_subclass_of($class, $type)) {
unset($cloned->stamps[$class]);
}
}
return $cloned;
}
/**
* @template TStamp of StampInterface
*
* @param class-string<TStamp> $stampFqcn
*
* @return TStamp|null
*/
public function last(string $stampFqcn): ?StampInterface
{
return isset($this->stamps[$stampFqcn]) ? end($this->stamps[$stampFqcn]) : null;
}
/**
* @template TStamp of StampInterface
*
* @param class-string<TStamp>|null $stampFqcn
*
* @return StampInterface[]|StampInterface[][] The stamps for the specified FQCN, or all stamps by their class name
*
* @psalm-return ($stampFqcn is string : array<class-string<StampInterface>, list<StampInterface>> ? list<TStamp>)
*/
public function all(?string $stampFqcn = null): array
{
if (null !== $stampFqcn) {
return $this->stamps[$stampFqcn] ?? [];
}
return $this->stamps;
}
public function getMessage(): object
{
return $this->message;
}
}