Renamed initStack() -> initFileStack() in BaseFileStack + added initStack()
authorRoland Haeder <roland@mxchange.org>
Thu, 15 May 2014 20:29:36 +0000 (22:29 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 15 May 2014 20:29:36 +0000 (22:29 +0200)
from BaseStacker to overwrite it.

Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/stacker/file_stack/class_BaseFileStack.php
inc/classes/main/stacker/file_stack/fifo/class_FiFoFileStack.php

index 0e91c7884a39ce6814e680df786552e601da9ae2..911b92e5db5c45a145d8898985b88555fc333677 100644 (file)
@@ -34,12 +34,12 @@ class BaseFileStack extends BaseStacker {
        }
 
        /**
-        * Initializes this stack.
+        * Initializes this file-based stack.
         *
         * @param       $fileName       File name of this stack
         * @return      void
         */
-       protected function initStack ($fileName) {
+       protected function initFileStack ($fileName) {
                // Get a file i/o pointer instance
                $pointerInstance = ObjectFactory::createObjectByConfiguredName('file_raw_input_output_class', array($fileName));
 
@@ -53,6 +53,25 @@ class BaseFileStack extends BaseStacker {
                $this->setIteratorInstance($iteratorInstance);
        }
 
+       /**
+        * Initializes given stacker
+        *
+        * @param       $stackerName    Name of the stack
+        * @param       $forceReInit    Force re-initialization
+        * @return      void
+        * @throws      AlreadyInitializedStackerException      If the stack is already initialized
+        */
+       public function initStack ($stackerName, $forceReInit = FALSE) {
+               // Is the stack already initialized?
+               if (($forceReInit === FALSE) && ($this->isStackInitialized($stackerName))) {
+                       // Then throw the exception
+                       throw new AlreadyInitializedStackerException(array($this, $stackerName, $forceReInit), self::EXCEPTION_STACKER_ALREADY_INITIALIZED);
+               } // END - if
+
+               // Initialize the given stack
+               $this->partialStub('stackerName=' . $stackerName . ',forceReInit=' . intval($forceReInit));
+       }
+
        /**
         * Checks whether the given stack is initialized (set in array $stackers)
         *
index e9624dd807225e39a523deca3988356c12a14ca4..201bb84e36410e7ed9f5e489c0eda86c52ebfc6a 100644 (file)
@@ -43,7 +43,7 @@ class FiFoFileStack extends BaseFileStack implements Stackable {
                $stackInstance = new FiFoFileStack();
 
                // Init this stack
-               $stackInstance->initStack($fileName);
+               $stackInstance->initFileStack($fileName);
 
                // Return the prepared instance
                return $stackInstance;