X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Ffile_directories%2Fio_stream%2Fclass_FileIoStream.php;h=ed875ee235b35405d72a70c2d1e99f15344d4ebd;hp=956ca34a6091e09710eb78fffc41751fbcbd5045;hb=d017017ce06ac03e8c740e2327cb59dadc7d51b9;hpb=dae2f1f59d700ba335dd606e8700697f007264fe diff --git a/inc/classes/main/file_directories/io_stream/class_FileIoStream.php b/inc/classes/main/file_directories/io_stream/class_FileIoStream.php index 956ca34a..ed875ee2 100644 --- a/inc/classes/main/file_directories/io_stream/class_FileIoStream.php +++ b/inc/classes/main/file_directories/io_stream/class_FileIoStream.php @@ -262,6 +262,36 @@ class FileIoStream extends BaseFrameworkSystem implements FileInputStreamer, Fil self::createDebugInstance(__CLASS__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.'); throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION); } + + /** + * "Getter" for seek position + * + * @return $seekPosition Current seek position + * @todo 0% done + */ + public function getPosition () { + $this->partialStub(); + } + + /** + * Seek to given offset (default) or other possibilities as fseek() gives. + * + * @param $offset Offset to seek to (or used as "base" for other seeks) + * @param $whence Added to offset (default: only use offset to seek to) + * @return $status Status of file seek: 0 = success, -1 = failed + */ + public function seek ($offset, $whence = SEEK_SET) { + $this->partialStub('offset=' . $offset . ',whence=' . $whence); + } + + /** + * Size of file stack + * + * @return $size Size (in bytes) of file + */ + public function size () { + $this->partialStub(); + } } // [EOF]