3930ca0cdc8e2ebf7fe7af39117fcf49c1c50359
[yaffs-website] / vendor / symfony / console / Terminal.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\Console;
13
14 class Terminal
15 {
16     private static $width;
17     private static $height;
18
19     /**
20      * Gets the terminal width.
21      *
22      * @return int
23      */
24     public function getWidth()
25     {
26         $width = getenv('COLUMNS');
27         if (false !== $width) {
28             return (int) trim($width);
29         }
30
31         if (null === self::$width) {
32             self::initDimensions();
33         }
34
35         return self::$width ?: 80;
36     }
37
38     /**
39      * Gets the terminal height.
40      *
41      * @return int
42      */
43     public function getHeight()
44     {
45         $height = getenv('LINES');
46         if (false !== $height) {
47             return (int) trim($height);
48         }
49
50         if (null === self::$height) {
51             self::initDimensions();
52         }
53
54         return self::$height ?: 50;
55     }
56
57     private static function initDimensions()
58     {
59         if ('\\' === \DIRECTORY_SEPARATOR) {
60             if (preg_match('/^(\d+)x(\d+)(?: \((\d+)x(\d+)\))?$/', trim(getenv('ANSICON')), $matches)) {
61                 // extract [w, H] from "wxh (WxH)"
62                 // or [w, h] from "wxh"
63                 self::$width = (int) $matches[1];
64                 self::$height = isset($matches[4]) ? (int) $matches[4] : (int) $matches[2];
65             } elseif (null !== $dimensions = self::getConsoleMode()) {
66                 // extract [w, h] from "wxh"
67                 self::$width = (int) $dimensions[0];
68                 self::$height = (int) $dimensions[1];
69             }
70         } elseif ($sttyString = self::getSttyColumns()) {
71             if (preg_match('/rows.(\d+);.columns.(\d+);/i', $sttyString, $matches)) {
72                 // extract [w, h] from "rows h; columns w;"
73                 self::$width = (int) $matches[2];
74                 self::$height = (int) $matches[1];
75             } elseif (preg_match('/;.(\d+).rows;.(\d+).columns/i', $sttyString, $matches)) {
76                 // extract [w, h] from "; h rows; w columns"
77                 self::$width = (int) $matches[2];
78                 self::$height = (int) $matches[1];
79             }
80         }
81     }
82
83     /**
84      * Runs and parses mode CON if it's available, suppressing any error output.
85      *
86      * @return int[]|null An array composed of the width and the height or null if it could not be parsed
87      */
88     private static function getConsoleMode()
89     {
90         if (!\function_exists('proc_open')) {
91             return;
92         }
93
94         $descriptorspec = array(
95             1 => array('pipe', 'w'),
96             2 => array('pipe', 'w'),
97         );
98         $process = proc_open('mode CON', $descriptorspec, $pipes, null, null, array('suppress_errors' => true));
99         if (\is_resource($process)) {
100             $info = stream_get_contents($pipes[1]);
101             fclose($pipes[1]);
102             fclose($pipes[2]);
103             proc_close($process);
104
105             if (preg_match('/--------+\r?\n.+?(\d+)\r?\n.+?(\d+)\r?\n/', $info, $matches)) {
106                 return array((int) $matches[2], (int) $matches[1]);
107             }
108         }
109     }
110
111     /**
112      * Runs and parses stty -a if it's available, suppressing any error output.
113      *
114      * @return string|null
115      */
116     private static function getSttyColumns()
117     {
118         if (!\function_exists('proc_open')) {
119             return;
120         }
121
122         $descriptorspec = array(
123             1 => array('pipe', 'w'),
124             2 => array('pipe', 'w'),
125         );
126
127         $process = proc_open('stty -a | grep columns', $descriptorspec, $pipes, null, null, array('suppress_errors' => true));
128         if (\is_resource($process)) {
129             $info = stream_get_contents($pipes[1]);
130             fclose($pipes[1]);
131             fclose($pipes[2]);
132             proc_close($process);
133
134             return $info;
135         }
136     }
137 }