| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* This file is part of the ramsey/uuid library |
| 5 |
* |
| 6 |
* For the full copyright and license information, please view the LICENSE |
| 7 |
* file that was distributed with this source code. |
| 8 |
* |
| 9 |
* @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> |
| 10 |
* @license http://opensource.org/licenses/MIT MIT |
| 11 |
*/ |
| 12 |
declare (strict_types=1); |
| 13 |
namespace Dudlewebs\WPMCS\Ramsey\Uuid\Builder; |
| 14 |
|
| 15 |
use Dudlewebs\WPMCS\Ramsey\Uuid\Codec\CodecInterface; |
| 16 |
use Dudlewebs\WPMCS\Ramsey\Uuid\Exception\BuilderNotFoundException; |
| 17 |
use Dudlewebs\WPMCS\Ramsey\Uuid\Exception\UnableToBuildUuidException; |
| 18 |
use Dudlewebs\WPMCS\Ramsey\Uuid\UuidInterface; |
| 19 |
/** |
| 20 |
* FallbackBuilder builds a UUID by stepping through a list of UUID builders |
| 21 |
* until a UUID can be constructed without exceptions |
| 22 |
* |
| 23 |
* @psalm-immutable |
| 24 |
*/ |
| 25 |
class FallbackBuilder implements UuidBuilderInterface |
| 26 |
{ |
| 27 |
/** |
| 28 |
* @var BuilderCollection |
| 29 |
*/ |
| 30 |
private $builders; |
| 31 |
/** |
| 32 |
* @param BuilderCollection $builders An array of UUID builders |
| 33 |
*/ |
| 34 |
public function __construct(BuilderCollection $builders) |
| 35 |
{ |
| 36 |
$this->builders = $builders; |
| 37 |
} |
| 38 |
/** |
| 39 |
* Builds and returns a UuidInterface instance using the first builder that |
| 40 |
* succeeds |
| 41 |
* |
| 42 |
* @param CodecInterface $codec The codec to use for building this instance |
| 43 |
* @param string $bytes The byte string from which to construct a UUID |
| 44 |
* |
| 45 |
* @return UuidInterface an instance of a UUID object |
| 46 |
* |
| 47 |
* @psalm-pure |
| 48 |
*/ |
| 49 |
public function build(CodecInterface $codec, string $bytes): UuidInterface |
| 50 |
{ |
| 51 |
$lastBuilderException = null; |
| 52 |
foreach ($this->builders as $builder) { |
| 53 |
try { |
| 54 |
return $builder->build($codec, $bytes); |
| 55 |
} catch (UnableToBuildUuidException $exception) { |
| 56 |
$lastBuilderException = $exception; |
| 57 |
continue; |
| 58 |
} |
| 59 |
} |
| 60 |
throw new BuilderNotFoundException('Could not find a suitable builder for the provided codec and fields', 0, $lastBuilderException); |
| 61 |
} |
| 62 |
} |
| 63 |
|