| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 | <?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\Output;use Symfony\Component\Console\Formatter\OutputFormatterInterface;use Symfony\Component\Console\Formatter\OutputFormatter;/** * Base class for output classes. * * There are three levels of verbosity: * *  * normal: no option passed (normal output - information) *  * verbose: -v (more output - debug) *  * quiet: -q (no output) * * @author Fabien Potencier <fabien@symfony.com> * * @api */abstract class Output implements OutputInterface{    private $verbosity;    private $formatter;    /**     * Constructor.     *     * @param integer                  $verbosity The verbosity level (self::VERBOSITY_QUIET, self::VERBOSITY_NORMAL, self::VERBOSITY_VERBOSE)     * @param Boolean                  $decorated Whether to decorate messages or not (null for auto-guessing)     * @param OutputFormatterInterface $formatter Output formatter instance     *     * @api     */    public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null)    {        $this->verbosity = null === $verbosity ? self::VERBOSITY_NORMAL : $verbosity;        $this->formatter = null === $formatter ? new OutputFormatter() : $formatter;        $this->formatter->setDecorated((Boolean) $decorated);    }    /**     * Sets output formatter.     *     * @param OutputFormatterInterface $formatter     *     * @api     */    public function setFormatter(OutputFormatterInterface $formatter)    {        $this->formatter = $formatter;    }    /**     * Returns current output formatter instance.     *     * @return  OutputFormatterInterface     *     * @api     */    public function getFormatter()    {        return $this->formatter;    }    /**     * Sets the decorated flag.     *     * @param Boolean $decorated Whether to decorate the messages or not     *     * @api     */    public function setDecorated($decorated)    {        $this->formatter->setDecorated((Boolean) $decorated);    }    /**     * Gets the decorated flag.     *     * @return Boolean true if the output will decorate messages, false otherwise     *     * @api     */    public function isDecorated()    {        return $this->formatter->isDecorated();    }    /**     * Sets the verbosity of the output.     *     * @param integer $level The level of verbosity     *     * @api     */    public function setVerbosity($level)    {        $this->verbosity = (int) $level;    }    /**     * Gets the current verbosity of the output.     *     * @return integer The current level of verbosity     *     * @api     */    public function getVerbosity()    {        return $this->verbosity;    }    /**     * Writes a message to the output and adds a newline at the end.     *     * @param string|array $messages The message as an array of lines of a single string     * @param integer      $type     The type of output     *     * @api     */    public function writeln($messages, $type = 0)    {        $this->write($messages, true, $type);    }    /**     * Writes a message to the output.     *     * @param string|array $messages The message as an array of lines of a single string     * @param Boolean      $newline  Whether to add a newline or not     * @param integer      $type     The type of output     *     * @throws \InvalidArgumentException When unknown output type is given     *     * @api     */    public function write($messages, $newline = false, $type = 0)    {        if (self::VERBOSITY_QUIET === $this->verbosity) {            return;        }        $messages = (array) $messages;        foreach ($messages as $message) {            switch ($type) {                case OutputInterface::OUTPUT_NORMAL:                    $message = $this->formatter->format($message);                    break;                case OutputInterface::OUTPUT_RAW:                    break;                case OutputInterface::OUTPUT_PLAIN:                    $message = strip_tags($this->formatter->format($message));                    break;                default:                    throw new \InvalidArgumentException(sprintf('Unknown output type given (%s)', $type));            }            $this->doWrite($message, $newline);        }    }    /**     * Writes a message to the output.     *     * @param string  $message A message to write to the output     * @param Boolean $newline Whether to add a newline or not     */    abstract public function doWrite($message, $newline);}
 |