/2012/sample-tonic/src/Doctrine/Symfony/Component/Console/Formatter/OutputFormatter.php
https://bitbucket.org/alessandro-aglietti/itis-leonardo-da-vinci · PHP · 230 lines · 98 code · 28 blank · 104 comment · 14 complexity · 9462eba2f2808c4c82b26540e5b1e6eb MD5 · raw file
- <?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\Formatter;
- /**
- * Formatter class for console output.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- *
- * @api
- */
- class OutputFormatter implements OutputFormatterInterface
- {
- /**
- * The pattern to phrase the format.
- */
- const FORMAT_PATTERN = '#<(/?)([a-z][a-z0-9_=;-]+)?>([^<]*)#is';
- private $decorated;
- private $styles = array();
- private $styleStack;
- /**
- * Initializes console output formatter.
- *
- * @param Boolean $decorated Whether this formatter should actually decorate strings
- * @param array $styles Array of "name => FormatterStyle" instances
- *
- * @api
- */
- public function __construct($decorated = null, array $styles = array())
- {
- $this->decorated = (Boolean) $decorated;
- $this->setStyle('error', new OutputFormatterStyle('white', 'red'));
- $this->setStyle('info', new OutputFormatterStyle('green'));
- $this->setStyle('comment', new OutputFormatterStyle('yellow'));
- $this->setStyle('question', new OutputFormatterStyle('black', 'cyan'));
- foreach ($styles as $name => $style) {
- $this->setStyle($name, $style);
- }
- $this->styleStack = new OutputFormatterStyleStack();
- }
- /**
- * Sets the decorated flag.
- *
- * @param Boolean $decorated Whether to decorate the messages or not
- *
- * @api
- */
- public function setDecorated($decorated)
- {
- $this->decorated = (Boolean) $decorated;
- }
- /**
- * Gets the decorated flag.
- *
- * @return Boolean true if the output will decorate messages, false otherwise
- *
- * @api
- */
- public function isDecorated()
- {
- return $this->decorated;
- }
- /**
- * Sets a new style.
- *
- * @param string $name The style name
- * @param OutputFormatterStyleInterface $style The style instance
- *
- * @api
- */
- public function setStyle($name, OutputFormatterStyleInterface $style)
- {
- $this->styles[strtolower($name)] = $style;
- }
- /**
- * Checks if output formatter has style with specified name.
- *
- * @param string $name
- *
- * @return Boolean
- *
- * @api
- */
- public function hasStyle($name)
- {
- return isset($this->styles[strtolower($name)]);
- }
- /**
- * Gets style options from style with specified name.
- *
- * @param string $name
- *
- * @return OutputFormatterStyleInterface
- *
- * @throws \InvalidArgumentException When style isn't defined
- *
- * @api
- */
- public function getStyle($name)
- {
- if (!$this->hasStyle($name)) {
- throw new \InvalidArgumentException('Undefined style: '.$name);
- }
- return $this->styles[strtolower($name)];
- }
- /**
- * Formats a message according to the given styles.
- *
- * @param string $message The message to style
- *
- * @return string The styled message
- *
- * @api
- */
- public function format($message)
- {
- return preg_replace_callback(self::FORMAT_PATTERN, array($this, 'replaceStyle'), $message);
- }
- /**
- * @return OutputFormatterStyleStack
- */
- public function getStyleStack()
- {
- return $this->styleStack;
- }
- /**
- * Replaces style of the output.
- *
- * @param array $match
- *
- * @return string The replaced style
- */
- private function replaceStyle($match)
- {
- if ('' === $match[2]) {
- if ('/' === $match[1]) {
- // we got "</>" tag
- $this->styleStack->pop();
- return $this->applyStyle($this->styleStack->getCurrent(), $match[3]);
- }
- // we got "<>" tag
- return '<>'.$match[3];
- }
- if (isset($this->styles[strtolower($match[2])])) {
- $style = $this->styles[strtolower($match[2])];
- } else {
- $style = $this->createStyleFromString($match[2]);
- if (false === $style) {
- return $match[0];
- }
- }
- if ('/' === $match[1]) {
- $this->styleStack->pop($style);
- } else {
- $this->styleStack->push($style);
- }
- return $this->applyStyle($this->styleStack->getCurrent(), $match[3]);
- }
- /**
- * Tries to create new style instance from string.
- *
- * @param string $string
- *
- * @return OutputFormatterStyle|Boolean false if string is not format string
- */
- private function createStyleFromString($string)
- {
- if (!preg_match_all('/([^=]+)=([^;]+)(;|$)/', strtolower($string), $matches, PREG_SET_ORDER)) {
- return false;
- }
- $style = new OutputFormatterStyle();
- foreach ($matches as $match) {
- array_shift($match);
- if ('fg' == $match[0]) {
- $style->setForeground($match[1]);
- } elseif ('bg' == $match[0]) {
- $style->setBackground($match[1]);
- } else {
- $style->setOption($match[1]);
- }
- }
- return $style;
- }
- /**
- * Applies style to text if must be applied.
- *
- * @param OutputFormatterStyleInterface $style Style to apply
- * @param string $text Input text
- *
- * @return string string Styled text
- */
- private function applyStyle(OutputFormatterStyleInterface $style, $text)
- {
- return $this->isDecorated() && strlen($text) > 0 ? $style->apply($text) : $text;
- }
- }