Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14839312
D21358.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D21358.id.diff
View Options
diff --git a/src/toolset/ArcanistPrompt.php b/src/toolset/ArcanistPrompt.php
--- a/src/toolset/ArcanistPrompt.php
+++ b/src/toolset/ArcanistPrompt.php
@@ -86,18 +86,22 @@
throw $ex;
}
- // NOTE: We're making stdin nonblocking so that we can respond to signals
- // immediately. If we don't, and you ^C during a prompt, the program does
- // not handle the signal until fgets() returns.
-
$stdin = fopen('php://stdin', 'r');
if (!$stdin) {
throw new Exception(pht('Failed to open stdin for reading.'));
}
- $ok = stream_set_blocking($stdin, false);
- if (!$ok) {
- throw new Exception(pht('Unable to set stdin nonblocking.'));
+ // NOTE: We're making stdin nonblocking so that we can respond to signals
+ // immediately. If we don't, and you ^C during a prompt, the program does
+ // not handle the signal until fgets() returns.
+
+ // On Windows, we skip this because stdin can not be made nonblocking.
+
+ if (!phutil_is_windows()) {
+ $ok = stream_set_blocking($stdin, false);
+ if (!$ok) {
+ throw new Exception(pht('Unable to set stdin nonblocking.'));
+ }
}
echo "\n";
@@ -117,44 +121,48 @@
$query,
$options);
- while (true) {
- $is_saved = false;
+ $is_saved = false;
- $read = array($stdin);
- $write = array();
- $except = array();
+ if (phutil_is_windows()) {
+ $response = fgets($stdin);
+ } else {
+ while (true) {
+ $read = array($stdin);
+ $write = array();
+ $except = array();
+
+ $ok = @stream_select($read, $write, $except, 1);
+ if ($ok === false) {
+ // NOTE: We may be interrupted by a system call, particularly if
+ // the window is resized while a prompt is shown and the terminal
+ // sends SIGWINCH.
+
+ // If we are, just continue below and try to read from stdin. If
+ // we were interrupted, we should read nothing and continue
+ // normally. If the pipe is broken, the read should fail.
+ }
- $ok = @stream_select($read, $write, $except, 1);
- if ($ok === false) {
- // NOTE: We may be interrupted by a system call, particularly if
- // the window is resized while a prompt is shown and the terminal
- // sends SIGWINCH.
+ $response = '';
+ while (true) {
+ $bytes = fread($stdin, 8192);
+ if ($bytes === false) {
+ throw new Exception(
+ pht('fread() from stdin failed with an error.'));
+ }
- // If we are, just continue below and try to read from stdin. If
- // we were interrupted, we should read nothing and continue
- // normally. If the pipe is broken, the read should fail.
- }
+ if (!strlen($bytes)) {
+ break;
+ }
- $response = '';
- while (true) {
- $bytes = fread($stdin, 8192);
- if ($bytes === false) {
- throw new Exception(
- pht('fread() from stdin failed with an error.'));
+ $response .= $bytes;
}
- if (!strlen($bytes)) {
- break;
+ if (!strlen($response)) {
+ continue;
}
- $response .= $bytes;
- }
-
- if (!strlen($response)) {
- continue;
+ break;
}
-
- break;
}
$response = trim($response);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Feb 1, 10:22 PM (14 h, 36 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7082909
Default Alt Text
D21358.id.diff (3 KB)
Attached To
Mode
D21358: On Windows, don't try to set "stdin" nonblocking, as it does not work
Attached
Detach File
Event Timeline
Log In to Comment