123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <?php
- namespace Symfony\Component\Console\Output;
- use Symfony\Component\Console\Formatter\OutputFormatterInterface;
- use Symfony\Component\Console\Formatter\OutputFormatter;
- abstract class Output implements OutputInterface
- {
- private $verbosity;
- private $formatter;
-
- 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);
- }
-
- public function setFormatter(OutputFormatterInterface $formatter)
- {
- $this->formatter = $formatter;
- }
-
- public function getFormatter()
- {
- return $this->formatter;
- }
-
- public function setDecorated($decorated)
- {
- $this->formatter->setDecorated((Boolean) $decorated);
- }
-
- public function isDecorated()
- {
- return $this->formatter->isDecorated();
- }
-
- public function setVerbosity($level)
- {
- $this->verbosity = (int) $level;
- }
-
- public function getVerbosity()
- {
- return $this->verbosity;
- }
-
- public function writeln($messages, $type = 0)
- {
- $this->write($messages, true, $type);
- }
-
- 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);
- }
- }
-
- abstract public function doWrite($message, $newline);
- }
|