]> git.mxchange.org Git - core.git/commitdiff
Added streamData() method to interface Streamable
authorRoland Häder <roland@mxchange.org>
Thu, 14 Apr 2011 21:09:20 +0000 (21:09 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 14 Apr 2011 21:09:20 +0000 (21:09 +0000)
inc/classes/interfaces/streams/class_Streamable.php
inc/classes/main/streams/class_
inc/classes/main/streams/crypto/class_McryptStream.php
inc/classes/main/streams/crypto/class_NullCryptoStream.php

index b56001682aeb210590b468d050f958b544895b05..c0e89f5dff99bdfc713b7cb2ebba5eb34847855e 100644 (file)
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 interface Streamable extends FrameworkInterface {
+       /**
+        * Streams the data and maybe does something to it
+        *
+        * @param       $data   The data (string mostly) to "stream"
+        * @return      $data   The data (string mostly) to "stream"
+        */
+       function streamData ($data);
 }
 
 // [EOF]
index d556b5ba11d888269211cc0341023897dc540263..fe179d01c490dd9688048e344e92dc4286f645fb 100644 (file)
@@ -44,6 +44,18 @@ class ???Stream extends BaseStream implements Streamable {
                // Return the instance
                return $streamInstance;
        }
+
+       /**
+        * Streams the data and maybe does something to it
+        *
+        * @param       $data   The data (string mostly) to "stream"
+        * @return      $data   The data (string mostly) to "stream"
+        * @throws      UnsupportedOperationException   If this method is called
+        */
+       public function streamData ($data) {
+               $this->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
 }
 
 // [EOF]
index a0fc4b53a149a8efee6b3a7b351d14d941c8d2ce..829f35bc7eeb93c530758d991e849512dd5e7583 100644 (file)
@@ -150,6 +150,18 @@ class McryptStream extends BaseStream implements EncryptableStream {
                // Return the string
                return $str;
        }
+
+       /**
+        * Streams the data and maybe does something to it
+        *
+        * @param       $data   The data (string mostly) to "stream"
+        * @return      $data   The data (string mostly) to "stream"
+        * @throws      UnsupportedOperationException   If this method is called (which is a mistake)
+        */
+       public function streamData ($data) {
+               $this->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
 }
 
 // [EOF]
index bcaab6f007e631b040bbd6118605349b083c8995..a8fb9ecdca1bf127cd92cebaf532066e4dd49e1b 100644 (file)
@@ -73,6 +73,18 @@ class NullCryptoStream extends BaseStream implements EncryptableStream {
                // Return it
                return $str;
        }
+
+       /**
+        * Streams the data and maybe does something to it
+        *
+        * @param       $data   The data (string mostly) to "stream"
+        * @return      $data   The data (string mostly) to "stream"
+        * @throws      UnsupportedOperationException   If this method is called (which is a mistake)
+        */
+       public function streamData ($data) {
+               $this->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
 }
 
 // [EOF]