vendor/symfony/yaml/Inline.php line 358

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Yaml;
  11. use Symfony\Component\Yaml\Exception\ParseException;
  12. use Symfony\Component\Yaml\Exception\DumpException;
  13. use Symfony\Component\Yaml\Tag\TaggedValue;
  14. /**
  15.  * Inline implements a YAML parser/dumper for the YAML inline syntax.
  16.  *
  17.  * @author Fabien Potencier <fabien@symfony.com>
  18.  *
  19.  * @internal
  20.  */
  21. class Inline
  22. {
  23.     const REGEX_QUOTED_STRING '(?:"([^"\\\\]*+(?:\\\\.[^"\\\\]*+)*+)"|\'([^\']*+(?:\'\'[^\']*+)*+)\')';
  24.     public static $parsedLineNumber = -1;
  25.     public static $parsedFilename;
  26.     private static $exceptionOnInvalidType false;
  27.     private static $objectSupport false;
  28.     private static $objectForMap false;
  29.     private static $constantSupport false;
  30.     /**
  31.      * @param int         $flags
  32.      * @param int|null    $parsedLineNumber
  33.      * @param string|null $parsedFilename
  34.      */
  35.     public static function initialize($flags$parsedLineNumber null$parsedFilename null)
  36.     {
  37.         self::$exceptionOnInvalidType = (bool) (Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE $flags);
  38.         self::$objectSupport = (bool) (Yaml::PARSE_OBJECT $flags);
  39.         self::$objectForMap = (bool) (Yaml::PARSE_OBJECT_FOR_MAP $flags);
  40.         self::$constantSupport = (bool) (Yaml::PARSE_CONSTANT $flags);
  41.         self::$parsedFilename $parsedFilename;
  42.         if (null !== $parsedLineNumber) {
  43.             self::$parsedLineNumber $parsedLineNumber;
  44.         }
  45.     }
  46.     /**
  47.      * Converts a YAML string to a PHP value.
  48.      *
  49.      * @param string $value      A YAML string
  50.      * @param int    $flags      A bit field of PARSE_* constants to customize the YAML parser behavior
  51.      * @param array  $references Mapping of variable names to values
  52.      *
  53.      * @return mixed A PHP value
  54.      *
  55.      * @throws ParseException
  56.      */
  57.     public static function parse($value$flags 0$references = array())
  58.     {
  59.         if (is_bool($flags)) {
  60.             @trigger_error('Passing a boolean flag to toggle exception handling is deprecated since Symfony 3.1 and will be removed in 4.0. Use the Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE flag instead.'E_USER_DEPRECATED);
  61.             if ($flags) {
  62.                 $flags Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE;
  63.             } else {
  64.                 $flags 0;
  65.             }
  66.         }
  67.         if (func_num_args() >= && !is_array($references)) {
  68.             @trigger_error('Passing a boolean flag to toggle object support is deprecated since Symfony 3.1 and will be removed in 4.0. Use the Yaml::PARSE_OBJECT flag instead.'E_USER_DEPRECATED);
  69.             if ($references) {
  70.                 $flags |= Yaml::PARSE_OBJECT;
  71.             }
  72.             if (func_num_args() >= 4) {
  73.                 @trigger_error('Passing a boolean flag to toggle object for map support is deprecated since Symfony 3.1 and will be removed in 4.0. Use the Yaml::PARSE_OBJECT_FOR_MAP flag instead.'E_USER_DEPRECATED);
  74.                 if (func_get_arg(3)) {
  75.                     $flags |= Yaml::PARSE_OBJECT_FOR_MAP;
  76.                 }
  77.             }
  78.             if (func_num_args() >= 5) {
  79.                 $references func_get_arg(4);
  80.             } else {
  81.                 $references = array();
  82.             }
  83.         }
  84.         self::initialize($flags);
  85.         $value trim($value);
  86.         if ('' === $value) {
  87.             return '';
  88.         }
  89.         if (/* MB_OVERLOAD_STRING */ & (int) ini_get('mbstring.func_overload')) {
  90.             $mbEncoding mb_internal_encoding();
  91.             mb_internal_encoding('ASCII');
  92.         }
  93.         $i 0;
  94.         $tag self::parseTag($value$i$flags);
  95.         switch ($value[$i]) {
  96.             case '[':
  97.                 $result self::parseSequence($value$flags$i$references);
  98.                 ++$i;
  99.                 break;
  100.             case '{':
  101.                 $result self::parseMapping($value$flags$i$references);
  102.                 ++$i;
  103.                 break;
  104.             default:
  105.                 $result self::parseScalar($value$flagsnull$inull === $tag$references);
  106.         }
  107.         if (null !== $tag) {
  108.             return new TaggedValue($tag$result);
  109.         }
  110.         // some comments are allowed at the end
  111.         if (preg_replace('/\s+#.*$/A'''substr($value$i))) {
  112.             throw new ParseException(sprintf('Unexpected characters near "%s".'substr($value$i)), self::$parsedLineNumber 1$valueself::$parsedFilename);
  113.         }
  114.         if (isset($mbEncoding)) {
  115.             mb_internal_encoding($mbEncoding);
  116.         }
  117.         return $result;
  118.     }
  119.     /**
  120.      * Dumps a given PHP variable to a YAML string.
  121.      *
  122.      * @param mixed $value The PHP variable to convert
  123.      * @param int   $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string
  124.      *
  125.      * @return string The YAML string representing the PHP value
  126.      *
  127.      * @throws DumpException When trying to dump PHP resource
  128.      */
  129.     public static function dump($value$flags 0)
  130.     {
  131.         if (is_bool($flags)) {
  132.             @trigger_error('Passing a boolean flag to toggle exception handling is deprecated since Symfony 3.1 and will be removed in 4.0. Use the Yaml::DUMP_EXCEPTION_ON_INVALID_TYPE flag instead.'E_USER_DEPRECATED);
  133.             if ($flags) {
  134.                 $flags Yaml::DUMP_EXCEPTION_ON_INVALID_TYPE;
  135.             } else {
  136.                 $flags 0;
  137.             }
  138.         }
  139.         if (func_num_args() >= 3) {
  140.             @trigger_error('Passing a boolean flag to toggle object support is deprecated since Symfony 3.1 and will be removed in 4.0. Use the Yaml::DUMP_OBJECT flag instead.'E_USER_DEPRECATED);
  141.             if (func_get_arg(2)) {
  142.                 $flags |= Yaml::DUMP_OBJECT;
  143.             }
  144.         }
  145.         switch (true) {
  146.             case is_resource($value):
  147.                 if (Yaml::DUMP_EXCEPTION_ON_INVALID_TYPE $flags) {
  148.                     throw new DumpException(sprintf('Unable to dump PHP resources in a YAML file ("%s").'get_resource_type($value)));
  149.                 }
  150.                 return 'null';
  151.             case $value instanceof \DateTimeInterface:
  152.                 return $value->format('c');
  153.             case is_object($value):
  154.                 if ($value instanceof TaggedValue) {
  155.                     return '!'.$value->getTag().' '.self::dump($value->getValue(), $flags);
  156.                 }
  157.                 if (Yaml::DUMP_OBJECT $flags) {
  158.                     return '!php/object '.self::dump(serialize($value));
  159.                 }
  160.                 if (Yaml::DUMP_OBJECT_AS_MAP $flags && ($value instanceof \stdClass || $value instanceof \ArrayObject)) {
  161.                     return self::dumpArray($value$flags & ~Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE);
  162.                 }
  163.                 if (Yaml::DUMP_EXCEPTION_ON_INVALID_TYPE $flags) {
  164.                     throw new DumpException('Object support when dumping a YAML file has been disabled.');
  165.                 }
  166.                 return 'null';
  167.             case is_array($value):
  168.                 return self::dumpArray($value$flags);
  169.             case null === $value:
  170.                 return 'null';
  171.             case true === $value:
  172.                 return 'true';
  173.             case false === $value:
  174.                 return 'false';
  175.             case ctype_digit($value):
  176.                 return is_string($value) ? "'$value'" : (int) $value;
  177.             case is_numeric($value):
  178.                 $locale setlocale(LC_NUMERIC0);
  179.                 if (false !== $locale) {
  180.                     setlocale(LC_NUMERIC'C');
  181.                 }
  182.                 if (is_float($value)) {
  183.                     $repr = (string) $value;
  184.                     if (is_infinite($value)) {
  185.                         $repr str_ireplace('INF''.Inf'$repr);
  186.                     } elseif (floor($value) == $value && $repr == $value) {
  187.                         // Preserve float data type since storing a whole number will result in integer value.
  188.                         $repr '!!float '.$repr;
  189.                     }
  190.                 } else {
  191.                     $repr is_string($value) ? "'$value'" : (string) $value;
  192.                 }
  193.                 if (false !== $locale) {
  194.                     setlocale(LC_NUMERIC$locale);
  195.                 }
  196.                 return $repr;
  197.             case '' == $value:
  198.                 return "''";
  199.             case self::isBinaryString($value):
  200.                 return '!!binary '.base64_encode($value);
  201.             case Escaper::requiresDoubleQuoting($value):
  202.                 return Escaper::escapeWithDoubleQuotes($value);
  203.             case Escaper::requiresSingleQuoting($value):
  204.             case Parser::preg_match('{^[0-9]+[_0-9]*$}'$value):
  205.             case Parser::preg_match(self::getHexRegex(), $value):
  206.             case Parser::preg_match(self::getTimestampRegex(), $value):
  207.                 return Escaper::escapeWithSingleQuotes($value);
  208.             default:
  209.                 return $value;
  210.         }
  211.     }
  212.     /**
  213.      * Check if given array is hash or just normal indexed array.
  214.      *
  215.      * @internal
  216.      *
  217.      * @param array|\ArrayObject|\stdClass $value The PHP array or array-like object to check
  218.      *
  219.      * @return bool true if value is hash array, false otherwise
  220.      */
  221.     public static function isHash($value)
  222.     {
  223.         if ($value instanceof \stdClass || $value instanceof \ArrayObject) {
  224.             return true;
  225.         }
  226.         $expectedKey 0;
  227.         foreach ($value as $key => $val) {
  228.             if ($key !== $expectedKey++) {
  229.                 return true;
  230.             }
  231.         }
  232.         return false;
  233.     }
  234.     /**
  235.      * Dumps a PHP array to a YAML string.
  236.      *
  237.      * @param array $value The PHP array to dump
  238.      * @param int   $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string
  239.      *
  240.      * @return string The YAML string representing the PHP array
  241.      */
  242.     private static function dumpArray($value$flags)
  243.     {
  244.         // array
  245.         if (($value || Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE $flags) && !self::isHash($value)) {
  246.             $output = array();
  247.             foreach ($value as $val) {
  248.                 $output[] = self::dump($val$flags);
  249.             }
  250.             return sprintf('[%s]'implode(', '$output));
  251.         }
  252.         // hash
  253.         $output = array();
  254.         foreach ($value as $key => $val) {
  255.             $output[] = sprintf('%s: %s'self::dump($key$flags), self::dump($val$flags));
  256.         }
  257.         return sprintf('{ %s }'implode(', '$output));
  258.     }
  259.     /**
  260.      * Parses a YAML scalar.
  261.      *
  262.      * @param string   $scalar
  263.      * @param int      $flags
  264.      * @param string[] $delimiters
  265.      * @param int      &$i
  266.      * @param bool     $evaluate
  267.      * @param array    $references
  268.      *
  269.      * @return string
  270.      *
  271.      * @throws ParseException When malformed inline YAML string is parsed
  272.      *
  273.      * @internal
  274.      */
  275.     public static function parseScalar($scalar$flags 0$delimiters null, &$i 0$evaluate true$references = array(), $legacyOmittedKeySupport false)
  276.     {
  277.         if (in_array($scalar[$i], array('"'"'"))) {
  278.             // quoted scalar
  279.             $output self::parseQuotedScalar($scalar$i);
  280.             if (null !== $delimiters) {
  281.                 $tmp ltrim(substr($scalar$i), ' ');
  282.                 if (!in_array($tmp[0], $delimiters)) {
  283.                     throw new ParseException(sprintf('Unexpected characters (%s).'substr($scalar$i)), self::$parsedLineNumber 1$scalarself::$parsedFilename);
  284.                 }
  285.             }
  286.         } else {
  287.             // "normal" string
  288.             if (!$delimiters) {
  289.                 $output substr($scalar$i);
  290.                 $i += strlen($output);
  291.                 // remove comments
  292.                 if (Parser::preg_match('/[ \t]+#/'$output$matchPREG_OFFSET_CAPTURE)) {
  293.                     $output substr($output0$match[0][1]);
  294.                 }
  295.             } elseif (Parser::preg_match('/^(.'.($legacyOmittedKeySupport '+' '*').'?)('.implode('|'$delimiters).')/'substr($scalar$i), $match)) {
  296.                 $output $match[1];
  297.                 $i += strlen($output);
  298.             } else {
  299.                 throw new ParseException(sprintf('Malformed inline YAML string: %s.'$scalar), self::$parsedLineNumber 1nullself::$parsedFilename);
  300.             }
  301.             // a non-quoted string cannot start with @ or ` (reserved) nor with a scalar indicator (| or >)
  302.             if ($output && ('@' === $output[0] || '`' === $output[0] || '|' === $output[0] || '>' === $output[0])) {
  303.                 throw new ParseException(sprintf('The reserved indicator "%s" cannot start a plain scalar; you need to quote the scalar.'$output[0]), self::$parsedLineNumber 1$outputself::$parsedFilename);
  304.             }
  305.             if ($output && '%' === $output[0]) {
  306.                 @trigger_error(self::getDeprecationMessage(sprintf('Not quoting the scalar "%s" starting with the "%%" indicator character is deprecated since Symfony 3.1 and will throw a ParseException in 4.0.'$output)), E_USER_DEPRECATED);
  307.             }
  308.             if ($evaluate) {
  309.                 $output self::evaluateScalar($output$flags$references);
  310.             }
  311.         }
  312.         return $output;
  313.     }
  314.     /**
  315.      * Parses a YAML quoted scalar.
  316.      *
  317.      * @param string $scalar
  318.      * @param int    &$i
  319.      *
  320.      * @return string
  321.      *
  322.      * @throws ParseException When malformed inline YAML string is parsed
  323.      */
  324.     private static function parseQuotedScalar($scalar, &$i)
  325.     {
  326.         if (!Parser::preg_match('/'.self::REGEX_QUOTED_STRING.'/Au'substr($scalar$i), $match)) {
  327.             throw new ParseException(sprintf('Malformed inline YAML string: %s.'substr($scalar$i)), self::$parsedLineNumber 1$scalarself::$parsedFilename);
  328.         }
  329.         $output substr($match[0], 1strlen($match[0]) - 2);
  330.         $unescaper = new Unescaper();
  331.         if ('"' == $scalar[$i]) {
  332.             $output $unescaper->unescapeDoubleQuotedString($output);
  333.         } else {
  334.             $output $unescaper->unescapeSingleQuotedString($output);
  335.         }
  336.         $i += strlen($match[0]);
  337.         return $output;
  338.     }
  339.     /**
  340.      * Parses a YAML sequence.
  341.      *
  342.      * @param string $sequence
  343.      * @param int    $flags
  344.      * @param int    &$i
  345.      * @param array  $references
  346.      *
  347.      * @return array
  348.      *
  349.      * @throws ParseException When malformed inline YAML string is parsed
  350.      */
  351.     private static function parseSequence($sequence$flags, &$i 0$references = array())
  352.     {
  353.         $output = array();
  354.         $len strlen($sequence);
  355.         ++$i;
  356.         // [foo, bar, ...]
  357.         while ($i $len) {
  358.             if (']' === $sequence[$i]) {
  359.                 return $output;
  360.             }
  361.             if (',' === $sequence[$i] || ' ' === $sequence[$i]) {
  362.                 ++$i;
  363.                 continue;
  364.             }
  365.             $tag self::parseTag($sequence$i$flags);
  366.             switch ($sequence[$i]) {
  367.                 case '[':
  368.                     // nested sequence
  369.                     $value self::parseSequence($sequence$flags$i$references);
  370.                     break;
  371.                 case '{':
  372.                     // nested mapping
  373.                     $value self::parseMapping($sequence$flags$i$references);
  374.                     break;
  375.                 default:
  376.                     $isQuoted in_array($sequence[$i], array('"'"'"));
  377.                     $value self::parseScalar($sequence$flags, array(','']'), $inull === $tag$references);
  378.                     // the value can be an array if a reference has been resolved to an array var
  379.                     if (is_string($value) && !$isQuoted && false !== strpos($value': ')) {
  380.                         // embedded mapping?
  381.                         try {
  382.                             $pos 0;
  383.                             $value self::parseMapping('{'.$value.'}'$flags$pos$references);
  384.                         } catch (\InvalidArgumentException $e) {
  385.                             // no, it's not
  386.                         }
  387.                     }
  388.                     --$i;
  389.             }
  390.             if (null !== $tag) {
  391.                 $value = new TaggedValue($tag$value);
  392.             }
  393.             $output[] = $value;
  394.             ++$i;
  395.         }
  396.         throw new ParseException(sprintf('Malformed inline YAML string: %s.'$sequence), self::$parsedLineNumber 1nullself::$parsedFilename);
  397.     }
  398.     /**
  399.      * Parses a YAML mapping.
  400.      *
  401.      * @param string $mapping
  402.      * @param int    $flags
  403.      * @param int    &$i
  404.      * @param array  $references
  405.      *
  406.      * @return array|\stdClass
  407.      *
  408.      * @throws ParseException When malformed inline YAML string is parsed
  409.      */
  410.     private static function parseMapping($mapping$flags, &$i 0$references = array())
  411.     {
  412.         $output = array();
  413.         $len strlen($mapping);
  414.         ++$i;
  415.         $allowOverwrite false;
  416.         // {foo: bar, bar:foo, ...}
  417.         while ($i $len) {
  418.             switch ($mapping[$i]) {
  419.                 case ' ':
  420.                 case ',':
  421.                     ++$i;
  422.                     continue 2;
  423.                 case '}':
  424.                     if (self::$objectForMap) {
  425.                         return (object) $output;
  426.                     }
  427.                     return $output;
  428.             }
  429.             // key
  430.             $isKeyQuoted in_array($mapping[$i], array('"'"'"), true);
  431.             $key self::parseScalar($mapping$flags, array(':'' '), $ifalse, array(), true);
  432.             if (':' !== $key && false === $i strpos($mapping':'$i)) {
  433.                 break;
  434.             }
  435.             if (':' === $key) {
  436.                 @trigger_error(self::getDeprecationMessage('Omitting the key of a mapping is deprecated and will throw a ParseException in 4.0.'), E_USER_DEPRECATED);
  437.             }
  438.             if (!$isKeyQuoted) {
  439.                 $evaluatedKey self::evaluateScalar($key$flags$references);
  440.                 if ('' !== $key && $evaluatedKey !== $key && !is_string($evaluatedKey) && !is_int($evaluatedKey)) {
  441.                     @trigger_error(self::getDeprecationMessage('Implicit casting of incompatible mapping keys to strings is deprecated since Symfony 3.3 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0. Quote your evaluable mapping keys instead.'), E_USER_DEPRECATED);
  442.                 }
  443.             }
  444.             if (':' !== $key && !$isKeyQuoted && (!isset($mapping[$i 1]) || !in_array($mapping[$i 1], array(' '',''['']''{''}'), true))) {
  445.                 @trigger_error(self::getDeprecationMessage('Using a colon after an unquoted mapping key that is not followed by an indication character (i.e. " ", ",", "[", "]", "{", "}") is deprecated since Symfony 3.2 and will throw a ParseException in 4.0.'), E_USER_DEPRECATED);
  446.             }
  447.             if ('<<' === $key) {
  448.                 $allowOverwrite true;
  449.             }
  450.             while ($i $len) {
  451.                 if (':' === $mapping[$i] || ' ' === $mapping[$i]) {
  452.                     ++$i;
  453.                     continue;
  454.                 }
  455.                 $tag self::parseTag($mapping$i$flags);
  456.                 switch ($mapping[$i]) {
  457.                     case '[':
  458.                         // nested sequence
  459.                         $value self::parseSequence($mapping$flags$i$references);
  460.                         // Spec: Keys MUST be unique; first one wins.
  461.                         // Parser cannot abort this mapping earlier, since lines
  462.                         // are processed sequentially.
  463.                         // But overwriting is allowed when a merge node is used in current block.
  464.                         if ('<<' === $key) {
  465.                             foreach ($value as $parsedValue) {
  466.                                 $output += $parsedValue;
  467.                             }
  468.                         } elseif ($allowOverwrite || !isset($output[$key])) {
  469.                             if (null !== $tag) {
  470.                                 $output[$key] = new TaggedValue($tag$value);
  471.                             } else {
  472.                                 $output[$key] = $value;
  473.                             }
  474.                         } elseif (isset($output[$key])) {
  475.                             @trigger_error(self::getDeprecationMessage(sprintf('Duplicate key "%s" detected whilst parsing YAML. Silent handling of duplicate mapping keys in YAML is deprecated since Symfony 3.2 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0.'$key)), E_USER_DEPRECATED);
  476.                         }
  477.                         break;
  478.                     case '{':
  479.                         // nested mapping
  480.                         $value self::parseMapping($mapping$flags$i$references);
  481.                         // Spec: Keys MUST be unique; first one wins.
  482.                         // Parser cannot abort this mapping earlier, since lines
  483.                         // are processed sequentially.
  484.                         // But overwriting is allowed when a merge node is used in current block.
  485.                         if ('<<' === $key) {
  486.                             $output += $value;
  487.                         } elseif ($allowOverwrite || !isset($output[$key])) {
  488.                             if (null !== $tag) {
  489.                                 $output[$key] = new TaggedValue($tag$value);
  490.                             } else {
  491.                                 $output[$key] = $value;
  492.                             }
  493.                         } elseif (isset($output[$key])) {
  494.                             @trigger_error(self::getDeprecationMessage(sprintf('Duplicate key "%s" detected whilst parsing YAML. Silent handling of duplicate mapping keys in YAML is deprecated since Symfony 3.2 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0.'$key)), E_USER_DEPRECATED);
  495.                         }
  496.                         break;
  497.                     default:
  498.                         $value self::parseScalar($mapping$flags, array(',''}'), $inull === $tag$references);
  499.                         // Spec: Keys MUST be unique; first one wins.
  500.                         // Parser cannot abort this mapping earlier, since lines
  501.                         // are processed sequentially.
  502.                         // But overwriting is allowed when a merge node is used in current block.
  503.                         if ('<<' === $key) {
  504.                             $output += $value;
  505.                         } elseif ($allowOverwrite || !isset($output[$key])) {
  506.                             if (null !== $tag) {
  507.                                 $output[$key] = new TaggedValue($tag$value);
  508.                             } else {
  509.                                 $output[$key] = $value;
  510.                             }
  511.                         } elseif (isset($output[$key])) {
  512.                             @trigger_error(self::getDeprecationMessage(sprintf('Duplicate key "%s" detected whilst parsing YAML. Silent handling of duplicate mapping keys in YAML is deprecated since Symfony 3.2 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0.'$key)), E_USER_DEPRECATED);
  513.                         }
  514.                         --$i;
  515.                 }
  516.                 ++$i;
  517.                 continue 2;
  518.             }
  519.         }
  520.         throw new ParseException(sprintf('Malformed inline YAML string: %s.'$mapping), self::$parsedLineNumber 1nullself::$parsedFilename);
  521.     }
  522.     /**
  523.      * Evaluates scalars and replaces magic values.
  524.      *
  525.      * @param string $scalar
  526.      * @param int    $flags
  527.      * @param array  $references
  528.      *
  529.      * @return mixed The evaluated YAML string
  530.      *
  531.      * @throws ParseException when object parsing support was disabled and the parser detected a PHP object or when a reference could not be resolved
  532.      */
  533.     private static function evaluateScalar($scalar$flags$references = array())
  534.     {
  535.         $scalar trim($scalar);
  536.         $scalarLower strtolower($scalar);
  537.         if (=== strpos($scalar'*')) {
  538.             if (false !== $pos strpos($scalar'#')) {
  539.                 $value substr($scalar1$pos 2);
  540.             } else {
  541.                 $value substr($scalar1);
  542.             }
  543.             // an unquoted *
  544.             if (false === $value || '' === $value) {
  545.                 throw new ParseException('A reference must contain at least one character.'self::$parsedLineNumber 1$valueself::$parsedFilename);
  546.             }
  547.             if (!array_key_exists($value$references)) {
  548.                 throw new ParseException(sprintf('Reference "%s" does not exist.'$value), self::$parsedLineNumber 1$valueself::$parsedFilename);
  549.             }
  550.             return $references[$value];
  551.         }
  552.         switch (true) {
  553.             case 'null' === $scalarLower:
  554.             case '' === $scalar:
  555.             case '~' === $scalar:
  556.                 return;
  557.             case 'true' === $scalarLower:
  558.                 return true;
  559.             case 'false' === $scalarLower:
  560.                 return false;
  561.             case '!' === $scalar[0]:
  562.                 switch (true) {
  563.                     case === strpos($scalar'!str'):
  564.                         @trigger_error(self::getDeprecationMessage('Support for the !str tag is deprecated since Symfony 3.4. Use the !!str tag instead.'), E_USER_DEPRECATED);
  565.                         return (string) substr($scalar5);
  566.                     case === strpos($scalar'!!str '):
  567.                         return (string) substr($scalar6);
  568.                     case === strpos($scalar'! '):
  569.                         @trigger_error(self::getDeprecationMessage('Using the non-specific tag "!" is deprecated since Symfony 3.4 as its behavior will change in 4.0. It will force non-evaluating your values in 4.0. Use plain integers or !!float instead.'), E_USER_DEPRECATED);
  570.                         return (int) self::parseScalar(substr($scalar2), $flags);
  571.                     case === strpos($scalar'!php/object:'):
  572.                         if (self::$objectSupport) {
  573.                             @trigger_error(self::getDeprecationMessage('The !php/object: tag to indicate dumped PHP objects is deprecated since Symfony 3.4 and will be removed in 4.0. Use the !php/object (without the colon) tag instead.'), E_USER_DEPRECATED);
  574.                             return unserialize(substr($scalar12));
  575.                         }
  576.                         if (self::$exceptionOnInvalidType) {
  577.                             throw new ParseException('Object support when parsing a YAML file has been disabled.'self::$parsedLineNumber 1$scalarself::$parsedFilename);
  578.                         }
  579.                         return;
  580.                     case === strpos($scalar'!!php/object:'):
  581.                         if (self::$objectSupport) {
  582.                             @trigger_error(self::getDeprecationMessage('The !!php/object: tag to indicate dumped PHP objects is deprecated since Symfony 3.1 and will be removed in 4.0. Use the !php/object (without the colon) tag instead.'), E_USER_DEPRECATED);
  583.                             return unserialize(substr($scalar13));
  584.                         }
  585.                         if (self::$exceptionOnInvalidType) {
  586.                             throw new ParseException('Object support when parsing a YAML file has been disabled.'self::$parsedLineNumber 1$scalarself::$parsedFilename);
  587.                         }
  588.                         return;
  589.                     case === strpos($scalar'!php/object'):
  590.                         if (self::$objectSupport) {
  591.                             return unserialize(self::parseScalar(substr($scalar12)));
  592.                         }
  593.                         if (self::$exceptionOnInvalidType) {
  594.                             throw new ParseException('Object support when parsing a YAML file has been disabled.'self::$parsedLineNumber 1$scalarself::$parsedFilename);
  595.                         }
  596.                         return;
  597.                     case === strpos($scalar'!php/const:'):
  598.                         if (self::$constantSupport) {
  599.                             @trigger_error(self::getDeprecationMessage('The !php/const: tag to indicate dumped PHP constants is deprecated since Symfony 3.4 and will be removed in 4.0. Use the !php/const (without the colon) tag instead.'), E_USER_DEPRECATED);
  600.                             if (defined($const substr($scalar11))) {
  601.                                 return constant($const);
  602.                             }
  603.                             throw new ParseException(sprintf('The constant "%s" is not defined.'$const), self::$parsedLineNumber 1$scalarself::$parsedFilename);
  604.                         }
  605.                         if (self::$exceptionOnInvalidType) {
  606.                             throw new ParseException(sprintf('The string "%s" could not be parsed as a constant. Have you forgotten to pass the "Yaml::PARSE_CONSTANT" flag to the parser?'$scalar), self::$parsedLineNumber 1$scalarself::$parsedFilename);
  607.                         }
  608.                         return;
  609.                     case === strpos($scalar'!php/const'):
  610.                         if (self::$constantSupport) {
  611.                             $i 0;
  612.                             if (defined($const self::parseScalar(substr($scalar11), 0null$ifalse))) {
  613.                                 return constant($const);
  614.                             }
  615.                             throw new ParseException(sprintf('The constant "%s" is not defined.'$const), self::$parsedLineNumber 1$scalarself::$parsedFilename);
  616.                         }
  617.                         if (self::$exceptionOnInvalidType) {
  618.                             throw new ParseException(sprintf('The string "%s" could not be parsed as a constant. Have you forgotten to pass the "Yaml::PARSE_CONSTANT" flag to the parser?'$scalar), self::$parsedLineNumber 1$scalarself::$parsedFilename);
  619.                         }
  620.                         return;
  621.                     case === strpos($scalar'!!float '):
  622.                         return (float) substr($scalar8);
  623.                     case === strpos($scalar'!!binary '):
  624.                         return self::evaluateBinaryScalar(substr($scalar9));
  625.                     default:
  626.                         @trigger_error(self::getDeprecationMessage(sprintf('Using the unquoted scalar value "%s" is deprecated since Symfony 3.3 and will be considered as a tagged value in 4.0. You must quote it.'$scalar)), E_USER_DEPRECATED);
  627.                 }
  628.             // Optimize for returning strings.
  629.             // no break
  630.             case '+' === $scalar[0] || '-' === $scalar[0] || '.' === $scalar[0] || is_numeric($scalar[0]):
  631.                 switch (true) {
  632.                     case Parser::preg_match('{^[+-]?[0-9][0-9_]*$}'$scalar):
  633.                         $scalar str_replace('_''', (string) $scalar);
  634.                         // omitting the break / return as integers are handled in the next case
  635.                         // no break
  636.                     case ctype_digit($scalar):
  637.                         $raw $scalar;
  638.                         $cast = (int) $scalar;
  639.                         return '0' == $scalar[0] ? octdec($scalar) : (((string) $raw == (string) $cast) ? $cast $raw);
  640.                     case '-' === $scalar[0] && ctype_digit(substr($scalar1)):
  641.                         $raw $scalar;
  642.                         $cast = (int) $scalar;
  643.                         return '0' == $scalar[1] ? octdec($scalar) : (((string) $raw === (string) $cast) ? $cast $raw);
  644.                     case is_numeric($scalar):
  645.                     case Parser::preg_match(self::getHexRegex(), $scalar):
  646.                         $scalar str_replace('_'''$scalar);
  647.                         return '0x' === $scalar[0].$scalar[1] ? hexdec($scalar) : (float) $scalar;
  648.                     case '.inf' === $scalarLower:
  649.                     case '.nan' === $scalarLower:
  650.                         return -log(0);
  651.                     case '-.inf' === $scalarLower:
  652.                         return log(0);
  653.                     case Parser::preg_match('/^(-|\+)?[0-9][0-9,]*(\.[0-9_]+)?$/'$scalar):
  654.                     case Parser::preg_match('/^(-|\+)?[0-9][0-9_]*(\.[0-9_]+)?$/'$scalar):
  655.                         if (false !== strpos($scalar',')) {
  656.                             @trigger_error(self::getDeprecationMessage('Using the comma as a group separator for floats is deprecated since Symfony 3.2 and will be removed in 4.0.'), E_USER_DEPRECATED);
  657.                         }
  658.                         return (float) str_replace(array(',''_'), ''$scalar);
  659.                     case Parser::preg_match(self::getTimestampRegex(), $scalar):
  660.                         if (Yaml::PARSE_DATETIME $flags) {
  661.                             // When no timezone is provided in the parsed date, YAML spec says we must assume UTC.
  662.                             return new \DateTime($scalar, new \DateTimeZone('UTC'));
  663.                         }
  664.                         $timeZone date_default_timezone_get();
  665.                         date_default_timezone_set('UTC');
  666.                         $time strtotime($scalar);
  667.                         date_default_timezone_set($timeZone);
  668.                         return $time;
  669.                 }
  670.         }
  671.         return (string) $scalar;
  672.     }
  673.     /**
  674.      * @param string $value
  675.      * @param int    &$i
  676.      * @param int    $flags
  677.      *
  678.      * @return null|string
  679.      */
  680.     private static function parseTag($value, &$i$flags)
  681.     {
  682.         if ('!' !== $value[$i]) {
  683.             return;
  684.         }
  685.         $tagLength strcspn($value" \t\n"$i 1);
  686.         $tag substr($value$i 1$tagLength);
  687.         $nextOffset $i $tagLength 1;
  688.         $nextOffset += strspn($value' '$nextOffset);
  689.         // Is followed by a scalar
  690.         if ((!isset($value[$nextOffset]) || !in_array($value[$nextOffset], array('[''{'), true)) && 'tagged' !== $tag) {
  691.             // Manage non-whitelisted scalars in {@link self::evaluateScalar()}
  692.             return;
  693.         }
  694.         // Built-in tags
  695.         if ($tag && '!' === $tag[0]) {
  696.             throw new ParseException(sprintf('The built-in tag "!%s" is not implemented.'$tag), self::$parsedLineNumber 1$valueself::$parsedFilename);
  697.         }
  698.         if (Yaml::PARSE_CUSTOM_TAGS $flags) {
  699.             $i $nextOffset;
  700.             return $tag;
  701.         }
  702.         throw new ParseException(sprintf('Tags support is not enabled. Enable the `Yaml::PARSE_CUSTOM_TAGS` flag to use "!%s".'$tag), self::$parsedLineNumber 1$valueself::$parsedFilename);
  703.     }
  704.     /**
  705.      * @param string $scalar
  706.      *
  707.      * @return string
  708.      *
  709.      * @internal
  710.      */
  711.     public static function evaluateBinaryScalar($scalar)
  712.     {
  713.         $parsedBinaryData self::parseScalar(preg_replace('/\s/'''$scalar));
  714.         if (!== (strlen($parsedBinaryData) % 4)) {
  715.             throw new ParseException(sprintf('The normalized base64 encoded data (data without whitespace characters) length must be a multiple of four (%d bytes given).'strlen($parsedBinaryData)), self::$parsedLineNumber 1$scalarself::$parsedFilename);
  716.         }
  717.         if (!Parser::preg_match('#^[A-Z0-9+/]+={0,2}$#i'$parsedBinaryData)) {
  718.             throw new ParseException(sprintf('The base64 encoded data (%s) contains invalid characters.'$parsedBinaryData), self::$parsedLineNumber 1$scalarself::$parsedFilename);
  719.         }
  720.         return base64_decode($parsedBinaryDatatrue);
  721.     }
  722.     private static function isBinaryString($value)
  723.     {
  724.         return !preg_match('//u'$value) || preg_match('/[^\x00\x07-\x0d\x1B\x20-\xff]/'$value);
  725.     }
  726.     /**
  727.      * Gets a regex that matches a YAML date.
  728.      *
  729.      * @return string The regular expression
  730.      *
  731.      * @see http://www.yaml.org/spec/1.2/spec.html#id2761573
  732.      */
  733.     private static function getTimestampRegex()
  734.     {
  735.         return <<<EOF
  736.         ~^
  737.         (?P<year>[0-9][0-9][0-9][0-9])
  738.         -(?P<month>[0-9][0-9]?)
  739.         -(?P<day>[0-9][0-9]?)
  740.         (?:(?:[Tt]|[ \t]+)
  741.         (?P<hour>[0-9][0-9]?)
  742.         :(?P<minute>[0-9][0-9])
  743.         :(?P<second>[0-9][0-9])
  744.         (?:\.(?P<fraction>[0-9]*))?
  745.         (?:[ \t]*(?P<tz>Z|(?P<tz_sign>[-+])(?P<tz_hour>[0-9][0-9]?)
  746.         (?::(?P<tz_minute>[0-9][0-9]))?))?)?
  747.         $~x
  748. EOF;
  749.     }
  750.     /**
  751.      * Gets a regex that matches a YAML number in hexadecimal notation.
  752.      *
  753.      * @return string
  754.      */
  755.     private static function getHexRegex()
  756.     {
  757.         return '~^0x[0-9a-f_]++$~i';
  758.     }
  759.     private static function getDeprecationMessage($message)
  760.     {
  761.         $message rtrim($message'.');
  762.         if (null !== self::$parsedFilename) {
  763.             $message .= ' in '.self::$parsedFilename;
  764.         }
  765.         if (-!== self::$parsedLineNumber) {
  766.             $message .= ' on line '.(self::$parsedLineNumber 1);
  767.         }
  768.         return $message.'.';
  769.     }
  770. }