vendor/symfony/yaml/Inline.php line 678

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