]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/output/class_ConsoleOutput.php
Introduced initWebOutputInstance() which will initialize a web output instance.
[core.git] / inc / classes / main / output / class_ConsoleOutput.php
index 7d70a8c4caa56bd9c9f7d66047890fcaa932677d..c2ff3d4f4c521c3e3c660a488edd83b89aefd425 100644 (file)
@@ -55,7 +55,7 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
                // Set the content type
                // @TODO Need to rewrite this to $requestInstance->addHeader()
                if (!empty($contentType)) {
-                       @header(sprintf("Content-type: %s",
+                       @header(sprintf('Content-type: %s',
                                $contentType
                        ));
                } // END - if
@@ -90,6 +90,39 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer {
        public final function output ($outStream = FALSE, $stripTags = FALSE) {
                print trim($outStream) . PHP_EOL;
        }
+
+       /**
+        * Determines seek position
+        *
+        * @return      $seekPosition   Current seek position
+        * @throws      UnsupportedOperationException   If this method is called
+        */
+       public function determineSeekPosition () {
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
+
+       /**
+        * 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
+        * @throws      UnsupportedOperationException   If this method is called
+        */
+       public function seek ($offset, $whence = SEEK_SET) {
+               self::createDebugInstance(__CLASS__)->debugOutput('offset=' . $offset . ',whence=' . $whence);
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
+
+       /**
+        * Size of file stack
+        *
+        * @return      $size   Size (in bytes) of file
+        * @throws      UnsupportedOperationException   If this method is called
+        */
+       public function size () {
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
 }
 
 // [EOF]