fastbolt/entity-importer

View on GitHub
src/Reader/Factory/ReaderFactoryManager.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Copyright © Fastbolt Schraubengroßhandels GmbH.
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Fastbolt\EntityImporter\Reader\Factory;

use Fastbolt\EntityImporter\Exceptions\UnsupportedReaderTypeException;

class ReaderFactoryManager
{
    /**
     * @var array<int,ReaderFactoryInterface>
     */
    private array $factories = [];

    /**
     * @param iterable<ReaderFactoryInterface> $factories
     */
    public function __construct(iterable $factories)
    {
        foreach ($factories as $factory) {
            $this->factories[] = $factory;
        }
    }

    /**
     * @param string $type
     *
     * @return ReaderFactoryInterface
     *
     * @throws UnsupportedReaderTypeException
     */
    public function getReaderFactory(string $type): ReaderFactoryInterface
    {
        foreach ($this->factories as $factory) {
            if ($factory->supportsType($type)) {
                return $factory;
            }
        }

        throw new UnsupportedReaderTypeException($type, $this->getAvailableTypes());
    }

    /**
     * @return string[]
     * @noinspection SlowArrayOperationsInLoopInspection This method is only used for exceptions, causing the process
     *               to end. Therefore, slowness is not relevant here.
     */
    private function getAvailableTypes(): array
    {
        /** @var string[] $availableTypes */
        $availableTypes = [];
        foreach ($this->factories as $factory) {
            $availableTypes = array_merge($availableTypes, $factory->getSupportedTypes());
        }

        return $availableTypes;
    }
}