]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/producer/cruncher/work_units/class_CruncherTestUnitProducer.php
Updated 'core'.
[hub.git] / application / hub / main / producer / cruncher / work_units / class_CruncherTestUnitProducer.php
index 7683868322131e8152d8b2b5961b474e94edd0a1..4014b5f79f9a369d59901b66c2531be13d9f4519 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A CruncherTestUnit producer class
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
+ * @copyright  Copyright (c) 2011 - 2014 Cruncher Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-class CruncherTestUnitProducer extends BaseProducer implements UnitProducer, Registerable {
+class CruncherTestUnitProducer extends BaseUnitProducer implements UnitProducer, Registerable {
        /**
         * Protected constructor
         *
@@ -41,18 +41,78 @@ class CruncherTestUnitProducer extends BaseProducer implements UnitProducer, Reg
                // Get new instance
                $producerInstance = new CruncherTestUnitProducer();
 
+               // Test units have a helper class that wraps the source
+               $helperInstance = ObjectFactory::createObjectByConfiguredName('crypto_random_message_helper_class', array('test'));
+
+               // So set it in the producer
+               $producerInstance->setHelperInstance($helperInstance);
+
                // Return the prepared instance
                return $producerInstance;
        }
 
        /**
-        * Produces some work/test units and pushes them onto the queue
+        * Initializes the producer. This method satisfies the abstract BaseProducer
+        * class.
+        *
+        * @return      void
+        */
+       protected function initProducer () {
+               // Get a XML template instance
+               $templateInstance = XmlTemplateEngineFactory::createXmlTemplateEngineInstance('cruncher_test_unit_producer_template_class');
+
+               // Load the template
+               $templateInstance->loadXmlTemplate();
+
+               // Render the XML content
+               $templateInstance->renderXmlContent();
+
+               // And set it in this cruncher
+               $this->setTemplateInstance($templateInstance);
+       }
+
+       /**
+        * Prepares the produces of some test units and pushes them onto the queue
+        *
+        * @param       $stateInstance  An instance of a Stateable instance
+        * @return      void
+        * @todo        ~60% done
+        */
+       public function initUnitProduction (Stateable $stateInstance) {
+               // First get a database wrapper because we want to permanently store test units
+               $wrapperInstance = DatabaseWrapperFactory::createWrapperByConfiguredName('cruncher_unit_db_wrapper_class');
+
+               // Do we have some entries?
+               if ($wrapperInstance->isTestUnitProduced()) {
+                       // Entries found
+                       // @TODO Unfinished work here
+                       $this->debugInstance();
+
+                       // The state must be changed because ...
+                       $stateInstance->someFooStateChange();
+               } else {
+                       // Get an encrypted, random message from our source
+                       $encryptedMessage = $this->getHelperInstance()->generateRandomMessage();
+
+                       // Debug message
+                       self::createDebugInstance(__CLASS__)->debugOutput('PRODUCER: An encrypted, random message has been generated. Generating keys ...');
+
+                       // Set the encrypted message in the template instance
+                       $this->getTemplateInstance()->assignVariable('encrypted_message', $encryptedMessage);
+
+                       // The state must be changed because we have a new message
+                       $stateInstance->encryptedMessageGenerated();
+               }
+       }
+
+       /**
+        * Initializes the executor, whatever it does.
         *
         * @return      void
-        * @todo        0% done
+        * @todo        Maybe unfinished
         */
-       public function produceUnits () {
-               $this->partialStub('Please implement this method.');
+       public function initExecutor (Stateable $stateInstance) {
+               $this->partialStub('Maybe implement this method?');
        }
 }