Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

vendor/symfony/var-dumper/Dumper/CliDumper.php line 67

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\VarDumper\Dumper;
  11. use Symfony\Component\VarDumper\Cloner\Cursor;
  12. use Symfony\Component\VarDumper\Cloner\Stub;
  13. /**
  14.  * CliDumper dumps variables for command line output.
  15.  *
  16.  * @author Nicolas Grekas <p@tchwork.com>
  17.  */
  18. class CliDumper extends AbstractDumper
  19. {
  20.     public static $defaultColors;
  21.     public static $defaultOutput 'php://stdout';
  22.     protected $colors;
  23.     protected $maxStringWidth 0;
  24.     protected $styles = [
  25.         // See http://en.wikipedia.org/wiki/ANSI_escape_code#graphics
  26.         'default' => '0;38;5;208',
  27.         'num' => '1;38;5;38',
  28.         'const' => '1;38;5;208',
  29.         'str' => '1;38;5;113',
  30.         'note' => '38;5;38',
  31.         'ref' => '38;5;247',
  32.         'public' => '',
  33.         'protected' => '',
  34.         'private' => '',
  35.         'meta' => '38;5;170',
  36.         'key' => '38;5;113',
  37.         'index' => '38;5;38',
  38.     ];
  39.     protected static $controlCharsRx '/[\x00-\x1F\x7F]+/';
  40.     protected static $controlCharsMap = [
  41.         "\t" => '\t',
  42.         "\n" => '\n',
  43.         "\v" => '\v',
  44.         "\f" => '\f',
  45.         "\r" => '\r',
  46.         "\033" => '\e',
  47.     ];
  48.     protected $collapseNextHash false;
  49.     protected $expandNextHash false;
  50.     private $displayOptions = [
  51.         'fileLinkFormat' => null,
  52.     ];
  53.     private $handlesHrefGracefully;
  54.     /**
  55.      * {@inheritdoc}
  56.      */
  57.     public function __construct($output nullstring $charset nullint $flags 0)
  58.     {
  59.         parent::__construct($output$charset$flags);
  60.         if ('\\' === \DIRECTORY_SEPARATOR && !$this->isWindowsTrueColor()) {
  61.             // Use only the base 16 xterm colors when using ANSICON or standard Windows 10 CLI
  62.             $this->setStyles([
  63.                 'default' => '31',
  64.                 'num' => '1;34',
  65.                 'const' => '1;31',
  66.                 'str' => '1;32',
  67.                 'note' => '34',
  68.                 'ref' => '1;30',
  69.                 'meta' => '35',
  70.                 'key' => '32',
  71.                 'index' => '34',
  72.             ]);
  73.         }
  74.         $this->displayOptions['fileLinkFormat'] = \ini_get('xdebug.file_link_format') ?: get_cfg_var('xdebug.file_link_format') ?: 'file://%f#L%l';
  75.     }
  76.     /**
  77.      * Enables/disables colored output.
  78.      */
  79.     public function setColors(bool $colors)
  80.     {
  81.         $this->colors $colors;
  82.     }
  83.     /**
  84.      * Sets the maximum number of characters per line for dumped strings.
  85.      */
  86.     public function setMaxStringWidth(int $maxStringWidth)
  87.     {
  88.         $this->maxStringWidth $maxStringWidth;
  89.     }
  90.     /**
  91.      * Configures styles.
  92.      *
  93.      * @param array $styles A map of style names to style definitions
  94.      */
  95.     public function setStyles(array $styles)
  96.     {
  97.         $this->styles $styles $this->styles;
  98.     }
  99.     /**
  100.      * Configures display options.
  101.      *
  102.      * @param array $displayOptions A map of display options to customize the behavior
  103.      */
  104.     public function setDisplayOptions(array $displayOptions)
  105.     {
  106.         $this->displayOptions $displayOptions $this->displayOptions;
  107.     }
  108.     /**
  109.      * {@inheritdoc}
  110.      */
  111.     public function dumpScalar(Cursor $cursorstring $type$value)
  112.     {
  113.         $this->dumpKey($cursor);
  114.         $this->collapseNextHash $this->expandNextHash false;
  115.         $style 'const';
  116.         $attr $cursor->attr;
  117.         switch ($type) {
  118.             case 'default':
  119.                 $style 'default';
  120.                 break;
  121.             case 'integer':
  122.                 $style 'num';
  123.                 if (isset($this->styles['integer'])) {
  124.                     $style 'integer';
  125.                 }
  126.                 break;
  127.             case 'double':
  128.                 $style 'num';
  129.                 if (isset($this->styles['float'])) {
  130.                     $style 'float';
  131.                 }
  132.                 switch (true) {
  133.                     case \INF === $value:  $value 'INF'; break;
  134.                     case -\INF === $value$value '-INF'; break;
  135.                     case is_nan($value):  $value 'NAN'; break;
  136.                     default:
  137.                         $value = (string) $value;
  138.                         if (!str_contains($value$this->decimalPoint)) {
  139.                             $value .= $this->decimalPoint.'0';
  140.                         }
  141.                         break;
  142.                 }
  143.                 break;
  144.             case 'NULL':
  145.                 $value 'null';
  146.                 break;
  147.             case 'boolean':
  148.                 $value $value 'true' 'false';
  149.                 break;
  150.             default:
  151.                 $attr += ['value' => $this->utf8Encode($value)];
  152.                 $value $this->utf8Encode($type);
  153.                 break;
  154.         }
  155.         $this->line .= $this->style($style$value$attr);
  156.         $this->endValue($cursor);
  157.     }
  158.     /**
  159.      * {@inheritdoc}
  160.      */
  161.     public function dumpString(Cursor $cursorstring $strbool $binint $cut)
  162.     {
  163.         $this->dumpKey($cursor);
  164.         $this->collapseNextHash $this->expandNextHash false;
  165.         $attr $cursor->attr;
  166.         if ($bin) {
  167.             $str $this->utf8Encode($str);
  168.         }
  169.         if ('' === $str) {
  170.             $this->line .= '""';
  171.             if ($cut) {
  172.                 $this->line .= '…'.$cut;
  173.             }
  174.             $this->endValue($cursor);
  175.         } else {
  176.             $attr += [
  177.                 'length' => <= $cut mb_strlen($str'UTF-8') + $cut 0,
  178.                 'binary' => $bin,
  179.             ];
  180.             $str $bin && false !== strpos($str"\0") ? [$str] : explode("\n"$str);
  181.             if (isset($str[1]) && !isset($str[2]) && !isset($str[1][0])) {
  182.                 unset($str[1]);
  183.                 $str[0] .= "\n";
  184.             }
  185.             $m \count($str) - 1;
  186.             $i $lineCut 0;
  187.             if (self::DUMP_STRING_LENGTH $this->flags) {
  188.                 $this->line .= '('.$attr['length'].') ';
  189.             }
  190.             if ($bin) {
  191.                 $this->line .= 'b';
  192.             }
  193.             if ($m) {
  194.                 $this->line .= '"""';
  195.                 $this->dumpLine($cursor->depth);
  196.             } else {
  197.                 $this->line .= '"';
  198.             }
  199.             foreach ($str as $str) {
  200.                 if ($i $m) {
  201.                     $str .= "\n";
  202.                 }
  203.                 if ($this->maxStringWidth && $this->maxStringWidth $len mb_strlen($str'UTF-8')) {
  204.                     $str mb_substr($str0$this->maxStringWidth'UTF-8');
  205.                     $lineCut $len $this->maxStringWidth;
  206.                 }
  207.                 if ($m && $cursor->depth) {
  208.                     $this->line .= $this->indentPad;
  209.                 }
  210.                 if ('' !== $str) {
  211.                     $this->line .= $this->style('str'$str$attr);
  212.                 }
  213.                 if ($i++ == $m) {
  214.                     if ($m) {
  215.                         if ('' !== $str) {
  216.                             $this->dumpLine($cursor->depth);
  217.                             if ($cursor->depth) {
  218.                                 $this->line .= $this->indentPad;
  219.                             }
  220.                         }
  221.                         $this->line .= '"""';
  222.                     } else {
  223.                         $this->line .= '"';
  224.                     }
  225.                     if ($cut 0) {
  226.                         $this->line .= '…';
  227.                         $lineCut 0;
  228.                     } elseif ($cut) {
  229.                         $lineCut += $cut;
  230.                     }
  231.                 }
  232.                 if ($lineCut) {
  233.                     $this->line .= '…'.$lineCut;
  234.                     $lineCut 0;
  235.                 }
  236.                 if ($i $m) {
  237.                     $this->endValue($cursor);
  238.                 } else {
  239.                     $this->dumpLine($cursor->depth);
  240.                 }
  241.             }
  242.         }
  243.     }
  244.     /**
  245.      * {@inheritdoc}
  246.      */
  247.     public function enterHash(Cursor $cursorint $type$classbool $hasChild)
  248.     {
  249.         if (null === $this->colors) {
  250.             $this->colors $this->supportsColors();
  251.         }
  252.         $this->dumpKey($cursor);
  253.         $this->expandNextHash false;
  254.         $attr $cursor->attr;
  255.         if ($this->collapseNextHash) {
  256.             $cursor->skipChildren true;
  257.             $this->collapseNextHash $hasChild false;
  258.         }
  259.         $class $this->utf8Encode($class);
  260.         if (Cursor::HASH_OBJECT === $type) {
  261.             $prefix $class && 'stdClass' !== $class $this->style('note'$class$attr).(empty($attr['cut_hash']) ? ' {' '') : '{';
  262.         } elseif (Cursor::HASH_RESOURCE === $type) {
  263.             $prefix $this->style('note'$class.' resource'$attr).($hasChild ' {' ' ');
  264.         } else {
  265.             $prefix $class && !(self::DUMP_LIGHT_ARRAY $this->flags) ? $this->style('note''array:'.$class).' [' '[';
  266.         }
  267.         if (($cursor->softRefCount || $cursor->softRefHandle) && empty($attr['cut_hash'])) {
  268.             $prefix .= $this->style('ref', (Cursor::HASH_RESOURCE === $type '@' '#').($cursor->softRefHandle $cursor->softRefHandle $cursor->softRefTo), ['count' => $cursor->softRefCount]);
  269.         } elseif ($cursor->hardRefTo && !$cursor->refIndex && $class) {
  270.             $prefix .= $this->style('ref''&'.$cursor->hardRefTo, ['count' => $cursor->hardRefCount]);
  271.         } elseif (!$hasChild && Cursor::HASH_RESOURCE === $type) {
  272.             $prefix substr($prefix0, -1);
  273.         }
  274.         $this->line .= $prefix;
  275.         if ($hasChild) {
  276.             $this->dumpLine($cursor->depth);
  277.         }
  278.     }
  279.     /**
  280.      * {@inheritdoc}
  281.      */
  282.     public function leaveHash(Cursor $cursorint $type$classbool $hasChildint $cut)
  283.     {
  284.         if (empty($cursor->attr['cut_hash'])) {
  285.             $this->dumpEllipsis($cursor$hasChild$cut);
  286.             $this->line .= Cursor::HASH_OBJECT === $type '}' : (Cursor::HASH_RESOURCE !== $type ']' : ($hasChild '}' ''));
  287.         }
  288.         $this->endValue($cursor);
  289.     }
  290.     /**
  291.      * Dumps an ellipsis for cut children.
  292.      *
  293.      * @param bool $hasChild When the dump of the hash has child item
  294.      * @param int  $cut      The number of items the hash has been cut by
  295.      */
  296.     protected function dumpEllipsis(Cursor $cursorbool $hasChildint $cut)
  297.     {
  298.         if ($cut) {
  299.             $this->line .= ' …';
  300.             if ($cut) {
  301.                 $this->line .= $cut;
  302.             }
  303.             if ($hasChild) {
  304.                 $this->dumpLine($cursor->depth 1);
  305.             }
  306.         }
  307.     }
  308.     /**
  309.      * Dumps a key in a hash structure.
  310.      */
  311.     protected function dumpKey(Cursor $cursor)
  312.     {
  313.         if (null !== $key $cursor->hashKey) {
  314.             if ($cursor->hashKeyIsBinary) {
  315.                 $key $this->utf8Encode($key);
  316.             }
  317.             $attr = ['binary' => $cursor->hashKeyIsBinary];
  318.             $bin $cursor->hashKeyIsBinary 'b' '';
  319.             $style 'key';
  320.             switch ($cursor->hashType) {
  321.                 default:
  322.                 case Cursor::HASH_INDEXED:
  323.                     if (self::DUMP_LIGHT_ARRAY $this->flags) {
  324.                         break;
  325.                     }
  326.                     $style 'index';
  327.                     // no break
  328.                 case Cursor::HASH_ASSOC:
  329.                     if (\is_int($key)) {
  330.                         $this->line .= $this->style($style$key).' => ';
  331.                     } else {
  332.                         $this->line .= $bin.'"'.$this->style($style$key).'" => ';
  333.                     }
  334.                     break;
  335.                 case Cursor::HASH_RESOURCE:
  336.                     $key "\0~\0".$key;
  337.                     // no break
  338.                 case Cursor::HASH_OBJECT:
  339.                     if (!isset($key[0]) || "\0" !== $key[0]) {
  340.                         $this->line .= '+'.$bin.$this->style('public'$key).': ';
  341.                     } elseif (strpos($key"\0"1)) {
  342.                         $key explode("\0"substr($key1), 2);
  343.                         switch ($key[0][0]) {
  344.                             case '+'// User inserted keys
  345.                                 $attr['dynamic'] = true;
  346.                                 $this->line .= '+'.$bin.'"'.$this->style('public'$key[1], $attr).'": ';
  347.                                 break 2;
  348.                             case '~':
  349.                                 $style 'meta';
  350.                                 if (isset($key[0][1])) {
  351.                                     parse_str(substr($key[0], 1), $attr);
  352.                                     $attr += ['binary' => $cursor->hashKeyIsBinary];
  353.                                 }
  354.                                 break;
  355.                             case '*':
  356.                                 $style 'protected';
  357.                                 $bin '#'.$bin;
  358.                                 break;
  359.                             default:
  360.                                 $attr['class'] = $key[0];
  361.                                 $style 'private';
  362.                                 $bin '-'.$bin;
  363.                                 break;
  364.                         }
  365.                         if (isset($attr['collapse'])) {
  366.                             if ($attr['collapse']) {
  367.                                 $this->collapseNextHash true;
  368.                             } else {
  369.                                 $this->expandNextHash true;
  370.                             }
  371.                         }
  372.                         $this->line .= $bin.$this->style($style$key[1], $attr).($attr['separator'] ?? ': ');
  373.                     } else {
  374.                         // This case should not happen
  375.                         $this->line .= '-'.$bin.'"'.$this->style('private'$key, ['class' => '']).'": ';
  376.                     }
  377.                     break;
  378.             }
  379.             if ($cursor->hardRefTo) {
  380.                 $this->line .= $this->style('ref''&'.($cursor->hardRefCount $cursor->hardRefTo ''), ['count' => $cursor->hardRefCount]).' ';
  381.             }
  382.         }
  383.     }
  384.     /**
  385.      * Decorates a value with some style.
  386.      *
  387.      * @param string $style The type of style being applied
  388.      * @param string $value The value being styled
  389.      * @param array  $attr  Optional context information
  390.      *
  391.      * @return string
  392.      */
  393.     protected function style(string $stylestring $value, array $attr = [])
  394.     {
  395.         if (null === $this->colors) {
  396.             $this->colors $this->supportsColors();
  397.         }
  398.         if (null === $this->handlesHrefGracefully) {
  399.             $this->handlesHrefGracefully 'JetBrains-JediTerm' !== getenv('TERMINAL_EMULATOR')
  400.                 && (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100)
  401.                 && !isset($_SERVER['IDEA_INITIAL_DIRECTORY']);
  402.         }
  403.         if (isset($attr['ellipsis'], $attr['ellipsis-type'])) {
  404.             $prefix substr($value0, -$attr['ellipsis']);
  405.             if ('cli' === \PHP_SAPI && 'path' === $attr['ellipsis-type'] && isset($_SERVER[$pwd '\\' === \DIRECTORY_SEPARATOR 'CD' 'PWD']) && str_starts_with($prefix$_SERVER[$pwd])) {
  406.                 $prefix '.'.substr($prefix\strlen($_SERVER[$pwd]));
  407.             }
  408.             if (!empty($attr['ellipsis-tail'])) {
  409.                 $prefix .= substr($value, -$attr['ellipsis'], $attr['ellipsis-tail']);
  410.                 $value substr($value, -$attr['ellipsis'] + $attr['ellipsis-tail']);
  411.             } else {
  412.                 $value substr($value, -$attr['ellipsis']);
  413.             }
  414.             $value $this->style('default'$prefix).$this->style($style$value);
  415.             goto href;
  416.         }
  417.         $map = static::$controlCharsMap;
  418.         $startCchr $this->colors "\033[m\033[{$this->styles['default']}m" '';
  419.         $endCchr $this->colors "\033[m\033[{$this->styles[$style]}m" '';
  420.         $value preg_replace_callback(static::$controlCharsRx, function ($c) use ($map$startCchr$endCchr) {
  421.             $s $startCchr;
  422.             $c $c[$i 0];
  423.             do {
  424.                 $s .= $map[$c[$i]] ?? sprintf('\x%02X'\ord($c[$i]));
  425.             } while (isset($c[++$i]));
  426.             return $s.$endCchr;
  427.         }, $value, -1$cchrCount);
  428.         if ($this->colors) {
  429.             if ($cchrCount && "\033" === $value[0]) {
  430.                 $value substr($value\strlen($startCchr));
  431.             } else {
  432.                 $value "\033[{$this->styles[$style]}m".$value;
  433.             }
  434.             if ($cchrCount && str_ends_with($value$endCchr)) {
  435.                 $value substr($value0, -\strlen($endCchr));
  436.             } else {
  437.                 $value .= "\033[{$this->styles['default']}m";
  438.             }
  439.         }
  440.         href:
  441.         if ($this->colors && $this->handlesHrefGracefully) {
  442.             if (isset($attr['file']) && $href $this->getSourceLink($attr['file'], $attr['line'] ?? 0)) {
  443.                 if ('note' === $style) {
  444.                     $value .= "\033]8;;{$href}\033\\^\033]8;;\033\\";
  445.                 } else {
  446.                     $attr['href'] = $href;
  447.                 }
  448.             }
  449.             if (isset($attr['href'])) {
  450.                 $value "\033]8;;{$attr['href']}\033\\{$value}\033]8;;\033\\";
  451.             }
  452.         } elseif ($attr['if_links'] ?? false) {
  453.             return '';
  454.         }
  455.         return $value;
  456.     }
  457.     /**
  458.      * @return bool
  459.      */
  460.     protected function supportsColors()
  461.     {
  462.         if ($this->outputStream !== static::$defaultOutput) {
  463.             return $this->hasColorSupport($this->outputStream);
  464.         }
  465.         if (null !== static::$defaultColors) {
  466.             return static::$defaultColors;
  467.         }
  468.         if (isset($_SERVER['argv'][1])) {
  469.             $colors $_SERVER['argv'];
  470.             $i \count($colors);
  471.             while (--$i 0) {
  472.                 if (isset($colors[$i][5])) {
  473.                     switch ($colors[$i]) {
  474.                         case '--ansi':
  475.                         case '--color':
  476.                         case '--color=yes':
  477.                         case '--color=force':
  478.                         case '--color=always':
  479.                         case '--colors=always':
  480.                             return static::$defaultColors true;
  481.                         case '--no-ansi':
  482.                         case '--color=no':
  483.                         case '--color=none':
  484.                         case '--color=never':
  485.                         case '--colors=never':
  486.                             return static::$defaultColors false;
  487.                     }
  488.                 }
  489.             }
  490.         }
  491.         $h stream_get_meta_data($this->outputStream) + ['wrapper_type' => null];
  492.         $h 'Output' === $h['stream_type'] && 'PHP' === $h['wrapper_type'] ? fopen('php://stdout''w') : $this->outputStream;
  493.         return static::$defaultColors $this->hasColorSupport($h);
  494.     }
  495.     /**
  496.      * {@inheritdoc}
  497.      */
  498.     protected function dumpLine(int $depthbool $endOfValue false)
  499.     {
  500.         if ($this->colors) {
  501.             $this->line sprintf("\033[%sm%s\033[m"$this->styles['default'], $this->line);
  502.         }
  503.         parent::dumpLine($depth);
  504.     }
  505.     protected function endValue(Cursor $cursor)
  506.     {
  507.         if (-=== $cursor->hashType) {
  508.             return;
  509.         }
  510.         if (Stub::ARRAY_INDEXED === $cursor->hashType || Stub::ARRAY_ASSOC === $cursor->hashType) {
  511.             if (self::DUMP_TRAILING_COMMA $this->flags && $cursor->depth) {
  512.                 $this->line .= ',';
  513.             } elseif (self::DUMP_COMMA_SEPARATOR $this->flags && $cursor->hashLength $cursor->hashIndex) {
  514.                 $this->line .= ',';
  515.             }
  516.         }
  517.         $this->dumpLine($cursor->depthtrue);
  518.     }
  519.     /**
  520.      * Returns true if the stream supports colorization.
  521.      *
  522.      * Reference: Composer\XdebugHandler\Process::supportsColor
  523.      * https://github.com/composer/xdebug-handler
  524.      *
  525.      * @param mixed $stream A CLI output stream
  526.      */
  527.     private function hasColorSupport($stream): bool
  528.     {
  529.         if (!\is_resource($stream) || 'stream' !== get_resource_type($stream)) {
  530.             return false;
  531.         }
  532.         // Follow https://no-color.org/
  533.         if (isset($_SERVER['NO_COLOR']) || false !== getenv('NO_COLOR')) {
  534.             return false;
  535.         }
  536.         if ('Hyper' === getenv('TERM_PROGRAM')) {
  537.             return true;
  538.         }
  539.         if (\DIRECTORY_SEPARATOR === '\\') {
  540.             return (\function_exists('sapi_windows_vt100_support')
  541.                 && @sapi_windows_vt100_support($stream))
  542.                 || false !== getenv('ANSICON')
  543.                 || 'ON' === getenv('ConEmuANSI')
  544.                 || 'xterm' === getenv('TERM');
  545.         }
  546.         return stream_isatty($stream);
  547.     }
  548.     /**
  549.      * Returns true if the Windows terminal supports true color.
  550.      *
  551.      * Note that this does not check an output stream, but relies on environment
  552.      * variables from known implementations, or a PHP and Windows version that
  553.      * supports true color.
  554.      */
  555.     private function isWindowsTrueColor(): bool
  556.     {
  557.         $result 183 <= getenv('ANSICON_VER')
  558.             || 'ON' === getenv('ConEmuANSI')
  559.             || 'xterm' === getenv('TERM')
  560.             || 'Hyper' === getenv('TERM_PROGRAM');
  561.         if (!$result) {
  562.             $version sprintf(
  563.                 '%s.%s.%s',
  564.                 PHP_WINDOWS_VERSION_MAJOR,
  565.                 PHP_WINDOWS_VERSION_MINOR,
  566.                 PHP_WINDOWS_VERSION_BUILD
  567.             );
  568.             $result $version >= '10.0.15063';
  569.         }
  570.         return $result;
  571.     }
  572.     private function getSourceLink(string $fileint $line)
  573.     {
  574.         if ($fmt $this->displayOptions['fileLinkFormat']) {
  575.             return \is_string($fmt) ? strtr($fmt, ['%f' => $file'%l' => $line]) : ($fmt->format($file$line) ?: 'file://'.$file.'#L'.$line);
  576.         }
  577.         return false;
  578.     }
  579. }