No Description

CliDumper.php 21KB

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