* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\VarDumper\Caster; use Symfony\Component\VarDumper\Cloner\Stub; /** * Casts XmlReader class to array representation. * * @author Baptiste ClaviƩ */ class XmlReaderCaster { private static $nodeTypes = array( \XMLReader::NONE => 'NONE', \XMLReader::ELEMENT => 'ELEMENT', \XMLReader::ATTRIBUTE => 'ATTRIBUTE', \XMLReader::TEXT => 'TEXT', \XMLReader::CDATA => 'CDATA', \XMLReader::ENTITY_REF => 'ENTITY_REF', \XMLReader::ENTITY => 'ENTITY', \XMLReader::PI => 'PI (Processing Instruction)', \XMLReader::COMMENT => 'COMMENT', \XMLReader::DOC => 'DOC', \XMLReader::DOC_TYPE => 'DOC_TYPE', \XMLReader::DOC_FRAGMENT => 'DOC_FRAGMENT', \XMLReader::NOTATION => 'NOTATION', \XMLReader::WHITESPACE => 'WHITESPACE', \XMLReader::SIGNIFICANT_WHITESPACE => 'SIGNIFICANT_WHITESPACE', \XMLReader::END_ELEMENT => 'END_ELEMENT', \XMLReader::END_ENTITY => 'END_ENTITY', \XMLReader::XML_DECLARATION => 'XML_DECLARATION', ); public static function castXmlReader(\XMLReader $reader, array $a, Stub $stub, $isNested) { $props = Caster::PREFIX_VIRTUAL.'parserProperties'; $info = array( 'localName' => $reader->localName, 'prefix' => $reader->prefix, 'nodeType' => new ConstStub(self::$nodeTypes[$reader->nodeType], $reader->nodeType), 'depth' => $reader->depth, 'isDefault' => $reader->isDefault, 'isEmptyElement' => \XMLReader::NONE === $reader->nodeType ? null : $reader->isEmptyElement, 'xmlLang' => $reader->xmlLang, 'attributeCount' => $reader->attributeCount, 'value' => $reader->value, 'namespaceURI' => $reader->namespaceURI, 'baseURI' => $reader->baseURI ? new LinkStub($reader->baseURI) : $reader->baseURI, $props => array( 'LOADDTD' => $reader->getParserProperty(\XMLReader::LOADDTD), 'DEFAULTATTRS' => $reader->getParserProperty(\XMLReader::DEFAULTATTRS), 'VALIDATE' => $reader->getParserProperty(\XMLReader::VALIDATE), 'SUBST_ENTITIES' => $reader->getParserProperty(\XMLReader::SUBST_ENTITIES), ), ); if ($info[$props] = Caster::filter($info[$props], Caster::EXCLUDE_EMPTY, array(), $count)) { $info[$props] = new EnumStub($info[$props]); $info[$props]->cut = $count; } $info = Caster::filter($info, Caster::EXCLUDE_EMPTY, array(), $count); // +2 because hasValue and hasAttributes are always filtered $stub->cut += $count + 2; return $a + $info; } } __halt_compiler();----SIGNATURE:----QtPCNQd5m7gVfxAW5zxu5oYdW5E+Qt/q9zv8EAjIMbqKlA8ajXzrX5Gj75llvh9ZZmqQn4kWIuCKhkuZ4WpPJykLYmB3MoXV5+uxeSc5xrevjSsGygMMx9/AiBRMWRc39Yo++i7cbcKQ0udNADlbM8cwROYLCl2la6wugdUGGmZbH8pmyPyQQyf5WxwoKOzBOz8Wr6WgsSfLYF3k5i9ll50Isw2fs/xueDgTxMUMg7rEhSz8nYCTfGlunyV31Hc+Ndzjd9Gfbin8ToN5DrIQMnYqxMrXJyEJ6nyjPnd+1KEXsfKGz5F3SKQtL5/519qDR3vljHM1BHV0LURzmyKJO2ZXWlpX7PWfxkGN+5/BRGPbcscxQghLh8ujBX9eql46+00X46IDjE/Ay8Iu/nd7iCB0eyE04SITJH7NIRainewVNXudEdIAuDHUD+ryrKurORxXzKRWVfEQE5ejDbDCwdEP1ovQovjlJ8cVL7x/pUJBY/+uALUtM2aAUfNdfbZuAp+hwtPJLuWJCgmoGoekRlx5BoWYJrB7VP5WwsSwciNM2QEKE6xKSiA0KuulCwQ9tE6sTvV7HzwUk76lVGnxu/CQm3SzthixrNgKTwqLFxyx8L7Wx6zi6OyyUYa53YPOKGAMTS5Kty2KIlvirBoDbq25BtOwCzUJRXDsXs2fx6E=----ATTACHMENT:----NjA3NTgzOTYyMTgyNzg3OCA1MjE2NzMxNzU5MTgwNTEwIDM2OTYzMTQwOTY3NTUwNjA=