Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[WCM][Console] Add Process Helper documentation#3756

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
weaverryan merged 1 commit intosymfony:masterfromromainneutron:process-helper
Apr 12, 2014
Merged
Show file tree
Hide file tree
Changes fromall commits
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
1 change: 1 addition & 0 deletionscomponents/console/helpers/index.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,6 +9,7 @@ The Console Helpers

dialoghelper
formatterhelper
processhelper
progressbar
progresshelper
table
Expand Down
1 change: 1 addition & 0 deletionscomponents/console/helpers/map.rst.inc
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
* :doc:`/components/console/helpers/dialoghelper`
* :doc:`/components/console/helpers/formatterhelper`
* :doc:`/components/console/helpers/processhelper`
* :doc:`/components/console/helpers/progressbar`
* :doc:`/components/console/helpers/progresshelper`
* :doc:`/components/console/helpers/table`
Expand Down
56 changes: 56 additions & 0 deletionscomponents/console/helpers/processhelper.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
.. index::
single: Console Helpers; Process Helper

Process Helper
==============

.. versionadded:: 2.5
The Process Helper was introduced in Symfony 2.5.

The Process Helper shows processes as they're running and reports
useful information about process status.

To display process details, use the :class:`Symfony\\Component\\Console\\Helper\\ProcessHelper`
and run your command with verbosity. For example, running the following code with
a very verbose verbosity (e.g. -vv)::

use Symfony\Component\Process\ProcessBuilder;

$helper = $this->getHelperSet()->get('process');
$process = ProcessBuilder::create(array('figlet', 'Symfony'))->getProcess();
Copy link
Member

Choose a reason for hiding this comment

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

missing use statement

Copy link
Member

Choose a reason for hiding this comment

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

I like your example, btw :)

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

^^ asciiart ftw !


$helper->run($output, $process);

will result in this output:

.. image:: /images/components/console/process-helper-verbose.png

It will result in more detailed output with debug verbosity (e.g. -vvv):

.. image:: /images/components/console/process-helper-debug.png

In case the process fails, debugging is easier:

.. image:: /images/components/console/process-helper-error-debug.png

There are three ways to use the process helper: using a command line string, an array
of arguments that would be escaped or a :class:`Symfony\\Component\\Process\\Process`
object.

You can display a customized error message using the third argument of the
:method:`Symfony\\Component\\Console\\Helper\\ProcessHelper::run` method::

$helper->run($output, $process, 'The process failed :(');
Copy link
Contributor

Choose a reason for hiding this comment

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

maybe remove the sad face? it kind of misleads with the parenthesis

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

Syntax highlighting on the website would solve readability


A custom process callback can be passed as fourth argument, refer to the
:doc:`Process Component </components/process>` for callback documentation::

use Symfony\Component\Process\Process;

$helper->run($output, $process, 'The process failed :(', function ($type, $data) {
if (Process::ERR === $type) {
// do something with the stderr output
} else {
// do something with the stdout
}
});
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View file
Open in desktop
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

[8]ページ先頭

©2009-2025 Movatter.jp