-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathActivityReader.php
More file actions
196 lines (161 loc) · 5.9 KB
/
ActivityReader.php
File metadata and controls
196 lines (161 loc) · 5.9 KB
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
<?php
/**
* This file is part of Temporal package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Temporal\Internal\Declaration\Reader;
use Temporal\Activity\ActivityInterface;
use Temporal\Activity\ActivityMethod;
use Temporal\Common\MethodRetry;
use Temporal\Internal\Declaration\Graph\ClassNode;
use Temporal\Internal\Declaration\Prototype\ActivityPrototype;
/**
* @template-extends Reader<ActivityPrototype>
*/
class ActivityReader extends Reader
{
/**
* @var string
*/
private const ERROR_BAD_DECLARATION =
'An Activity method can only be a public non-static method, ' .
'but %s::%s() does not meet these criteria';
/**
* @var string
*/
private const ERROR_DECLARATION_DUPLICATION =
'An Activity method %s::%s() with the same name "%s" has already ' .
'been previously registered in %s:%d';
/**
* @param class-string $class
* @return array<ActivityPrototype>
* @throws \ReflectionException
*/
public function fromClass(string $class): array
{
return $this->getActivityPrototypes(new \ReflectionClass($class));
}
/**
* @return array<ActivityPrototype>
* @throws \ReflectionException
*/
protected function getActivityPrototypes(\ReflectionClass $class): array
{
$ctx = new ClassNode($class);
$prototypes = [];
foreach ($class->getMethods() as $reflection) {
foreach ($this->getMethodGroups($ctx, $reflection) as $name => $prototype) {
$this->assertActivityNotExists($name, $prototypes, $class, $reflection);
$prototypes[$name] = $prototype;
}
}
return \array_values($prototypes);
}
/**
* @return array<ActivityPrototype>
* @throws \ReflectionException
*/
private function getMethodGroups(ClassNode $graph, \ReflectionMethod $root): array
{
$previousRetry = null;
// Activity prototypes
$prototypes = [];
//
// We begin to read all available methods in the reverse hierarchical
// order (from internal to external).
//
// For Example:
// class ChildClass extends ParentClass { ... }
//
// Group Result:
// - ParentClass::method()
// - ChildClass::method()
//
foreach ($graph->getMethods($root->getName()) as $group) {
//
$contextualRetry = $previousRetry;
//
// Each group of methods means one level of hierarchy in the
// inheritance graph.
//
/** @var ClassNode $ctx */
foreach ($group as $ctx => $method) {
/** @var MethodRetry $retry */
$retry = $this->reader->firstFunctionMetadata($method, MethodRetry::class);
if ($retry !== null) {
// Update current retry from previous value
if ($previousRetry instanceof MethodRetry) {
$retry = $retry->mergeWith($previousRetry);
}
// Update current context
$contextualRetry = $contextualRetry ? $retry->mergeWith($contextualRetry) : $retry;
}
$interface = $this->reader->firstClassMetadata($ctx->getReflection(), ActivityInterface::class);
if ($interface === null) {
continue;
}
$attribute = $this->reader->firstFunctionMetadata($method, ActivityMethod::class);
/** @var \ReflectionMethod $method */
if (!$this->isValidMethod($method)) {
if ($attribute !== null) {
$reflection = $method->getDeclaringClass();
throw new \LogicException(
\sprintf(self::ERROR_BAD_DECLARATION, $reflection->getName(), $method->getName()),
);
}
continue;
}
if ($attribute === null && $this->isMagic($method)) {
continue;
}
//
// The name of the activity must be generated based on the
// optional prefix on the #[ActivityInterface] attribute and
// the method's name which can be redefined
// using #[ActivityMethod] attribute.
//
$name = $this->activityName($method, $interface, $attribute);
$prototype = new ActivityPrototype($interface, $name, $root, $graph->getReflection());
if ($retry !== null) {
$prototype->setMethodRetry($retry);
}
$prototypes[$name] = $prototype;
}
$previousRetry = $contextualRetry;
}
return $prototypes;
}
private function activityName(
\ReflectionMethod $ref,
ActivityInterface $int,
?ActivityMethod $method,
): string {
return $method === null
? $int->prefix . $ref->getName()
: $int->prefix . ($method->name ?? $ref->getName());
}
private function assertActivityNotExists(
string $name,
array $activities,
\ReflectionClass $class,
\ReflectionMethod $method,
): void {
if (!isset($activities[$name])) {
return;
}
/** @var ActivityPrototype $previous */
$previous = $activities[$name];
$handler = $previous->getHandler();
$error = \vsprintf(self::ERROR_DECLARATION_DUPLICATION, [
$class->getName(),
$method->getName(),
$name,
$handler->getFileName(),
$handler->getStartLine(),
]);
throw new \LogicException($error);
}
}