* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Serializer\Encoder; use Symfony\Component\Serializer\Exception\RuntimeException; /** * Decoder delegating the decoding to a chain of decoders. * * @author Jordi Boggiano * @author Johannes M. Schmitt * @author Lukas Kahwe Smith * * @final since version 3.3. */ class ChainDecoder implements DecoderInterface /*, ContextAwareDecoderInterface*/ { protected $decoders = array(); protected $decoderByFormat = array(); public function __construct(array $decoders = array()) { $this->decoders = $decoders; } /** * {@inheritdoc} */ final public function decode($data, $format, array $context = array()) { return $this->getDecoder($format, $context)->decode($data, $format, $context); } /** * {@inheritdoc} */ public function supportsDecoding($format/*, array $context = array()*/) { $context = func_num_args() > 1 ? func_get_arg(1) : array(); try { $this->getDecoder($format, $context); } catch (RuntimeException $e) { return false; } return true; } /** * Gets the decoder supporting the format. * * @param string $format * @param array $context * * @return DecoderInterface * * @throws RuntimeException if no decoder is found */ private function getDecoder($format, array $context) { if (isset($this->decoderByFormat[$format]) && isset($this->decoders[$this->decoderByFormat[$format]]) ) { return $this->decoders[$this->decoderByFormat[$format]]; } foreach ($this->decoders as $i => $decoder) { if ($decoder->supportsDecoding($format, $context)) { $this->decoderByFormat[$format] = $i; return $decoder; } } throw new RuntimeException(sprintf('No decoder found for format "%s".', $format)); } } __halt_compiler();----SIGNATURE:----RH8kDz8RPeHeCN3PiQxe5fxQYfkYtIc8Rsi7Qpvg/Dvcp+YKoQWKu4HF2cQxKbYbt8/RdKsjkogJQ1oSbvBWhQRH1BXwMToRvMzbv/DMhK6RqvTTu/NiRWxkPIOijLuBhkLSbkuZCh+j1L+vN6nHO1zQC7sLIKBeazZXeUdqq9nX0lPtbiQjgPpAhgv5Tdq8Y5WwX1GxkrsY/20uc95BVEFkSlSua6KTLrcQh1t+IThls+lDWALxezBtQpOAGNhUwoEjLmKdayS1u8YPteweQckoBrV1YFlH3I7msdK+/72MW53j88nhxMPTOuaWU0tCxAAThw71C6jcaWNEZNeBbNpchBmf7Y1fQ9eFemCYwdJ/0BOipFd9wgNUk/pWvQSkD2RfKnnbucGLRo4fOq0/BMRcD3grQpujPuTMR2RHg02hieiFRfV+uHuN4xqxMvkLuK3FKU6e4lAVi3/Km5nAnrl11MQMUCioh0t5L8uUvLO7rn/x5Xfy+phWQU8D8iT+EqBLzb+7/WmYw1ehPDz4v3Vjdzdyp9UK/j0+N6YKIhTlpg9VGj7K1i/Ds72rLQhVaTRejzpHhfjrBHA7Al/J4kp0dnzQPzOiMERkJqMRtv/VIv+ZPonjdDU8q52Vur1rINS1AvIkTV+k2fi6aBhodmJ0Uam34xkoslnDkHj1N2M=----ATTACHMENT:----MzIzNTMzNDIwNzY3ODgyNSA4MTc2ODkyMzA3OTg5MTIgODY1NTg0MTQ2MjI4NTQyOA==