Skip to content

Commit 5e82b2b

Browse files
committed
Merge pull request #38 from clue-labs/execstartdetached
Add execStartDetached() API and promote TTY setting instead of config
2 parents b3f7bef + 277ca42 commit 5e82b2b

7 files changed

+61
-25
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ The resulting stream is a well-behaving readable stream that will emit
210210
the normal stream events:
211211

212212
```php
213-
$stream = $client->execStartStream($exec, $config);
213+
$stream = $client->execStartStream($exec, $tty);
214214
$stream->on('data', function ($data) {
215215
// data will be emitted in multiple chunk
216216
echo $data;

examples/benchmark-exec.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
$client = $factory->createClient();
2525

2626
$client->execCreate($container, array('Cmd' => $cmd, 'AttachStdout' => true, 'AttachStderr' => true))->then(function ($info) use ($client) {
27-
$stream = $client->execStartStream($info['Id'], array('Tty' => true));
27+
$stream = $client->execStartStream($info['Id'], true);
2828

2929
$start = microtime(true);
3030
$bytes = 0;

examples/exec-inspect.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
})->then(function ($info) use ($client) {
3131
echo 'Inspected after creation: ' . json_encode($info, JSON_PRETTY_PRINT) . PHP_EOL;
3232

33-
return $client->execStart($info['ID'], array('Tty' => true))->then(function ($out) use ($client, $info) {
33+
return $client->execStart($info['ID'], true)->then(function ($out) use ($client, $info) {
3434
echo 'Starting returned: ';
3535
var_dump($out);
3636

examples/exec-stream.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
$out->pause();
2929

3030
$client->execCreate($container, array('Cmd' => $cmd, 'AttachStdout' => true, 'AttachStderr' => true, 'Tty' => true))->then(function ($info) use ($client, $out) {
31-
$stream = $client->execStartStream($info['Id'], array('Tty' => true));
31+
$stream = $client->execStartStream($info['Id'], true);
3232
$stream->pipe($out);
3333

3434
$stream->on('error', 'printf');

src/Client.php

+44-14
Original file line numberDiff line numberDiff line change
@@ -911,23 +911,53 @@ public function execCreate($container, $config)
911911
* for bigger command outputs, it's usually a better idea to use a streaming
912912
* approach, see `execStartStream()` for more details.
913913
*
914-
* If detach is true, this API returns after starting the exec command.
915-
* Otherwise, this API sets up an interactive session with the exec command.
916-
*
917-
* @param string $exec exec ID
918-
* @param array $config (see link)
914+
* @param string $exec exec ID
915+
* @param boolean $tty tty mode
919916
* @return PromiseInterface Promise<string> buffered exec data
920917
* @link https://docs.docker.com/reference/api/docker_remote_api_v1.15/#exec-start
921918
* @uses self::execStartStream()
922919
* @see self::execStartStream()
920+
* @see self::execStartDetached()
923921
*/
924-
public function execStart($exec, $config = array())
922+
public function execStart($exec, $tty = false)
925923
{
926924
return $this->streamingParser->bufferedStream(
927-
$this->execStartStream($exec, $config)
925+
$this->execStartStream($exec, $tty)
928926
);
929927
}
930928

929+
/**
930+
* Starts a previously set up exec instance id.
931+
*
932+
* This resolves after starting the exec command, but without waiting for
933+
* the command output (detached mode).
934+
*
935+
* @param string $exec exec ID
936+
* @param boolean $tty tty mode
937+
* @return PromiseInterface Promise<null>
938+
* @link https://docs.docker.com/reference/api/docker_remote_api_v1.15/#exec-start
939+
* @see self::execStart()
940+
* @see self::execStartStream()
941+
*/
942+
public function execStartDetached($exec, $tty = false)
943+
{
944+
return $this->browser->post(
945+
$this->uri->expand(
946+
'/exec/{exec}/start',
947+
array(
948+
'exec' => $exec
949+
)
950+
),
951+
array(
952+
'Content-Type' => 'application/json'
953+
),
954+
$this->json(array(
955+
'Detach' => true,
956+
'Tty' => !!$tty
957+
))
958+
)->then(array($this->parser, 'expectEmpty'));
959+
}
960+
931961
/**
932962
* Starts a previously set up exec instance id.
933963
*
@@ -938,16 +968,14 @@ public function execStart($exec, $config = array())
938968
* This works for command output of any size as only small chunks have to
939969
* be kept in memory.
940970
*
941-
* If detach is true, this API returns after starting the exec command.
942-
* Otherwise, this API sets up an interactive session with the exec command.
943-
*
944-
* @param string $exec exec ID
945-
* @param array $config (see link)
971+
* @param string $exec exec ID
972+
* @param boolean $tty tty mode
946973
* @return ReadableStreamInterface stream of exec data
947974
* @link https://docs.docker.com/reference/api/docker_remote_api_v1.15/#exec-start
948975
* @see self::execStart()
976+
* @see self::execStartDetached()
949977
*/
950-
public function execStartStream($exec, $config = array())
978+
public function execStartStream($exec, $tty = false)
951979
{
952980
return $this->streamingParser->parsePlainStream(
953981
$this->browser->withOptions(array('streaming' => true))->post(
@@ -960,7 +988,9 @@ public function execStartStream($exec, $config = array())
960988
array(
961989
'Content-Type' => 'application/json'
962990
),
963-
$this->json($config)
991+
$this->json(array(
992+
'Tty' => !!$tty
993+
))
964994
)
965995
);
966996
}

tests/ClientTest.php

+8
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,14 @@ public function testExecCreate()
385385
$this->expectPromiseResolveWith($json, $this->client->execCreate(123, $config));
386386
}
387387

388+
public function testExecDetached()
389+
{
390+
$body = '';
391+
$this->expectRequestFlow('POST', '/exec/123/start', $this->createResponse($body), 'expectEmpty');
392+
393+
$this->expectPromiseResolveWith('', $this->client->execStartDetached(123, true));
394+
}
395+
388396
public function testExecStart()
389397
{
390398
$data = 'hello world';

tests/FunctionalClientTest.php

+5-7
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public function testExecInspectBeforeRunning($exec)
138138
*/
139139
public function testExecStartWhileRunning($exec)
140140
{
141-
$promise = $this->client->execStart($exec, array('Tty' => true));
141+
$promise = $this->client->execStart($exec, true);
142142
$output = Block\await($promise, $this->loop);
143143

144144
$this->assertEquals('hello world', $output);
@@ -175,7 +175,7 @@ public function testExecStreamEmptyOutputWhileRunning($container)
175175
$this->assertTrue(is_array($exec));
176176
$this->assertTrue(is_string($exec['Id']));
177177

178-
$stream = $this->client->execStartStream($exec['Id'], array('Tty' => true));
178+
$stream = $this->client->execStartStream($exec['Id'], true);
179179
$stream->on('end', $this->expectCallableOnce());
180180

181181
$output = Block\await(Stream\buffer($stream), $this->loop);
@@ -187,7 +187,7 @@ public function testExecStreamEmptyOutputWhileRunning($container)
187187
* @depends testStartRunning
188188
* @param string $container
189189
*/
190-
public function testExecStreamEmptyOutputBecauseOfDetachWhileRunning($container)
190+
public function testExecDetachedWhileRunning($container)
191191
{
192192
$promise = $this->client->execCreate($container, array(
193193
'Cmd' => array('sleep', '10'),
@@ -200,10 +200,8 @@ public function testExecStreamEmptyOutputBecauseOfDetachWhileRunning($container)
200200
$this->assertTrue(is_array($exec));
201201
$this->assertTrue(is_string($exec['Id']));
202202

203-
$stream = $this->client->execStartStream($exec['Id'], array('Tty' => true, 'Detach' => true));
204-
$stream->on('end', $this->expectCallableOnce());
205-
206-
$output = Block\await(Stream\buffer($stream), $this->loop);
203+
$promise = $this->client->execStartDetached($exec['Id'], true);
204+
$output = Block\await($promise, $this->loop);
207205

208206
$this->assertEquals('', $output);
209207
}

0 commit comments

Comments
 (0)