class ChainDecoder
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
Hierarchy
- class \Symfony\Component\Serializer\Encoder\ChainDecoder implements \Symfony\Component\Serializer\Encoder\ContextAwareDecoderInterface
Expanded class hierarchy of ChainDecoder
1 file declares its use of ChainDecoder
- Serializer.php in vendor/
symfony/ serializer/ Serializer.php
File
-
vendor/
symfony/ serializer/ Encoder/ ChainDecoder.php, line 25
Namespace
Symfony\Component\Serializer\EncoderView source
class ChainDecoder implements ContextAwareDecoderInterface {
/**
* @var array<string, array-key>
*/
private array $decoderByFormat = [];
/**
* @param array<DecoderInterface> $decoders
*/
public function __construct(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));
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
ChainDecoder::$decoderByFormat | private | property | ||
ChainDecoder::decode | final public | function | Decodes a string into PHP data. | Overrides DecoderInterface::decode |
ChainDecoder::getDecoder | private | function | Gets the decoder supporting the format. | |
ChainDecoder::supportsDecoding | public | function | Checks whether the deserializer can decode from given format. | Overrides ContextAwareDecoderInterface::supportsDecoding |
ChainDecoder::__construct | public | function |