D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
modules
/
performance-booster
/
vendor
/
symfony
/
serializer
/
Encoder
/
Filename :
ChainDecoder.php
back
Copy
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PerformanceBooster\Symfony\Component\Serializer\Encoder; use PerformanceBooster\Symfony\Component\Serializer\Exception\RuntimeException; /** * Decoder delegating the decoding to a chain of decoders. * * @author Jordi Boggiano <j.boggiano@seld.be> * @author Johannes M. Schmitt <schmittjoh@gmail.com> * @author Lukas Kahwe Smith <smith@pooteeweet.org> * * @final */ class ChainDecoder implements ContextAwareDecoderInterface { /** * @var array<string, array-key> */ private array $decoderByFormat = []; /** * @param array<DecoderInterface> $decoders */ public function __construct(private readonly array $decoders = []) { } public final function decode(string $data, string $format, array $context = []) : mixed { return $this->getDecoder($format, $context)->decode($data, $format, $context); } public function supportsDecoding(string $format, array $context = []) : bool { try { $this->getDecoder($format, $context); } catch (RuntimeException) { return \false; } return \true; } /** * Gets the decoder supporting the format. * * @throws RuntimeException if no decoder is found */ private function getDecoder(string $format, array $context) : DecoderInterface { if (isset($this->decoderByFormat[$format]) && isset($this->decoders[$this->decoderByFormat[$format]])) { return $this->decoders[$this->decoderByFormat[$format]]; } $cache = \true; foreach ($this->decoders as $i => $decoder) { $cache = $cache && !$decoder instanceof ContextAwareDecoderInterface; if ($decoder->supportsDecoding($format, $context)) { if ($cache) { $this->decoderByFormat[$format] = $i; } return $decoder; } } throw new RuntimeException(\sprintf('No decoder found for format "%s".', $format)); } }