Skip to content

Commit ccb773d

Browse files
committed
Table utils created.
1 parent f78ce11 commit ccb773d

File tree

2 files changed

+285
-4
lines changed

2 files changed

+285
-4
lines changed

src/Application.php

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313

1414
declare(strict_types=1);
15-
1615
namespace InitPHP\Console;
1716

1817
class Application
@@ -36,7 +35,7 @@ class Application
3635

3736
protected $command;
3837

39-
public function __construct(string $application = 'InitPHP Console Application', string $version = '1.1')
38+
public function __construct(string $application = 'InitPHP Console Application', string $version = '2.0')
4039
{
4140
$this->application = $application;
4241
$this->version = $version;
@@ -102,7 +101,7 @@ public function run(): bool
102101
$this->input = new Input($inputs);
103102
$this->output = new Output();
104103

105-
if ($this->command === 'help') {
104+
if (in_array($this->command, ['help', 'list'])) {
106105
$this->help($this->input, $this->output);
107106
return true;
108107
}
@@ -193,7 +192,7 @@ private function help(Input $input, Output $output)
193192
$output->writeln('');
194193

195194
$output->writeln('Copyright © 2022 - ' . date("Y") . ' InitPHP Console ' . self::VERSION);
196-
$output->writeln('http://initphp.org');
195+
$output->writeln('http://initphp.org - https://github.com/InitPHP/Console');
197196
}
198197

199198
private function commandHelp(Input $input, Output $output, array $command)

src/Utils/Table.php

+282
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,282 @@
1+
<?php
2+
/**
3+
* Application.php
4+
*
5+
* This file is part of Console.
6+
*
7+
* @author Muhammet ŞAFAK <[email protected]>
8+
* @copyright Copyright © 2022 Muhammet ŞAFAK
9+
* @license ./LICENSE MIT
10+
* @version 2.0
11+
* @link https://www.muhammetsafak.com.tr
12+
*/
13+
14+
declare(strict_types=1);
15+
namespace InitPHP\Console\Utils;
16+
17+
class Table
18+
{
19+
20+
public const COLOR_DEFAULT = 39;
21+
public const COLOR_BLACK = 30;
22+
public const COLOR_RED = 31;
23+
public const COLOR_GREEN = 32;
24+
public const COLOR_YELLOW = 33;
25+
public const COLOR_BLUE = 34;
26+
public const COLOR_MAGENTA = 35;
27+
public const COLOR_CYAN = 36;
28+
public const COLOR_LIGHT_GRAY = 37;
29+
public const COLOR_DARK_GRAY = 90;
30+
public const COLOR_LIGHT_RED = 91;
31+
public const COLOR_LIGHT_GREEN = 92;
32+
public const COLOR_LIGHT_YELLOW = 93;
33+
public const COLOR_LIGHT_BLUE = 94;
34+
public const COLOR_LIGHT_MAGENTA= 95;
35+
public const COLOR_LIGHT_CYAN = 96;
36+
public const COLOR_WHITE = 97;
37+
38+
public const BACKGROUND_BLACK = 40;
39+
public const BACKGROUND_RED = 41;
40+
public const BACKGROUND_GREEN = 42;
41+
public const BACKGROUND_YELLOW = 43;
42+
public const BACKGROUND_BLUE = 44;
43+
public const BACKGROUND_MAGENTA = 45;
44+
public const BACKGROUND_CYAN = 46;
45+
46+
public const ITALIC = 3;
47+
public const BOLD = 1;
48+
public const UNDERLINE = 4;
49+
public const STRIKETHROUGH = 9;
50+
51+
private $headerStyle = [
52+
self::BOLD,
53+
];
54+
55+
private $cellStyle = [];
56+
57+
private $borderStyle = [];
58+
59+
private $columnCellStyle = [];
60+
61+
private $chars = [
62+
'top' => '',
63+
'top-mid' => '',
64+
'top-left' => '',
65+
'top-right' => '',
66+
'bottom' => '',
67+
'bottom-mid' => '',
68+
'bottom-left' => '',
69+
'bottom-right' => '',
70+
'left' => '',
71+
'left-mid' => '',
72+
'mid' => '',
73+
'mid-mid' => '',
74+
'right' => '',
75+
'right-mid' => '',
76+
'middle' => '',
77+
];
78+
79+
/** @var array */
80+
private $rows = [];
81+
82+
public function __construct()
83+
{
84+
}
85+
86+
public function __toString()
87+
{
88+
return $this->getContent();
89+
}
90+
91+
public static function create(): Table
92+
{
93+
return new self();
94+
}
95+
96+
public function setHeaderStyle(int ...$format): self
97+
{
98+
$styles = [];
99+
foreach ($format as $style) {
100+
$styles[] = $style;
101+
}
102+
$this->headerStyle = $styles;
103+
return $this;
104+
}
105+
106+
public function setCellStyle(int ...$format): self
107+
{
108+
$styles = [];
109+
foreach ($format as $style) {
110+
$styles[] = $style;
111+
}
112+
$this->cellStyle = $styles;
113+
return $this;
114+
}
115+
116+
public function setBorderStyle(int ...$format): self
117+
{
118+
$styles = [];
119+
foreach ($format as $style) {
120+
$styles[] = $style;
121+
}
122+
$this->borderStyle = $styles;
123+
return $this;
124+
}
125+
126+
public function setColumnCellStyle(string $column, int ...$format): self
127+
{
128+
$styles = [];
129+
foreach ($format as $style) {
130+
$styles[] = $style;
131+
}
132+
$this->columnCellStyle[$column] = $styles;
133+
return $this;
134+
}
135+
136+
public function row(array $assoc): self
137+
{
138+
$row = [];
139+
foreach ($assoc as $key => $value) {
140+
if(!\is_string($value)){
141+
if(\is_object($value)){
142+
$value = \get_class($value);
143+
}elseif (\is_resource($value)) {
144+
$value = '[RESOURCE]';
145+
}elseif (\is_callable($value)){
146+
$value = '[CALLABLE]';
147+
}elseif(\is_null($value)){
148+
$value = '[NULL]';
149+
}elseif(\is_bool($value)){
150+
$value = $value === FALSE ? '[FALSE]' : '[TRUE]';
151+
}else{
152+
$value = (string)$value;
153+
}
154+
}
155+
$key = \trim((string)$key);
156+
$row[$key] = \trim($value);
157+
}
158+
$this->rows[] = $row;
159+
return $this;
160+
}
161+
162+
public function getContent(): string
163+
{
164+
$columnLengths = [];
165+
$headerData = [];
166+
167+
foreach ($this->rows as $row) {
168+
$keys = \array_keys($row);
169+
foreach ($keys as $key) {
170+
if(isset($headerData[$key])){
171+
continue;
172+
}
173+
$headerData[$key] = $key;
174+
$columnLengths[$key] = $this->strlen($key);
175+
}
176+
}
177+
178+
foreach ($this->rows as $row) {
179+
foreach ($headerData as $column) {
180+
$len = \max($columnLengths[$column], $this->strlen($row[$column]));
181+
if($len % 2 !== 0){
182+
++$len;
183+
}
184+
$columnLengths[$column] = $len;
185+
}
186+
}
187+
foreach ($columnLengths as &$length) {
188+
$length += 4;
189+
}
190+
191+
$res = $this->getTableTopContent($columnLengths)
192+
. $this->getFormattedRowContent($headerData, $columnLengths, "\e[" . \implode(';', $this->headerStyle) . "m", true)
193+
. $this->getTableSeparatorContent($columnLengths);
194+
foreach ($this->rows as $row) {
195+
foreach ($headerData as $column) {
196+
if(!isset($row[$column])){
197+
$row[$column] = '[NULL]';
198+
}
199+
}
200+
$res .= $this->getFormattedRowContent($row, $columnLengths, "\e[" . \implode(';', $this->cellStyle) . "m");
201+
}
202+
return $res . $this->getTableBottomContent($columnLengths);
203+
}
204+
205+
private function getFormattedRowContent($data, $lengths, string $format = '', bool $isHeader = false): string
206+
{
207+
$res = $this->getChar('left') . ' ';
208+
$rows = [];
209+
foreach ($data as $key => $value) {
210+
$customFormat = '';
211+
$value = ' ' . $value;
212+
$len = $this->strlen($value) - $lengths[$key] + 1;
213+
if($isHeader === FALSE && isset($this->columnCellStyle[$key]) && !empty($this->columnCellStyle[$key])){
214+
$customFormat = "\e[" . \implode(";", $this->columnCellStyle[$key]) . "m";
215+
}
216+
$rows[] = ($format !== '' ? $format : '')
217+
. ($customFormat !== '' ? $customFormat : '')
218+
. $value
219+
. ($format !== '' || $customFormat !== '' ? "\e[0m" : '')
220+
. \str_repeat(' ', (int)\abs($len));
221+
}
222+
$res .= \implode($this->getChar('middle'), $rows);
223+
return $res . $this->getChar('right') . \PHP_EOL;
224+
}
225+
226+
private function getTableTopContent($lengths): string
227+
{
228+
$res = $this->getChar('top-left');
229+
$rows = [];
230+
foreach ($lengths as $length) {
231+
$rows[] = $this->getChar('top', $length);
232+
}
233+
$res .= \implode($this->getChar('top-mid'), $rows);
234+
return $res . $this->getChar('top-right') . \PHP_EOL;
235+
}
236+
237+
private function getTableBottomContent($lengths): string
238+
{
239+
$res = $this->getChar('bottom-left');
240+
$rows = [];
241+
foreach ($lengths as $length) {
242+
$rows[] = $this->getChar('bottom', $length);
243+
}
244+
$res .= \implode($this->getChar('bottom-mid'), $rows);
245+
return $res . $this->getChar('bottom-right') . \PHP_EOL;
246+
}
247+
248+
private function getTableSeparatorContent($lengths): string
249+
{
250+
$res = $this->getChar('left-mid');
251+
$rows = [];
252+
foreach ($lengths as $length) {
253+
$rows[] = $this->getChar('mid', $length);
254+
}
255+
$res .= \implode($this->getChar('mid-mid'), $rows);
256+
return $res . $this->getChar('right-mid') . \PHP_EOL;
257+
}
258+
259+
private function getChar(string $char, int $len = 1): string
260+
{
261+
if(!isset($this->chars[$char])){
262+
return '';
263+
}
264+
$res = (empty($this->borderStyle) ? '' : "\e[" . \implode(";", $this->borderStyle) . "m");
265+
if($len === 1){
266+
$res .= $this->chars[$char];;
267+
}else{
268+
$res .= \str_repeat($this->chars[$char], $len);
269+
}
270+
$res .= empty($this->borderStyle) ? '' : "\e[0m";
271+
return $res;
272+
}
273+
274+
private function strlen(string $str): int
275+
{
276+
if(!\function_exists('mb_strlen')){
277+
return \strlen($str);
278+
}
279+
return \mb_strlen($str);
280+
}
281+
282+
}

0 commit comments

Comments
 (0)