Skip to content

[2.3][Process] fix Proccess run with pts enabled #16510

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "fix cs"
This reverts commit c4cf1c6.
  • Loading branch information
ewgRa committed Nov 10, 2015
commit 1925ba0eb51cb178231f216fbc9bc8e8caff2f54
41 changes: 20 additions & 21 deletions src/Symfony/Component/Process/Process.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ class Process
/**
* Constructor.
*
* @param string $commandline The command line to run
* @param string|null $cwd The working directory or null to use the working dir of the current PHP process
* @param array|null $env The environment variables or null to inherit
* @param string|null $stdin The STDIN content
* @param int|float|null $timeout The timeout in seconds or null to disable
* @param array $options An array of options for proc_open
* @param string $commandline The command line to run
* @param string|null $cwd The working directory or null to use the working dir of the current PHP process
* @param array|null $env The environment variables or null to inherit
* @param string|null $stdin The STDIN content
* @param integer|float|null $timeout The timeout in seconds or null to disable
* @param array $options An array of options for proc_open
*
* @throws RuntimeException When proc_open is not installed
*
Expand Down Expand Up @@ -184,7 +184,7 @@ public function __clone()
* @param callback|null $callback A PHP callback to run whenever there is some
* output available on STDOUT or STDERR
*
* @return int The exit status code
* @return integer The exit status code
*
* @throws RuntimeException When process can't be launch or is stopped
*
Expand Down Expand Up @@ -244,7 +244,7 @@ public function start($callback = null)
// Workaround for the bug, when PTS functionality is enabled.
// @see : https://github.com/symfony/symfony/issues/12643
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no need to ref this one in the code

// @see : https://github.com/php/php-src/pull/1588
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd ref https://bugs.php.net/69442 instead

$ptsWorkaround = fopen('php://fd/0', 'r');
$ptsWorkaround = fopen("php://fd/0", "r");
}

$this->process = proc_open($commandline, $descriptors, $this->processPipes->pipes, $this->cwd, $this->env, $this->options);
Expand Down Expand Up @@ -300,7 +300,7 @@ public function restart($callback = null)
*
* @param callback|null $callback A valid PHP callback
*
* @return int The exitcode of the process
* @return integer The exitcode of the process
*
* @throws RuntimeException When process timed out
* @throws RuntimeException When process stopped after receiving signal
Expand All @@ -315,7 +315,7 @@ public function wait($callback = null)
do {
$this->checkTimeout();
$running = defined('PHP_WINDOWS_VERSION_BUILD') ? $this->isRunning() : $this->processPipes->hasOpenHandles();
$close = !defined('PHP_WINDOWS_VERSION_BUILD') || !$running;
$close = !defined('PHP_WINDOWS_VERSION_BUILD') || !$running;;
$this->readPipes(true, $close);
} while ($running);

Expand All @@ -337,7 +337,7 @@ public function wait($callback = null)
/**
* Returns the Pid (process identifier), if applicable.
*
* @return int|null The process id if running, null otherwise
* @return integer|null The process id if running, null otherwise
*
* @throws RuntimeException In case --enable-sigchild is activated
*/
Expand All @@ -355,8 +355,7 @@ public function getPid()
/**
* Sends a posix signal to the process.
*
* @param int $signal A valid posix signal (see http://www.php.net/manual/en/pcntl.constants.php)
*
* @param integer $signal A valid posix signal (see http://www.php.net/manual/en/pcntl.constants.php)
* @return Process
*
* @throws LogicException In case the process is not running
Expand Down Expand Up @@ -448,7 +447,7 @@ public function getIncrementalErrorOutput()
/**
* Returns the exit code returned by the process.
*
* @return int The exit status code
* @return integer The exit status code
*
* @throws RuntimeException In case --enable-sigchild is activated and the sigchild compatibility mode is disabled
*
Expand Down Expand Up @@ -522,7 +521,7 @@ public function hasBeenSignaled()
*
* It is only meaningful if hasBeenSignaled() returns true.
*
* @return int
* @return integer
*
* @throws RuntimeException In case --enable-sigchild is activated
*
Expand Down Expand Up @@ -560,7 +559,7 @@ public function hasBeenStopped()
*
* It is only meaningful if hasBeenStopped() returns true.
*
* @return int
* @return integer
*
* @api
*/
Expand Down Expand Up @@ -626,10 +625,10 @@ public function getStatus()
/**
* Stops the process.
*
* @param int|float $timeout The timeout in seconds
* @param int $signal A posix signal to send in case the process has not stop at timeout, default is SIGKILL
* @param integer|float $timeout The timeout in seconds
* @param integer $signal A posix signal to send in case the process has not stop at timeout, default is SIGKILL
*
* @return int The exit-code of the process
* @return integer The exit-code of the process
*
* @throws RuntimeException if the process got signaled
*/
Expand Down Expand Up @@ -718,7 +717,7 @@ public function getTimeout()
*
* To disable the timeout, set this value to null.
*
* @param int|float|null $timeout The timeout in seconds
* @param integer|float|null $timeout The timeout in seconds
*
* @return self The current Process instance
*
Expand All @@ -742,7 +741,7 @@ public function setTimeout($timeout)
/**
* Enables or disables the TTY mode.
*
* @param bool $tty True to enabled and false to disable
* @param boolean $tty True to enabled and false to disable
*
* @return self The current Process instance
*/
Expand Down
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy