Moved to correct method.
authorRoland Haeder <roland@mxchange.org>
Fri, 16 May 2014 23:02:58 +0000 (01:02 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 16 May 2014 23:02:58 +0000 (01:02 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/file_directories/io_stream/class_FileIoStream.php
inc/classes/middleware/io/class_FileIoHandler.php

index 956ca34a6091e09710eb78fffc41751fbcbd5045..ed875ee235b35405d72a70c2d1e99f15344d4ebd 100644 (file)
@@ -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]
index 1ac1fc34b5ca7e7a7df978ff336701cc85aec686..e7578348f4eb922d28052e07c11f567cf9237232 100644 (file)
@@ -166,36 +166,6 @@ class FileIoHandler extends BaseMiddleware implements IoHandler {
                // Read from the input handler
                return $this->getInputStream()->loadFileContents($fqfn);
        }
-
-       /**
-        * "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]