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]
// 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]