9
9
namespace XWP \DI \Decorators ;
10
10
11
11
use Closure ;
12
- use DI \Attribute \Inject ;
13
12
use DI \Container ;
14
13
use ReflectionClass ;
15
14
use XWP \DI \Interfaces \Can_Handle ;
28
27
*/
29
28
#[\Attribute( \Attribute::TARGET_CLASS )]
30
29
class Handler extends Hook implements Can_Handle {
30
+ /**
31
+ * Array of handlers that have been initialized.
32
+ *
33
+ * @var array<string,bool>
34
+ */
35
+ protected static array $ did_init = array ();
36
+
31
37
/**
32
38
* Handler classname.
33
39
*
@@ -146,8 +152,9 @@ public function load(): bool {
146
152
}
147
153
148
154
$ this ->instance ??= $ this ->initialize ();
155
+ $ this ->loaded = $ this ->instance ::class === $ this ->classname ;
149
156
150
- return $ this ->on_initialize ();
157
+ return $ this ->loaded && $ this -> on_initialize ();
151
158
}
152
159
153
160
/**
@@ -165,35 +172,32 @@ protected function initialize(): object {
165
172
* @return bool
166
173
*/
167
174
protected function on_initialize (): bool {
168
- $ this ->loaded = true ;
169
-
170
- $ method = 'on_initialize ' ;
171
-
172
- if ( \method_exists ( $ this ->classname , $ method ) ) {
175
+ if ( ! \method_exists ( $ this ->instance , 'on_initialize ' ) ) {
176
+ return static ::$ did_init [ $ this ->id ] ??= true ;
177
+ }
173
178
174
- $ this ->container ->call (
175
- array ( $ this ->classname , $ method ),
176
- $ this ->resolve_params ( $ method ),
177
- );
179
+ if ( isset ( static ::$ did_init [ $ this ->id ] ) ) {
180
+ return true ;
178
181
}
179
182
180
- return $ this ->loaded ;
183
+ $ this ->container ->call (
184
+ array ( $ this ->instance , 'on_initialize ' ),
185
+ $ this ->resolve_params ( 'on_initialize ' ),
186
+ );
187
+
188
+ return static ::$ did_init [ $ this ->id ] ??= true ;
181
189
}
182
190
183
191
/**
184
192
* Resolve the parameters for a method.
185
193
*
186
194
* @param string $method Method name.
187
- * @return array<string, mixed>
195
+ * @return array<mixed>
188
196
*/
189
197
protected function resolve_params ( string $ method ): array {
190
- return \array_map (
191
- '\DI\get ' ,
192
- Reflection::get_decorator (
193
- $ this ->reflector ->getMethod ( $ method ),
194
- Inject::class,
195
- )?->getParameters() ?? array (),
196
- );
198
+ $ injector = Reflection::get_decorator ( $ this ->reflector ->getMethod ( $ method ), Infuse::class );
199
+
200
+ return $ injector ? $ injector ->resolve ( $ this ) : array ();
197
201
}
198
202
199
203
/**
0 commit comments