123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Console\Helper;
- use Symfony\Component\Console\Output\OutputInterface;
- use InvalidArgumentException;
- /**
- * Provides helpers to display table output.
- *
- * @author Саша Стаменковић <umpirsky@gmail.com>
- */
- class TableHelper extends Helper
- {
- const LAYOUT_DEFAULT = 0;
- const LAYOUT_BORDERLESS = 1;
- /**
- * Table headers.
- *
- * @var array
- */
- private $headers = array();
- /**
- * Table rows.
- *
- * @var array
- */
- private $rows = array();
- // Rendering options
- private $paddingChar;
- private $horizontalBorderChar;
- private $verticalBorderChar;
- private $crossingChar;
- private $cellHeaderFormat;
- private $cellRowFormat;
- private $borderFormat;
- private $padType;
- /**
- * Column widths cache.
- *
- * @var array
- */
- private $columnWidths = array();
- /**
- * Number of columns cache.
- *
- * @var array
- */
- private $numberOfColumns;
- /**
- * @var OutputInterface
- */
- private $output;
- public function __construct()
- {
- $this->setLayout(self::LAYOUT_DEFAULT);
- }
- /**
- * Sets table layout type.
- *
- * @param int $layout self::LAYOUT_*
- *
- * @return TableHelper
- */
- public function setLayout($layout)
- {
- switch ($layout) {
- case self::LAYOUT_BORDERLESS:
- $this
- ->setPaddingChar(' ')
- ->setHorizontalBorderChar('=')
- ->setVerticalBorderChar(' ')
- ->setCrossingChar(' ')
- ->setCellHeaderFormat('<info>%s</info>')
- ->setCellRowFormat('<comment>%s</comment>')
- ->setBorderFormat('%s')
- ->setPadType(STR_PAD_RIGHT)
- ;
- break;
- case self::LAYOUT_DEFAULT:
- $this
- ->setPaddingChar(' ')
- ->setHorizontalBorderChar('-')
- ->setVerticalBorderChar('|')
- ->setCrossingChar('+')
- ->setCellHeaderFormat('<info>%s</info>')
- ->setCellRowFormat('<comment>%s</comment>')
- ->setBorderFormat('%s')
- ->setPadType(STR_PAD_RIGHT)
- ;
- break;
- default:
- throw new InvalidArgumentException(sprintf('Invalid table layout "%s".', $layout));
- break;
- };
- return $this;
- }
- public function setHeaders(array $headers)
- {
- $this->headers = array_values($headers);
- return $this;
- }
- public function setRows(array $rows)
- {
- $this->rows = array();
- return $this->addRows($rows);
- }
- public function addRows(array $rows)
- {
- foreach ($rows as $row) {
- $this->addRow($row);
- }
- return $this;
- }
- public function addRow(array $row)
- {
- $this->rows[] = array_values($row);
- return $this;
- }
- public function setRow($column, array $row)
- {
- $this->rows[$column] = $row;
- return $this;
- }
- /**
- * Sets padding character, used for cell padding.
- *
- * @param string $paddingChar
- *
- * @return TableHelper
- */
- public function setPaddingChar($paddingChar)
- {
- $this->paddingChar = $paddingChar;
- return $this;
- }
- /**
- * Sets horizontal border character.
- *
- * @param string $horizontalBorderChar
- *
- * @return TableHelper
- */
- public function setHorizontalBorderChar($horizontalBorderChar)
- {
- $this->horizontalBorderChar = $horizontalBorderChar;
- return $this;
- }
- /**
- * Sets vertical border character.
- *
- * @param string $verticalBorderChar
- *
- * @return TableHelper
- */
- public function setVerticalBorderChar($verticalBorderChar)
- {
- $this->verticalBorderChar = $verticalBorderChar;
- return $this;
- }
- /**
- * Sets crossing character.
- *
- * @param string $crossingChar
- *
- * @return TableHelper
- */
- public function setCrossingChar($crossingChar)
- {
- $this->crossingChar = $crossingChar;
- return $this;
- }
- /**
- * Sets header cell format.
- *
- * @param string $cellHeaderFormat
- *
- * @return TableHelper
- */
- public function setCellHeaderFormat($cellHeaderFormat)
- {
- $this->cellHeaderFormat = $cellHeaderFormat;
- return $this;
- }
- /**
- * Sets row cell format.
- *
- * @param string $cellRowFormat
- *
- * @return TableHelper
- */
- public function setCellRowFormat($cellRowFormat)
- {
- $this->cellRowFormat = $cellRowFormat;
- return $this;
- }
- /**
- * Sets table border format.
- *
- * @param string $borderFormat
- *
- * @return TableHelper
- */
- public function setBorderFormat($borderFormat)
- {
- $this->borderFormat = $borderFormat;
- return $this;
- }
- /**
- * Sets cell padding type.
- *
- * @param integer $padType STR_PAD_*
- *
- * @return TableHelper
- */
- public function setPadType($padType)
- {
- $this->padType = $padType;
- return $this;
- }
- /**
- * Renders table to output.
- *
- * Example:
- * +---------------+-----------------------+------------------+
- * | ISBN | Title | Author |
- * +---------------+-----------------------+------------------+
- * | 99921-58-10-7 | Divine Comedy | Dante Alighieri |
- * | 9971-5-0210-0 | A Tale of Two Cities | Charles Dickens |
- * | 960-425-059-0 | The Lord of the Rings | J. R. R. Tolkien |
- * +---------------+-----------------------+------------------+
- *
- * @param OutputInterface $output
- */
- public function render(OutputInterface $output)
- {
- $this->output = $output;
- $this->renderRowSeparator();
- $this->renderRow($this->headers, $this->cellHeaderFormat);
- if (!empty($this->headers)) {
- $this->renderRowSeparator();
- }
- foreach ($this->rows as $row) {
- $this->renderRow($row, $this->cellRowFormat);
- }
- if (!empty($this->rows)) {
- $this->renderRowSeparator();
- }
- $this->cleanup();
- }
- /**
- * Renders horizontal header separator.
- *
- * Example: +-----+-----------+-------+
- */
- private function renderRowSeparator()
- {
- if (0 === $count = $this->getNumberOfColumns()) {
- return;
- }
- $markup = $this->crossingChar;
- for ($column = 0; $column < $count; $column++) {
- $markup .= str_repeat($this->horizontalBorderChar, $this->getColumnWidth($column))
- .$this->crossingChar
- ;
- }
- $this->output->writeln(sprintf($this->borderFormat, $markup));
- }
- /**
- * Renders vertical column separator.
- */
- private function renderColumnSeparator()
- {
- $this->output->write(sprintf($this->borderFormat, $this->verticalBorderChar));
- }
- /**
- * Renders table row.
- *
- * Example: | 9971-5-0210-0 | A Tale of Two Cities | Charles Dickens |
- *
- * @param array $row
- * @param string $cellFormat
- */
- private function renderRow(array $row, $cellFormat)
- {
- if (empty($row)) {
- return;
- }
- $this->renderColumnSeparator();
- for ($column = 0, $count = $this->getNumberOfColumns(); $column < $count; $column++) {
- $this->renderCell($row, $column, $cellFormat);
- $this->renderColumnSeparator();
- }
- $this->output->writeln('');
- }
- /**
- * Renders table cell with padding.
- *
- * @param array $row
- * @param integer $column
- * @param string $cellFormat
- */
- private function renderCell(array $row, $column, $cellFormat)
- {
- $cell = isset($row[$column]) ? $row[$column] : '';
- $width = $this->getColumnWidth($column);
- // str_pad won't work properly with multi-byte strings, we need to fix the padding
- if (function_exists('mb_strlen') && false !== $encoding = mb_detect_encoding($cell)) {
- $width += strlen($cell) - mb_strlen($cell, $encoding);
- }
- $this->output->write(sprintf(
- $cellFormat,
- str_pad(
- $this->paddingChar.$cell.$this->paddingChar,
- $width,
- $this->paddingChar,
- $this->padType
- )
- ));
- }
- /**
- * Gets number of columns for this table.
- *
- * @return int
- */
- private function getNumberOfColumns()
- {
- if (null !== $this->numberOfColumns) {
- return $this->numberOfColumns;
- }
- $columns = array(0);
- $columns[] = count($this->headers);
- foreach ($this->rows as $row) {
- $columns[] = count($row);
- }
- return $this->numberOfColumns = max($columns);
- }
- /**
- * Gets column width.
- *
- * @param integer $column
- *
- * @return int
- */
- private function getColumnWidth($column)
- {
- if (isset($this->columnWidths[$column])) {
- return $this->columnWidths[$column];
- }
- $lengths = array(0);
- $lengths[] = $this->getCellWidth($this->headers, $column);
- foreach ($this->rows as $row) {
- $lengths[] = $this->getCellWidth($row, $column);
- }
- return $this->columnWidths[$column] = max($lengths) + 2;
- }
- /**
- * Gets cell width.
- *
- * @param array $row
- * @param integer $column
- *
- * @return int
- */
- private function getCellWidth(array $row, $column)
- {
- if ($column < 0) {
- return 0;
- }
- if (isset($row[$column])) {
- return $this->strlen($row[$column]);
- }
- return $this->getCellWidth($row, $column - 1);
- }
- /**
- * Called after rendering to cleanup cache data.
- */
- private function cleanup()
- {
- $this->columnWidths = array();
- $this->numberOfColumns = null;
- }
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
- return 'table';
- }
- }
|