|
Apache/2.4.41 (Ubuntu) Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) server ip : 62.171.164.128 | your ip : 127.0.0.1 safemode OFF > / home / a / home / dev2.destoffenstraat.com / vendor / hoa / console / Chrome / |
Filename | /home/a/home/dev2.destoffenstraat.com/vendor/hoa/console/Chrome/Text.php |
Size | 12.71 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 21-Aug-2025 12:26 |
Last modified | 02-May-2017 14:26 |
Last accessed | 23-Aug-2025 14:21 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
<?php
/**
* Hoa
*
*
* @license
*
* New BSD License
*
* Copyright © 2007-2017, Hoa community. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Hoa nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
namespace Hoa\Console\Chrome;
use Hoa\Console;
/**
* Class \Hoa\Console\Chrome\Text.
*
* This class builts the text layout.
*
* @copyright Copyright © 2007-2017 Hoa community
* @license New BSD License
*/
class Text
{
/**
* Align the text to left.
*
* @const int
*/
const ALIGN_LEFT = 0;
/**
* Align the text to right.
*
* @const int
*/
const ALIGN_RIGHT = 1;
/**
* Align the text to center.
*
* @const int
*/
const ALIGN_CENTER = 2;
/**
* Colorize a portion of a text.
* It is kind of a shortcut of \Hoa\Console\Color.
*
* @param string $text Text.
* @param string $attributesBefore Style to apply.
* @param string $attributesAfter Reset style.
* @return string
*/
public static function colorize(
$text,
$attributesBefore,
$attributesAfter = 'normal'
) {
ob_start();
Console\Cursor::colorize($attributesBefore);
Console::getOutput()->writeAll($text);
Console\Cursor::colorize($attributesAfter);
$out = ob_get_contents();
ob_end_clean();
return $out;
}
/**
* Built column from an array.
* The array has this structure :
* [
* ['Firstname', 'Lastname', 'Love', 'Made' ],
* ['Ivan', 'Enderlin', 'Hoa' ],
* ['Rasmus', 'Lerdorf' ],
* [null, 'Berners-Lee', null, 'The Web']
* ]
* The cell can have a new-line character (\n).
* The column can have a global alignement, a horizontal and a vertical
* padding (this horizontal padding is actually the right padding), and a
* separator.
* Separator has this form : 'first-column|second-column|third-column|…'.
* For example : '|: ', will set a ': ' between the first and second column,
* and nothing for the other.
*
* @param Array $line The table represented by an array
* (see the documentation).
* @param int $alignement The global alignement of the text
* in cell.
* @param int $horizontalPadding The horizontal padding (right
* padding).
* @param int $verticalPadding The vertical padding.
* @param string $separator String where each character is a
* column separator.
* @return string
*/
public static function columnize(
array $line,
$alignement = self::ALIGN_LEFT,
$horizontalPadding = 2,
$verticalPadding = 0,
$separator = null
) {
if (empty($line)) {
return '';
}
$separator = explode('|', $separator);
$nbColumn = 0;
$nbLine = count($line);
$xtraWidth = 2 * ($verticalPadding + 2); // + separator
// Get the number of column.
foreach ($line as $key => &$column) {
if (!is_array($column)) {
$column = [$column];
}
$handle = count($column);
$handle > $nbColumn and $nbColumn = $handle;
}
$xtraWidth += $horizontalPadding * $nbColumn;
// Get the column width.
$columnWidth = array_fill(0, $nbColumn, 0);
for ($e = 0; $e < $nbColumn; $e++) {
for ($i = 0; $i < $nbLine; $i++) {
if (!isset($line[$i][$e])) {
continue;
}
$handle = self::getMaxLineWidth($line[$i][$e]);
$handle > $columnWidth[$e] and $columnWidth[$e] = $handle;
}
}
// If the sum of each column is greater than the window width, we reduce
// all greaters columns.
$window = Console\Window::getSize();
$envWindow = $window['x'];
while ($envWindow <= ($cWidthSum = $xtraWidth + array_sum($columnWidth))) {
$diff = $cWidthSum - $envWindow;
$max = max($columnWidth) - $xtraWidth;
$newWidth = $max - $diff;
$i = array_search(max($columnWidth), $columnWidth);
$columnWidth[$i] = $newWidth;
foreach ($line as $key => &$c) {
if (isset($c[$i])) {
$c[$i] = self::wordwrap($c[$i], $newWidth);
}
}
}
// Manage the horizontal right padding.
$columnWidth = array_map(
function ($x) use ($horizontalPadding) {
return $x + 2 * $horizontalPadding;
},
$columnWidth
);
// Prepare the new table, i.e. a new line (\n) must be a new line in the
// array (structurally meaning).
$newLine = [];
foreach ($line as $key => $plpl) {
$i = self::getMaxLineNumber($plpl);
while ($i-- >= 0) {
$newLine[] = array_fill(0, $nbColumn, null);
}
}
$yek = 0;
foreach ($line as $key => $col) {
foreach ($col as $kkey => $value) {
if (false === strpos($value, "\n")) {
$newLine[$yek][$kkey] = $value;
continue;
}
foreach (explode("\n", $value) as $foo => $oof) {
$newLine[$yek + $foo][$kkey] = $oof;
}
}
$i = self::getMaxLineNumber($col);
$i > 0 and $yek += $i;
$yek++;
}
// Place the column separator.
foreach ($newLine as $key => $col) {
foreach ($col as $kkey => $value) {
if (isset($separator[$kkey])) {
$newLine[$key][$kkey] =
$separator[$kkey] .
str_replace(
"\n",
"\n" . $separator[$kkey],
$value
);
}
}
}
$line = $newLine;
unset($newLine);
// Complete the table with empty cells.
foreach ($line as $key => &$column) {
$handle = count($column);
if ($nbColumn - $handle > 0) {
$column += array_fill($handle, $nbColumn - $handle, null);
}
}
// Built!
$out = null;
$dash = $alignement === self::ALIGN_LEFT ? '-' : '';
foreach ($line as $key => $handle) {
$format = null;
foreach ($handle as $i => $hand) {
if (preg_match_all('#(\\e\[[0-9]+m)#', $hand, $match)) {
$a = $columnWidth[$i];
foreach ($match as $m) {
$a += strlen($m[1]);
}
$format .= '%' . $dash . ($a + floor(count($match) / 2)) . 's';
} else {
$format .= '%' . $dash . $columnWidth[$i] . 's';
}
}
$format .= str_repeat("\n", $verticalPadding + 1);
array_unshift($handle, $format);
$out .= call_user_func_array('sprintf', $handle);
}
return $out;
}
/**
* Align a text according a “layer”. The layer width is given in arguments.
*
* @param string $text The text.
* @param int $alignement The text alignement.
* @param int $width The layer width.
* @return string
*/
public static function align(
$text,
$alignement = self::ALIGN_LEFT,
$width = null
) {
if (null === $width) {
$window = Console\Window::getSize();
$width = $window['x'];
}
$out = null;
switch ($alignement) {
case self::ALIGN_LEFT:
$out .= sprintf('%-' . $width . 's', self::wordwrap($text, $width));
break;
case self::ALIGN_CENTER:
foreach (explode("\n", self::wordwrap($text, $width)) as $key => $value) {
$out .= str_repeat(' ', ceil(($width - strlen($value)) / 2)) .
$value . "\n";
}
break;
case self::ALIGN_RIGHT:
default:
foreach (explode("\n", self::wordwrap($text, $width)) as $key => $value) {
$out .= sprintf('%' . $width . 's' . "\n", $value);
}
break;
}
return $out;
}
/**
* Get the maximum line width.
*
* @param mixed $lines The line (or group of lines).
* @return int
*/
protected static function getMaxLineWidth($lines)
{
if (!is_array($lines)) {
$lines = [$lines];
}
$width = 0;
foreach ($lines as $foo => $line) {
foreach (explode("\n", $line) as $fooo => $lin) {
$lin = preg_replace('#\\e\[[0-9]+m#', '', $lin);
strlen($lin) > $width and $width = strlen($lin);
}
}
return $width;
}
/**
* Get the maximum line number (count the new-line character).
*
* @param mixed $lines The line (or group of lines).
* @return int
*/
protected static function getMaxLineNumber($lines)
{
if (!is_array($lines)) {
$lines = [$lines];
}
$number = 0;
foreach ($lines as $foo => $line) {
substr_count($line, "\n") > $number and
$number = substr_count($line, "\n");
}
return $number;
}
/**
* My own wordwrap (just force the wordwrap() $cut parameter)..
*
* @param string $text Text to wrap.
* @param int $width Line width.
* @param string $break String to make the break.
* @return string
*/
public static function wordwrap($text, $width = null, $break = "\n")
{
if (null === $width) {
$window = Console\Window::getSize();
$width = $window['x'];
}
return wordwrap($text, $width, $break, true);
}
/**
* Underline with a special string.
*
* @param string $text The text to underline.
* @param string $pattern The string used to underline.
* @return string
*/
public static function underline($text, $pattern = '*')
{
$text = explode("\n", $text);
$card = strlen($pattern);
foreach ($text as $key => &$value) {
$i = -1;
$max = strlen($value);
while ($value{++$i} == ' ' && $i < $max);
$underline =
str_repeat(' ', $i) .
str_repeat($pattern, strlen(trim($value)) / $card) .
str_repeat(' ', strlen($value) - $i - strlen(trim($value)));
$value .= "\n" . $underline;
}
return implode("\n", $text);
}
}
/**
* Hoa
*
*
* @license
*
* New BSD License
*
* Copyright © 2007-2017, Hoa community. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Hoa nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
namespace Hoa\Console\Chrome;
use Hoa\Console;
/**
* Class \Hoa\Console\Chrome\Text.
*
* This class builts the text layout.
*
* @copyright Copyright © 2007-2017 Hoa community
* @license New BSD License
*/
class Text
{
/**
* Align the text to left.
*
* @const int
*/
const ALIGN_LEFT = 0;
/**
* Align the text to right.
*
* @const int
*/
const ALIGN_RIGHT = 1;
/**
* Align the text to center.
*
* @const int
*/
const ALIGN_CENTER = 2;
/**
* Colorize a portion of a text.
* It is kind of a shortcut of \Hoa\Console\Color.
*
* @param string $text Text.
* @param string $attributesBefore Style to apply.
* @param string $attributesAfter Reset style.
* @return string
*/
public static function colorize(
$text,
$attributesBefore,
$attributesAfter = 'normal'
) {
ob_start();
Console\Cursor::colorize($attributesBefore);
Console::getOutput()->writeAll($text);
Console\Cursor::colorize($attributesAfter);
$out = ob_get_contents();
ob_end_clean();
return $out;
}
/**
* Built column from an array.
* The array has this structure :
* [
* ['Firstname', 'Lastname', 'Love', 'Made' ],
* ['Ivan', 'Enderlin', 'Hoa' ],
* ['Rasmus', 'Lerdorf' ],
* [null, 'Berners-Lee', null, 'The Web']
* ]
* The cell can have a new-line character (\n).
* The column can have a global alignement, a horizontal and a vertical
* padding (this horizontal padding is actually the right padding), and a
* separator.
* Separator has this form : 'first-column|second-column|third-column|…'.
* For example : '|: ', will set a ': ' between the first and second column,
* and nothing for the other.
*
* @param Array $line The table represented by an array
* (see the documentation).
* @param int $alignement The global alignement of the text
* in cell.
* @param int $horizontalPadding The horizontal padding (right
* padding).
* @param int $verticalPadding The vertical padding.
* @param string $separator String where each character is a
* column separator.
* @return string
*/
public static function columnize(
array $line,
$alignement = self::ALIGN_LEFT,
$horizontalPadding = 2,
$verticalPadding = 0,
$separator = null
) {
if (empty($line)) {
return '';
}
$separator = explode('|', $separator);
$nbColumn = 0;
$nbLine = count($line);
$xtraWidth = 2 * ($verticalPadding + 2); // + separator
// Get the number of column.
foreach ($line as $key => &$column) {
if (!is_array($column)) {
$column = [$column];
}
$handle = count($column);
$handle > $nbColumn and $nbColumn = $handle;
}
$xtraWidth += $horizontalPadding * $nbColumn;
// Get the column width.
$columnWidth = array_fill(0, $nbColumn, 0);
for ($e = 0; $e < $nbColumn; $e++) {
for ($i = 0; $i < $nbLine; $i++) {
if (!isset($line[$i][$e])) {
continue;
}
$handle = self::getMaxLineWidth($line[$i][$e]);
$handle > $columnWidth[$e] and $columnWidth[$e] = $handle;
}
}
// If the sum of each column is greater than the window width, we reduce
// all greaters columns.
$window = Console\Window::getSize();
$envWindow = $window['x'];
while ($envWindow <= ($cWidthSum = $xtraWidth + array_sum($columnWidth))) {
$diff = $cWidthSum - $envWindow;
$max = max($columnWidth) - $xtraWidth;
$newWidth = $max - $diff;
$i = array_search(max($columnWidth), $columnWidth);
$columnWidth[$i] = $newWidth;
foreach ($line as $key => &$c) {
if (isset($c[$i])) {
$c[$i] = self::wordwrap($c[$i], $newWidth);
}
}
}
// Manage the horizontal right padding.
$columnWidth = array_map(
function ($x) use ($horizontalPadding) {
return $x + 2 * $horizontalPadding;
},
$columnWidth
);
// Prepare the new table, i.e. a new line (\n) must be a new line in the
// array (structurally meaning).
$newLine = [];
foreach ($line as $key => $plpl) {
$i = self::getMaxLineNumber($plpl);
while ($i-- >= 0) {
$newLine[] = array_fill(0, $nbColumn, null);
}
}
$yek = 0;
foreach ($line as $key => $col) {
foreach ($col as $kkey => $value) {
if (false === strpos($value, "\n")) {
$newLine[$yek][$kkey] = $value;
continue;
}
foreach (explode("\n", $value) as $foo => $oof) {
$newLine[$yek + $foo][$kkey] = $oof;
}
}
$i = self::getMaxLineNumber($col);
$i > 0 and $yek += $i;
$yek++;
}
// Place the column separator.
foreach ($newLine as $key => $col) {
foreach ($col as $kkey => $value) {
if (isset($separator[$kkey])) {
$newLine[$key][$kkey] =
$separator[$kkey] .
str_replace(
"\n",
"\n" . $separator[$kkey],
$value
);
}
}
}
$line = $newLine;
unset($newLine);
// Complete the table with empty cells.
foreach ($line as $key => &$column) {
$handle = count($column);
if ($nbColumn - $handle > 0) {
$column += array_fill($handle, $nbColumn - $handle, null);
}
}
// Built!
$out = null;
$dash = $alignement === self::ALIGN_LEFT ? '-' : '';
foreach ($line as $key => $handle) {
$format = null;
foreach ($handle as $i => $hand) {
if (preg_match_all('#(\\e\[[0-9]+m)#', $hand, $match)) {
$a = $columnWidth[$i];
foreach ($match as $m) {
$a += strlen($m[1]);
}
$format .= '%' . $dash . ($a + floor(count($match) / 2)) . 's';
} else {
$format .= '%' . $dash . $columnWidth[$i] . 's';
}
}
$format .= str_repeat("\n", $verticalPadding + 1);
array_unshift($handle, $format);
$out .= call_user_func_array('sprintf', $handle);
}
return $out;
}
/**
* Align a text according a “layer”. The layer width is given in arguments.
*
* @param string $text The text.
* @param int $alignement The text alignement.
* @param int $width The layer width.
* @return string
*/
public static function align(
$text,
$alignement = self::ALIGN_LEFT,
$width = null
) {
if (null === $width) {
$window = Console\Window::getSize();
$width = $window['x'];
}
$out = null;
switch ($alignement) {
case self::ALIGN_LEFT:
$out .= sprintf('%-' . $width . 's', self::wordwrap($text, $width));
break;
case self::ALIGN_CENTER:
foreach (explode("\n", self::wordwrap($text, $width)) as $key => $value) {
$out .= str_repeat(' ', ceil(($width - strlen($value)) / 2)) .
$value . "\n";
}
break;
case self::ALIGN_RIGHT:
default:
foreach (explode("\n", self::wordwrap($text, $width)) as $key => $value) {
$out .= sprintf('%' . $width . 's' . "\n", $value);
}
break;
}
return $out;
}
/**
* Get the maximum line width.
*
* @param mixed $lines The line (or group of lines).
* @return int
*/
protected static function getMaxLineWidth($lines)
{
if (!is_array($lines)) {
$lines = [$lines];
}
$width = 0;
foreach ($lines as $foo => $line) {
foreach (explode("\n", $line) as $fooo => $lin) {
$lin = preg_replace('#\\e\[[0-9]+m#', '', $lin);
strlen($lin) > $width and $width = strlen($lin);
}
}
return $width;
}
/**
* Get the maximum line number (count the new-line character).
*
* @param mixed $lines The line (or group of lines).
* @return int
*/
protected static function getMaxLineNumber($lines)
{
if (!is_array($lines)) {
$lines = [$lines];
}
$number = 0;
foreach ($lines as $foo => $line) {
substr_count($line, "\n") > $number and
$number = substr_count($line, "\n");
}
return $number;
}
/**
* My own wordwrap (just force the wordwrap() $cut parameter)..
*
* @param string $text Text to wrap.
* @param int $width Line width.
* @param string $break String to make the break.
* @return string
*/
public static function wordwrap($text, $width = null, $break = "\n")
{
if (null === $width) {
$window = Console\Window::getSize();
$width = $window['x'];
}
return wordwrap($text, $width, $break, true);
}
/**
* Underline with a special string.
*
* @param string $text The text to underline.
* @param string $pattern The string used to underline.
* @return string
*/
public static function underline($text, $pattern = '*')
{
$text = explode("\n", $text);
$card = strlen($pattern);
foreach ($text as $key => &$value) {
$i = -1;
$max = strlen($value);
while ($value{++$i} == ' ' && $i < $max);
$underline =
str_repeat(' ', $i) .
str_repeat($pattern, strlen(trim($value)) / $card) .
str_repeat(' ', strlen($value) - $i - strlen(trim($value)));
$value .= "\n" . $underline;
}
return implode("\n", $text);
}
}