2 declare(strict_types=1);
53 $resource = $this->flySystemFS->readStream($path);
54 if ($resource ===
false) {
55 throw new IOException(
"Could not open stream for file \"$path\"");
81 $resource = $stream->detach();
83 if (!is_resource($resource)) {
84 throw new \InvalidArgumentException(
'The given stream must not be detached.');
87 $result = $this->flySystemFS->writeStream($path, $resource);
90 throw new IOException(
"Could not write stream to file \"$path\"");
92 }
catch (FileExistsException $ex) {
95 if (is_resource($resource)) {
116 $resource = $stream->detach();
118 if (!is_resource($resource)) {
119 throw new \InvalidArgumentException(
'The given stream must not be detached.');
122 $result = $this->flySystemFS->putStream($path, $resource);
125 throw new IOException(
"Could not put stream content into \"$path\"");
128 if (is_resource($resource)) {
149 $resource = $stream->detach();
151 if (!is_resource($resource)) {
152 throw new \InvalidArgumentException(
'The given stream must not be detached.');
155 $result = $this->flySystemFS->updateStream($path, $resource);
158 throw new IOException(
"Could not update file \"$path\"");
163 if (is_resource($resource)) {
Class FileAlreadyExistsException.
Class IOException Indicates general problems with the input or output operations. ...
__construct(FilesystemInterface $flySystemFS)
FlySystemFileStreamAccess constructor.
Class FlySystemFileStreamAccess Streaming access implementation of the fly system library...
static ofResource($resource)
Wraps an already created resource with the stream abstraction.
updateStream(string $path, FileStream $stream)
Updates an existing file.
readStream(string $path)
Opens a readable stream of the file.
Exercise XML Parser which completes/updates a given file by an xml string.
Class FileNotFoundException Indicates that a file is missing or not found.
Interface FileStreamAccess This interface describes all streaming filesystem operations.
writeStream(string $path, FileStream $stream)
Writes the stream to a new file.
Interface FileStream The base interface for all filesystem streams.
putStream(string $path, FileStream $stream)
Creates a new file or updates an existing one.