| Total Complexity | 37 |
| Total Lines | 315 |
| Duplicated Lines | 0 % |
| Coverage | 97.25% |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | final class SetupGacela extends AbstractSetupGacela |
||
| 19 | { |
||
| 20 | /** @var callable(ConfigBuilder):void */ |
||
| 21 | private $configFn; |
||
| 22 | |||
| 23 | /** @var callable(MappingInterfacesBuilder,array<string,mixed>):void */ |
||
| 24 | private $mappingInterfacesFn; |
||
| 25 | |||
| 26 | /** @var callable(SuffixTypesBuilder):void */ |
||
| 27 | private $suffixTypesFn; |
||
| 28 | |||
| 29 | /** @var array<string,class-string|object|callable> */ |
||
|
1 ignored issue
–
show
|
|||
| 30 | private array $externalServices = []; |
||
| 31 | |||
| 32 | private ?ConfigBuilder $configBuilder = null; |
||
| 33 | |||
| 34 | private ?SuffixTypesBuilder $suffixTypesBuilder = null; |
||
| 35 | |||
| 36 | private ?MappingInterfacesBuilder $mappingInterfacesBuilder = null; |
||
| 37 | |||
| 38 | private bool $shouldResetInMemoryCache = false; |
||
| 39 | |||
| 40 | private bool $fileCacheEnabled = GacelaFileCache::DEFAULT_ENABLED_VALUE; |
||
| 41 | |||
| 42 | private string $fileCacheDirectory = GacelaFileCache::DEFAULT_DIRECTORY_VALUE; |
||
| 43 | |||
| 44 | /** @var list<string> */ |
||
| 45 | private array $projectNamespaces = []; |
||
| 46 | |||
| 47 | /** @var array<string,mixed> */ |
||
| 48 | private array $configKeyValues = []; |
||
| 49 | |||
| 50 | private bool $areEventListenersEnabled = false; |
||
| 51 | |||
| 52 | /** @var array<class-string,list<callable>> */ |
||
| 53 | private array $listenersPerEvent = []; |
||
| 54 | |||
| 55 | private ?EventDispatcherInterface $eventDispatcher = null; |
||
| 56 | |||
| 57 | 80 | public function __construct() |
|
| 58 | { |
||
| 59 | 80 | $this->configFn = static function (): void { |
|
| 60 | }; |
||
| 61 | 80 | $this->mappingInterfacesFn = static function (): void { |
|
| 62 | }; |
||
| 63 | 80 | $this->suffixTypesFn = static function (): void { |
|
| 64 | }; |
||
| 65 | } |
||
| 66 | |||
| 67 | 10 | public static function fromFile(string $gacelaFilePath): self |
|
| 68 | { |
||
| 69 | 10 | if (!is_file($gacelaFilePath)) { |
|
| 70 | throw new RuntimeException("Invalid file path: '{$gacelaFilePath}'"); |
||
| 71 | } |
||
| 72 | |||
| 73 | /** @var callable(GacelaConfig):void|null $setupGacelaFileFn */ |
||
| 74 | 10 | $setupGacelaFileFn = include $gacelaFilePath; |
|
| 75 | 10 | if (!is_callable($setupGacelaFileFn)) { |
|
| 76 | return new self(); |
||
| 77 | } |
||
| 78 | |||
| 79 | 10 | return self::fromCallable($setupGacelaFileFn); |
|
| 80 | } |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @param callable(GacelaConfig):void $setupGacelaFileFn |
||
| 84 | */ |
||
| 85 | 44 | public static function fromCallable(callable $setupGacelaFileFn): self |
|
| 86 | { |
||
| 87 | 44 | $gacelaConfig = new GacelaConfig(); |
|
| 88 | 44 | $setupGacelaFileFn($gacelaConfig); |
|
| 89 | |||
| 90 | 44 | return self::fromGacelaConfig($gacelaConfig); |
|
| 91 | } |
||
| 92 | |||
| 93 | 50 | public static function fromGacelaConfig(GacelaConfig $gacelaConfig): self |
|
| 94 | { |
||
| 95 | 50 | $build = $gacelaConfig->build(); |
|
| 96 | |||
| 97 | 50 | return (new self()) |
|
| 98 | 50 | ->setConfigBuilder($build['config-builder']) |
|
| 99 | 50 | ->setSuffixTypesBuilder($build['suffix-types-builder']) |
|
| 100 | 50 | ->setMappingInterfacesBuilder($build['mapping-interfaces-builder']) |
|
| 101 | 50 | ->setExternalServices($build['external-services']) |
|
| 102 | 50 | ->setShouldResetInMemoryCache($build['should-reset-in-memory-cache']) |
|
| 103 | 50 | ->setFileCacheEnabled($build['file-cache-enabled']) |
|
| 104 | 50 | ->setFileCacheDirectory($build['file-cache-directory']) |
|
| 105 | 50 | ->setProjectNamespaces($build['project-namespaces']) |
|
| 106 | 50 | ->setConfigKeyValues($build['config-key-values']) |
|
| 107 | 50 | ->setAreEventListenersEnabled($build['are-event-listeners-enabled']) |
|
| 108 | 50 | ->setListenersPerEvent($build['listeners-per-event']); |
|
| 109 | } |
||
| 110 | |||
| 111 | 50 | public function setMappingInterfacesBuilder(MappingInterfacesBuilder $builder): self |
|
| 112 | { |
||
| 113 | 50 | $this->mappingInterfacesBuilder = $builder; |
|
| 114 | |||
| 115 | 50 | return $this; |
|
| 116 | } |
||
| 117 | |||
| 118 | 50 | public function setSuffixTypesBuilder(SuffixTypesBuilder $builder): self |
|
| 123 | } |
||
| 124 | |||
| 125 | 50 | public function setConfigBuilder(ConfigBuilder $builder): self |
|
| 126 | { |
||
| 127 | 50 | $this->configBuilder = $builder; |
|
| 128 | |||
| 129 | 50 | return $this; |
|
| 130 | } |
||
| 131 | |||
| 132 | /** |
||
| 133 | * @param callable(ConfigBuilder):void $callable |
||
| 134 | */ |
||
| 135 | 3 | public function setConfigFn(callable $callable): self |
|
| 136 | { |
||
| 137 | 3 | $this->configFn = $callable; |
|
| 138 | |||
| 139 | 3 | return $this; |
|
| 140 | } |
||
| 141 | |||
| 142 | 80 | public function buildConfig(ConfigBuilder $builder): ConfigBuilder |
|
| 143 | { |
||
| 144 | 80 | if ($this->configBuilder) { |
|
| 145 | 50 | $builder = $this->configBuilder; |
|
| 146 | } |
||
| 147 | |||
| 148 | 80 | ($this->configFn)($builder); |
|
| 149 | |||
| 150 | 80 | return $builder; |
|
| 151 | } |
||
| 152 | |||
| 153 | /** |
||
| 154 | * @param callable(MappingInterfacesBuilder,array<string,mixed>):void $callable |
||
| 155 | */ |
||
| 156 | 3 | public function setMappingInterfacesFn(callable $callable): self |
|
| 157 | { |
||
| 158 | 3 | $this->mappingInterfacesFn = $callable; |
|
| 159 | |||
| 160 | 3 | return $this; |
|
| 161 | } |
||
| 162 | |||
| 163 | /** |
||
| 164 | * Define the mapping between interfaces and concretions, so Gacela services will auto-resolve them automatically. |
||
| 165 | * |
||
| 166 | * @param array<string,class-string|object|callable> $externalServices |
||
|
1 ignored issue
–
show
|
|||
| 167 | */ |
||
| 168 | 80 | public function buildMappingInterfaces( |
|
| 169 | MappingInterfacesBuilder $builder, |
||
| 170 | array $externalServices |
||
| 171 | ): MappingInterfacesBuilder { |
||
| 172 | 80 | if ($this->mappingInterfacesBuilder) { |
|
| 173 | 50 | $builder = $this->mappingInterfacesBuilder; |
|
| 174 | } |
||
| 175 | |||
| 176 | 80 | ($this->mappingInterfacesFn)( |
|
| 177 | $builder, |
||
| 178 | 80 | array_merge($this->externalServices, $externalServices) |
|
| 179 | ); |
||
| 180 | |||
| 181 | 80 | return $builder; |
|
| 182 | } |
||
| 183 | |||
| 184 | /** |
||
| 185 | * @param callable(SuffixTypesBuilder):void $callable |
||
| 186 | */ |
||
| 187 | 3 | public function setSuffixTypesFn(callable $callable): self |
|
| 188 | { |
||
| 189 | 3 | $this->suffixTypesFn = $callable; |
|
| 190 | |||
| 191 | 3 | return $this; |
|
| 192 | } |
||
| 193 | |||
| 194 | /** |
||
| 195 | * Allow overriding gacela resolvable types. |
||
| 196 | */ |
||
| 197 | 80 | public function buildSuffixTypes(SuffixTypesBuilder $builder): SuffixTypesBuilder |
|
| 198 | { |
||
| 199 | 80 | if ($this->suffixTypesBuilder) { |
|
| 200 | 50 | $builder = $this->suffixTypesBuilder; |
|
| 201 | } |
||
| 202 | |||
| 203 | 80 | ($this->suffixTypesFn)($builder); |
|
| 204 | |||
| 205 | 80 | return $builder; |
|
| 206 | } |
||
| 207 | |||
| 208 | /** |
||
| 209 | * @param array<string,class-string|object|callable> $array |
||
|
1 ignored issue
–
show
|
|||
| 210 | */ |
||
| 211 | 53 | public function setExternalServices(array $array): self |
|
| 212 | { |
||
| 213 | 53 | $this->externalServices = $array; |
|
| 214 | |||
| 215 | 53 | return $this; |
|
| 216 | } |
||
| 217 | |||
| 218 | /** |
||
| 219 | * @return array<string,class-string|object|callable> |
||
|
1 ignored issue
–
show
|
|||
| 220 | */ |
||
| 221 | 16 | public function externalServices(): array |
|
| 222 | { |
||
| 223 | 16 | return $this->externalServices; |
|
| 224 | } |
||
| 225 | |||
| 226 | 50 | public function setShouldResetInMemoryCache(bool $flag): self |
|
| 227 | { |
||
| 228 | 50 | $this->shouldResetInMemoryCache = $flag; |
|
| 229 | |||
| 230 | 50 | return $this; |
|
| 231 | } |
||
| 232 | |||
| 233 | 67 | public function shouldResetInMemoryCache(): bool |
|
| 234 | { |
||
| 235 | 67 | return $this->shouldResetInMemoryCache; |
|
| 236 | } |
||
| 237 | |||
| 238 | 50 | public function setFileCacheEnabled(bool $flag): self |
|
| 239 | { |
||
| 240 | 50 | $this->fileCacheEnabled = $flag; |
|
| 241 | |||
| 242 | 50 | return $this; |
|
| 243 | } |
||
| 244 | |||
| 245 | 6 | public function isFileCacheEnabled(): bool |
|
| 246 | { |
||
| 247 | 6 | return $this->fileCacheEnabled; |
|
| 248 | } |
||
| 249 | |||
| 250 | 9 | public function getFileCacheDirectory(): string |
|
| 251 | { |
||
| 252 | 9 | return $this->fileCacheDirectory; |
|
| 253 | } |
||
| 254 | |||
| 255 | 50 | public function setFileCacheDirectory(string $dir): self |
|
| 256 | { |
||
| 257 | 50 | $this->fileCacheDirectory = $dir; |
|
| 258 | |||
| 259 | 50 | return $this; |
|
| 260 | } |
||
| 261 | |||
| 262 | /** |
||
| 263 | * @param list<string> $list |
||
| 264 | */ |
||
| 265 | 50 | public function setProjectNamespaces(array $list): self |
|
| 266 | { |
||
| 267 | 50 | $this->projectNamespaces = $list; |
|
| 268 | |||
| 269 | 50 | return $this; |
|
| 270 | } |
||
| 271 | |||
| 272 | /** |
||
| 273 | * @return list<string> |
||
| 274 | */ |
||
| 275 | 36 | public function getProjectNamespaces(): array |
|
| 276 | { |
||
| 277 | 36 | return $this->projectNamespaces; |
|
| 278 | } |
||
| 279 | |||
| 280 | /** |
||
| 281 | * @return array<string,mixed> |
||
| 282 | */ |
||
| 283 | 67 | public function getConfigKeyValues(): array |
|
| 284 | { |
||
| 285 | 67 | return $this->configKeyValues; |
|
| 286 | } |
||
| 287 | |||
| 288 | 12 | public function getEventDispatcher(): EventDispatcherInterface |
|
| 289 | { |
||
| 290 | 12 | if ($this->eventDispatcher !== null) { |
|
| 291 | return $this->eventDispatcher; |
||
| 292 | } |
||
| 293 | |||
| 294 | 12 | if ($this->areEventListenersEnabled) { |
|
| 295 | 10 | $this->eventDispatcher = new EventDispatcher(); |
|
| 296 | 10 | foreach ($this->listenersPerEvent as $event => $listeners) { |
|
| 297 | 3 | foreach ($listeners as $callable) { |
|
| 298 | 3 | $this->eventDispatcher->registerSpecificListener($event, $callable); |
|
| 299 | } |
||
| 300 | } |
||
| 301 | } else { |
||
| 302 | 2 | $this->eventDispatcher = new NullEventDispatcher(); |
|
| 303 | } |
||
| 304 | |||
| 305 | 12 | return $this->eventDispatcher; |
|
| 306 | } |
||
| 307 | |||
| 308 | 50 | public function setAreEventListenersEnabled(bool $flag): self |
|
| 313 | } |
||
| 314 | |||
| 315 | /** |
||
| 316 | * @param array<string,mixed> $configKeyValues |
||
| 317 | */ |
||
| 318 | 50 | private function setConfigKeyValues(array $configKeyValues): self |
|
| 319 | { |
||
| 320 | 50 | $this->configKeyValues = $configKeyValues; |
|
| 321 | |||
| 322 | 50 | return $this; |
|
| 323 | } |
||
| 324 | |||
| 325 | /** |
||
| 326 | * @param array<class-string,list<callable>> $listenersPerEvent |
||
| 327 | */ |
||
| 328 | 50 | private function setListenersPerEvent(array $listenersPerEvent): self |
|
| 333 | } |
||
| 334 | } |
||
| 335 |