PocketMine-MP
5.21.2 git-b2aa6396c3cc2cafdd815eacc360e1ad89599899
Loading...
Searching...
No Matches
ConsoleReader.php
1
<?php
2
3
/*
4
*
5
* ____ _ _ __ __ _ __ __ ____
6
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
7
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
8
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
9
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
10
*
11
* This program is free software: you can redistribute it and/or modify
12
* it under the terms of the GNU Lesser General Public License as published by
13
* the Free Software Foundation, either version 3 of the License, or
14
* (at your option) any later version.
15
*
16
* @author PocketMine Team
17
* @link http://www.pocketmine.net/
18
*
19
*
20
*/
21
22
declare(strict_types=1);
23
24
namespace
pocketmine\console;
25
26
use
pocketmine\utils\Utils
;
27
use
function
fclose;
28
use
function
fgets;
29
use
function
fopen;
30
use
function
is_resource;
31
use
function
stream_select;
32
use
function
trim;
33
use
function
usleep;
34
35
final
class
ConsoleReader
{
37
private
$stdin;
38
39
public
function
__construct(){
40
$this->initStdin();
41
}
42
43
private
function
initStdin() :
void
{
44
if
(is_resource($this->stdin)){
45
fclose($this->stdin);
46
}
47
48
$this->stdin = Utils::assumeNotFalse(fopen(
"php://stdin"
,
"r"
),
"Opening stdin should never fail"
);
49
}
50
54
public
function
readLine
() : ?string{
55
if(!is_resource($this->stdin)){
56
$this->initStdin();
57
}
58
59
$r = [$this->stdin];
60
$w = $e =
null
;
61
if
(($count = stream_select($r, $w, $e, 0, 200000)) === 0){
//nothing changed in 200000 microseconds
62
return
null
;
63
}elseif($count ===
false
){
//stream error
64
return
null
;
65
}
66
67
if
(($raw = fgets($this->stdin)) ===
false
){
//broken pipe or EOF
68
usleep(200000);
//prevent CPU waste if it's end of pipe
69
return
null
;
//loop back round
70
}
71
72
$line = trim($raw);
73
74
return
$line !==
""
? $line :
null
;
75
}
76
77
public
function
__destruct(){
78
fclose($this->stdin);
79
}
80
}
pocketmine\console\ConsoleReader
Definition
ConsoleReader.php:35
pocketmine\console\ConsoleReader\readLine
readLine()
Definition
ConsoleReader.php:54
pocketmine\utils\Utils
Definition
Utils.php:103
src
console
ConsoleReader.php
Generated by
1.12.0