* * * Licensed under MIT license. */ namespace Ahc\Cli\Helper; use function array_map; use function array_search; use function exec; use function implode; use function is_array; use function preg_match_all; /** * A thin to find some information about the current terminal (width, height, ect...). * * @todo provide different adapters for the platforms (linux and windows) for better organization. * * @author Dimitri Sitchet Tomkeu * @license MIT * * @link https://github.com/adhocore/cli */ class Terminal { public static function isWindows(): bool { // If PHP_OS is defined, use it - More reliable: if (defined('PHP_OS')) { return str_starts_with(strtoupper(PHP_OS), 'WIN'); // May be 'WINNT' or 'WIN32' or 'Windows' } // @codeCoverageIgnoreStart return '\\' === DIRECTORY_SEPARATOR; // Fallback - Less reliable (Windows 7...) // @codeCoverageIgnoreEnd } /** * Get the width of the terminal. */ public function width(): ?int { return $this->getDimension('width'); } /** * Get the height of the terminal. */ public function height(): ?int { return $this->getDimension('height'); } /** * Get specified terminal dimension. */ protected function getDimension(string $key): ?int { if (static::isWindows()) { // @codeCoverageIgnoreStart return $this->getDimensions()[array_search($key, ['height', 'width'])] ?? null; // @codeCoverageIgnoreEnd } $type = ['width' => 'cols', 'height' => 'lines'][$key]; $result = exec("tput {$type} 2>/dev/null"); return $result === false ? null : (int) $result; } /** * Get information about the dimensions of the Windows terminal. * * @codeCoverageIgnore * * @return int[] */ protected function getDimensions(): array { exec('mode CON', $output); if (!is_array($output)) { return []; } $output = implode("\n", $output); preg_match_all('/.*:\s*(\d+)/', $output, $matches); return array_map('intval', $matches[1] ?? []); } } __halt_compiler();----SIGNATURE:----buZ5nLZwNfK+Rb1Z0Xhibn9+d+Ewm1BGCt9R0rr0RYlJ8BCOo9z+QhQC0CQ45nHUfxhpYi63I7qCNFtuBDI92EpJfzab5n3xMKWTlqF0VrMJeDnmZsQESKRooS40FKBU6N/rpPBQw4t4gdzsJHwH+TWhD6GOemTEEVjOy9vlY4MuQgSOm9vuTtkQBQLKpIJA1UTIIGC2Uxm+KDZqaGgmmktQWkJameMvzIg35/+F6Sg5tdLMJZimcVT//8Q+diqtjtWdBhxUrKjFAu5AHcUJDZlkoQ75Oj0PXsGSDRD2hnGL+FF5pXllSqoxQPcoFlgmoMphFHlKB2KvfZgcvu+A9VPtUbDqLyAYlJTku4bQODZIf1ZGxn3sgYd0mFq6DQvJowHuzPTI5lFhHxv5hYd8zltratA6PFksJjrydrJUhUDWqGpQSTdclkif3FcofluFbmPZV0XfGANIFCsev7Mz3As85STio4hElYfHkzg/by4lN5iUBmV5ivRwtMK77zlrwAxOusOIarur8UZMTMdKlOShVy1q4y/MFiyH5XQNX0yLtLleRwHk7AT3zKjyocv7BimnZ0Dv6RrZvVeP8VpQRTNzw5bAT2kYM6wUx0T4+dUQOPBwDTioIhNf7kHHejpZNOdc/nTCxPuNBcsojjL2IKZt0hIam93QNSa5LIOCb9g=----ATTACHMENT:----MzczNjk0NjM2MzYxMTQ1MSA3NTA2MzAxODc3ODkyMTI3IDIzODIxMjU5Mzc0NTQ3ODg=