|
Server IP : 10.2.73.233 / Your IP : 216.73.216.223 Web Server : Apache/2.4.59 (Debian) System : Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : www-data ( 33) PHP Version : 5.6.40-64+0~20230107.71+debian10~1.gbp673146 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/ifk/web/assets/../prado4.3.2/Shell/../Util/../Shell/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
/**
* TShellWriter class file
*
* @author Brad Anderson <belisoful@icloud.com>
* @link https://github.com/pradosoft/prado
* @license https://github.com/pradosoft/prado/blob/master/LICENSE
*/
namespace Prado\Shell;
use Prado\TPropertyValue;
/**
* TShellWriter class.
*
* Similar to the {@link THtmlWriter}, the TShellWriter writes and formats text
* with color, and processes other commands to the terminal to another ITextWriter.
*
* @author Brad Anderson <belisoful@icloud.com>
* @since 4.2.0
*/
class TShellWriter extends \Prado\TComponent implements \Prado\IO\ITextWriter
{
public const BOLD = 1;
public const DARK = 2;
public const ITALIC = 3;
public const UNDERLINE = 4;
public const BLINK = 5;
public const REVERSE = 7;
public const CONCEALED = 8;
public const CROSSED = 9;
public const FRAMED = 51;
public const ENCIRCLED = 52;
public const OVERLINED = 53;
public const BLACK = 30;
public const RED = 31;
public const GREEN = 32;
public const YELLOW = 33;
public const BLUE = 34;
public const MAGENTA = 35;
public const CYAN = 36;
public const LIGHT_GRAY = 37;
// '256' => '38', // 38:2:<red>:<green>:<blue> or 38:5:<256-color>
public const DEFAULT = 39;
public const DARK_GRAY = 90;
public const LIGHT_RED = 91;
public const LIGHT_GREEN = 92;
public const LIGHT_YELLOW = 93;
public const LIGHT_BLUE = 94;
public const LIGHT_MAGENTA = 95;
public const LIGHT_CYAN = 96;
public const WHITE = 97;
public const BG_BLACK = 40;
public const BG_RED = 41;
public const BG_GREEN = 42;
public const BG_YELLOW = 43;
public const BG_BLUE = 44;
public const BG_MAGENTA = 45;
public const BG_CYAN = 46;
public const BG_LIGHT_GRAY = 47;
//'256' => '48', // 48:2:<red>:<green>:<blue> 48:5:<256-color>
public const BG_DEFAULT = 49;
public const BG_DARK_GRAY = 100;
public const BG_LIGHT_RED = 101;
public const BG_LIGHT_GREEN = 102;
public const BG_LIGHT_YELLOW = 103;
public const BG_LIGHT_BLUE = 104;
public const BG_LIGHT_MAGENTA = 105;
public const BG_LIGHT_CYAN = 106;
public const BG_WHITE = 107;
/**
* @var \Prado\IO\ITextWriter writer
*/
protected $_writer;
/** @var bool is color supported on tty */
protected $_color;
/**
* Constructor.
* @param \Prado\IO\ITextWriter $writer a writer that THtmlWriter will pass its rendering result to
*/
public function __construct($writer)
{
$this->_writer = $writer;
$this->_color = $this->isColorSupported();
parent::__construct();
}
/**
* @return bool is color supported
*/
public function getColorSupported()
{
return $this->_color;
}
/**
* @param bool $color is color supported
*/
public function setColorSupported($color)
{
$this->_color = TPropertyValue::ensureBoolean($color);
}
/**
* @return \Prado\IO\ITextWriter the writer output to this class
*/
public function getWriter()
{
return $this->_writer;
}
/**
* @param \Prado\IO\ITextWriter $writer the writer output to this class
*/
public function setWriter($writer)
{
$this->_writer = $writer;
}
/**
* Flushes the rendering result.
* This will invoke the underlying writer's flush method.
* @return string the content being flushed
*/
public function flush()
{
return $this->_writer->flush();
}
/**
* Renders a string.
* @param string $str string to be rendered
* @param null|mixed $attr
*/
public function write($str, $attr = null)
{
if ($this->_color && $attr) {
if (!is_array($attr)) {
$attr = [$attr];
}
$this->_writer->write("\033[" . implode(';', $attr) . 'm');
}
$this->_writer->write($str);
if ($this->_color && $attr) {
$this->_writer->write("\033[0m");
}
}
/**
* Renders a string and appends a newline to it.
* @param string $str string to be rendered
* @param null|mixed $attr
*/
public function writeLine($str = '', $attr = null)
{
if ($this->_color && $attr) {
if (!is_array($attr)) {
$attr = [$attr];
}
$this->_writer->write("\033[" . implode(';', $attr) . 'm');
}
$this->_writer->write($str);
if ($this->_color && $attr) {
$this->_writer->write("\033[0m");
}
$this->_writer->write("\n");
}
/**
* Writes an error block to the writer with color
* @param string $text
*/
public function writeError($text)
{
$len = 78;
$lines = explode("\n", wordwrap($text, $len - 4, "\n"));
$this->writeLine();
$this->writeLine("*" . str_pad(' Error ', $len, '-', STR_PAD_BOTH) . "*", [self::BG_RED, self::WHITE, self::BOLD]);
foreach ($lines as $i => $line) {
$this->writeLine('* ' . str_pad($line, $len - 4, ' ', STR_PAD_BOTH) . ' *', [self::BG_RED, self::WHITE, self::BOLD]);
}
$this->writeLine('*' . str_repeat('-', $len) . "*", [self::BG_RED, self::WHITE, self::BOLD]);
$this->writeLine();
}
/**
* @param string $str the string to ANSI format.
* @param mixed $len
* @param mixed $pad
* @param mixed $place
* @return string $str in the format of $attr.
*/
public function pad($str, $len, $pad = ' ', $place = STR_PAD_RIGHT)
{
$len -= strlen($this->unformat($str));
$pad = $pad[0];
if ($place === STR_PAD_RIGHT) {
while ($len-- > 0) {
$str .= $pad;
}
} elseif ($place === STR_PAD_LEFT) {
while ($len-- > 0) {
$str = $pad . $str;
}
} elseif ($place === STR_PAD_BOTH) {
while ($len-- > 0) {
if ($len % 2) {
$str .= $pad;
} else {
$str = $pad . $str;
}
}
}
return $str;
}
/**
* renders a table widget.
* <code>
* $writer->tableWidget(
* 'headers' => ['title 1', 'title 2', 'count'],
* 'rows' => [['a', 'b', 1], ['s', 't', 2], ['c', 'd', 3], ['e', 'f', 10],
* ['span' => 'text spanning all columns']]
* );
* </code>
*
* @param array $table
*/
public function tableWidget($table)
{
$lengths = [];
foreach ($table['headers'] ?? $table['rows'][0] as $i => $header) {
$lengths[$i] = strlen($this->unformat($header)) + 1;
foreach ($table['rows'] as $row => $data) {
if (isset($data['span'])) {
continue;
}
$len = strlen($this->unformat($data[$i])) + 1;
if ($lengths[$i] < $len) {
$lengths[$i] = $len;
}
}
}
$str = '';
if (isset($table['headers'])) {
foreach ($table['headers'] as $i => $header) {
$str .= $this->pad($this->format($header, [TShellWriter::UNDERLINE]), $lengths[$i], ' ', STR_PAD_RIGHT);
}
$str .= PHP_EOL;
}
$last = count($table['headers'] ?? $table['rows'][0]) - 1;
$lastcolumn = 0;
foreach ($table['rows'] as $row => $data) {
if (isset($data['span'])) {
$str .= $data['span'];
} else {
foreach ($data as $i => $value) {
if ($last == $i) {
$str .= $this->wrapText($value, $lastcolumn);
} else {
$lastcolumn += $lengths[$i];
$str .= $this->pad($value, $lengths[$i]);
}
}
}
$str .= PHP_EOL;
}
return $str;
}
/**
* @param string $str the string to ANSI format.
* @param string|string[] $attr the attributes to format.
* @return string $str in the format of $attr.
*/
public function format($str, $attr)
{
if (!$this->_color) {
return $str;
}
if (!is_array($attr)) {
$attr = [$attr];
}
return "\033[" . implode(';', $attr) . 'm' . $str . "\033[0m";
}
/**
* removes ANSI formatting
* @param mixed $str
*/
public function unformat($str)
{
return preg_replace("/\033\[[\?\d;:]*[usmA-HJKSTlh]/", '', $str ?? '');
}
/**
* is color TTY supported
* @return bool color is supported
*/
protected function isColorSupported()
{
if (static::isRunningOnWindows()) {
return getenv('ANSICON') !== false || getenv('ConEmuANSI') === 'ON';
}
return function_exists('posix_isatty') && @posix_isatty(STDOUT) && strpos(getenv('TERM'), '256color') !== false;
}
/**
* Moves the terminal cursor up by sending ANSI control code CUU to the terminal.
* If the cursor is already at the edge of the screen, this has no effect.
* @param int $rows number of rows the cursor should be moved up
*/
public function moveCursorUp($rows = 1)
{
$this->_writer->write("\033[" . (int) $rows . 'A');
}
/**
* Moves the terminal cursor down by sending ANSI control code CUD to the terminal.
* If the cursor is already at the edge of the screen, this has no effect.
* @param int $rows number of rows the cursor should be moved down
*/
public function moveCursorDown($rows = 1)
{
$this->_writer->write("\033[" . (int) $rows . 'B');
}
/**
* Moves the terminal cursor forward by sending ANSI control code CUF to the terminal.
* If the cursor is already at the edge of the screen, this has no effect.
* @param int $steps number of steps the cursor should be moved forward
*/
public function moveCursorForward($steps = 1)
{
$this->_writer->write("\033[" . (int) $steps . 'C');
}
/**
* Moves the terminal cursor backward by sending ANSI control code CUB to the terminal.
* If the cursor is already at the edge of the screen, this has no effect.
* @param int $steps number of steps the cursor should be moved backward
*/
public function moveCursorBackward($steps = 1)
{
$this->_writer->write("\033[" . (int) $steps . 'D');
}
/**
* Moves the terminal cursor to the beginning of the next line by sending ANSI control code CNL to the terminal.
* @param int $lines number of lines the cursor should be moved down
*/
public function moveCursorNextLine($lines = 1)
{
$this->_writer->write("\033[" . (int) $lines . 'E');
}
/**
* Moves the terminal cursor to the beginning of the previous line by sending ANSI control code CPL to the terminal.
* @param int $lines number of lines the cursor should be moved up
*/
public function moveCursorPrevLine($lines = 1)
{
$this->_writer->write("\033[" . (int) $lines . 'F');
}
/**
* Moves the cursor to an absolute position given as column and row by sending ANSI control code CUP or CHA to the terminal.
* @param int $column 1-based column number, 1 is the left edge of the screen.
* @param null|int $row 1-based row number, 1 is the top edge of the screen. if not set, will move cursor only in current line.
*/
public function moveCursorTo($column, $row = null)
{
if ($row === null) {
$this->_writer->write("\033[" . (int) $column . 'G');
} else {
$this->_writer->write("\033[" . (int) $row . ';' . (int) $column . 'H');
}
}
/**
* Scrolls whole page up by sending ANSI control code SU to the terminal.
* New lines are added at the bottom. This is not supported by ANSI.SYS used in windows.
* @param int $lines number of lines to scroll up
*/
public function scrollUp($lines = 1)
{
$this->_writer->write("\033[" . (int) $lines . 'S');
}
/**
* Scrolls whole page down by sending ANSI control code SD to the terminal.
* New lines are added at the top. This is not supported by ANSI.SYS used in windows.
* @param int $lines number of lines to scroll down
*/
public function scrollDown($lines = 1)
{
$this->_writer->write("\033[" . (int) $lines . 'T');
}
/**
* Saves the current cursor position by sending ANSI control code SCP to the terminal.
* Position can then be restored with {@link restoreCursorPosition}.
*/
public function saveCursorPosition()
{
$this->_writer->write("\033[s");
}
/**
* Restores the cursor position saved with {@link saveCursorPosition} by sending ANSI control code RCP to the terminal.
*/
public function restoreCursorPosition()
{
$this->_writer->write("\033[u");
}
/**
* Hides the cursor by sending ANSI DECTCEM code ?25l to the terminal.
* Use {@link showCursor} to bring it back.
* Do not forget to show cursor when your application exits. Cursor might stay hidden in terminal after exit.
*/
public function hideCursor()
{
$this->_writer->write("\033[?25l");
}
/**
* Will show a cursor again when it has been hidden by {@link hideCursor} by sending ANSI DECTCEM code ?25h to the terminal.
*/
public function showCursor()
{
$this->_writer->write("\033[?25h");
}
/**
* Clears entire screen content by sending ANSI control code ED with argument 2 to the terminal.
* Cursor position will not be changed.
* **Note:** ANSI.SYS implementation used in windows will reset cursor position to upper left corner of the screen.
*/
public function clearScreen()
{
$this->_writer->write("\033[2J");
}
/**
* Clears text from cursor to the beginning of the screen by sending ANSI control code ED with argument 1 to the terminal.
* Cursor position will not be changed.
*/
public function clearScreenBeforeCursor()
{
$this->_writer->write("\033[1J");
}
/**
* Clears text from cursor to the end of the screen by sending ANSI control code ED with argument 0 to the terminal.
* Cursor position will not be changed.
*/
public function clearScreenAfterCursor()
{
$this->_writer->write("\033[0J");
}
/**
* Clears the line, the cursor is currently on by sending ANSI control code EL with argument 2 to the terminal.
* Cursor position will not be changed.
*/
public function clearLine()
{
$this->_writer->write("\033[2K");
}
/**
* Clears text from cursor position to the beginning of the line by sending ANSI control code EL with argument 1 to the terminal.
* Cursor position will not be changed.
*/
public function clearLineBeforeCursor()
{
$this->_writer->write("\033[1K");
}
/**
* Clears text from cursor position to the end of the line by sending ANSI control code EL with argument 0 to the terminal.
* Cursor position will not be changed.
*/
public function clearLineAfterCursor()
{
$this->_writer->write("\033[0K");
}
/**
* Returns terminal screen size.
*
* Usage:
*
* <code>
* [$width, $height] = TShellWriter::getScreenSize();
* </code>
*
* @param bool $refresh whether to force checking and not re-use cached size value.
* This is useful to detect changing window size while the application is running but may
* not get up to date values on every terminal.
* @return array|bool An array of ($width, $height) or false when it was not able to determine size.
*/
public static function getScreenSize($refresh = false)
{
static $size;
if ($size !== null && !$refresh) {
return $size;
}
if (static::isRunningOnWindows()) {
$output = [];
exec('mode con', $output);
if (isset($output[1]) && strpos($output[1], 'CON') !== false) {
return $size = [(int) preg_replace('~\D~', '', $output[4]), (int) preg_replace('~\D~', '', $output[3])];
}
} else {
// try stty if available
$stty = [];
if (exec('stty -a 2>&1', $stty)) {
$stty = implode(' ', $stty);
// Linux stty output
if (preg_match('/rows\s+(\d+);\s*columns\s+(\d+);/mi', $stty, $matches)) {
return $size = [(int) $matches[2], (int) $matches[1]];
}
// MacOS stty output
if (preg_match('/(\d+)\s+rows;\s*(\d+)\s+columns;/mi', $stty, $matches)) {
return $size = [(int) $matches[2], (int) $matches[1]];
}
}
// fallback to tput, which may not be updated on terminal resize
if (($width = (int) exec('tput cols 2>&1')) > 0 && ($height = (int) exec('tput lines 2>&1')) > 0) {
return $size = [$width, $height];
}
// fallback to ENV variables, which may not be updated on terminal resize
if (($width = (int) getenv('COLUMNS')) > 0 && ($height = (int) getenv('LINES')) > 0) {
return $size = [$width, $height];
}
}
return $size = false;
}
/**
* Word wrap text with indentation to fit the screen size.
*
* If screen size could not be detected, or the indentation is greater than the screen size, the text will not be wrapped.
*
* The first line will **not** be indented, so `TShellWriter::wrapText("Lorem ipsum dolor sit amet.", 4)` will result in the
* following output, given the screen width is 16 characters:
*
* <code>
* Lorem ipsum
* dolor sit
* amet.
* </code>
*
* @param string $text the text to be wrapped
* @param int $indent number of spaces to use for indentation.
* @param bool $refresh whether to force refresh of screen size.
* This will be passed to {@link getScreenSize}.
* @return string the wrapped text.
*/
public function wrapText($text, $indent = 0, $refresh = false)
{
$size = static::getScreenSize($refresh);
if ($size === false || $size[0] <= $indent) {
return $text;
}
$pad = str_repeat(' ', $indent);
$lines = explode("\n", wordwrap($text, $size[0] - $indent, "\n"));
$first = true;
foreach ($lines as $i => $line) {
if ($first) {
$first = false;
continue;
}
$lines[$i] = $pad . $line;
}
return implode("\n", $lines);
}
/**
* Returns true if the console is running on windows.
* @return bool
*/
public static function isRunningOnWindows()
{
return DIRECTORY_SEPARATOR === '\\';
}
}