-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Return closed stream if STDIO stream is closed (#107)
- Loading branch information
Showing
3 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace Amp\ByteStream\Internal; | ||
|
||
use Amp\ByteStream\ReadableResourceStream; | ||
use Amp\ByteStream\WritableResourceStream; | ||
|
||
/** | ||
* @internal | ||
* @param resource $resource Stream resource. | ||
*/ | ||
function tryToCreateReadableStreamFromResource($resource): ReadableResourceStream | ||
{ | ||
if (\is_resource($resource) && \get_resource_type($resource) === 'stream') { | ||
return new ReadableResourceStream($resource); | ||
} | ||
|
||
$stream = new ReadableResourceStream(\fopen('php://memory', 'rb')); | ||
$stream->close(); | ||
|
||
return $stream; | ||
} | ||
|
||
/** | ||
* @internal | ||
* @param resource $resource Stream resource. | ||
*/ | ||
function tryToCreateWritableStreamFromResource($resource): WritableResourceStream | ||
{ | ||
if (\is_resource($resource) && \get_resource_type($resource) === 'stream') { | ||
return new WritableResourceStream($resource); | ||
} | ||
|
||
$stream = new WritableResourceStream(\fopen('php://memory', 'wb')); | ||
$stream->close(); | ||
|
||
return $stream; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters