]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/producer/cruncher/work_units/class_CruncherTestUnitProducer.php
Introduced experimental apt-proxy sub project (a connector for apt-proxy usage into...
[hub.git] / application / hub / main / producer / cruncher / work_units / class_CruncherTestUnitProducer.php
index efd3109ce59683d3b60370478bd22c53cdd56cd8..638c4c569fc1093022b799625c25a6e9c32267fd 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
+ * @copyright  Copyright (c) 2011 - 2012 Cruncher Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -41,6 +41,12 @@ class CruncherTestUnitProducer extends BaseUnitProducer implements UnitProducer,
                // 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;
        }
@@ -56,7 +62,7 @@ class CruncherTestUnitProducer extends BaseUnitProducer implements UnitProducer,
                $templateInstance = XmlTemplateEngineFactory::createXmlTemplateEngineInstance('cruncher_test_unit_producer_template_class');
 
                // Load the template
-               $templateInstance->loadCruncherTestUnitTemplate('test_unit');
+               $templateInstance->loadXmlTemplate();
 
                // Render the XML content
                $templateInstance->renderXmlContent();
@@ -66,12 +72,13 @@ class CruncherTestUnitProducer extends BaseUnitProducer implements UnitProducer,
        }
 
        /**
-        * Produces some test units and pushes them onto the queue
+        * Prepares the produces of some test units and pushes them onto the queue
         *
+        * @param       $stateInstance  An instance of a Stateable instance
         * @return      void
-        * @todo        ~30% done
+        * @todo        ~60% done
         */
-       public function produceUnits () {
+       public function prepareUnitProduction (Stateable $stateInstance) {
                // First get a database wrapper because we want to permanently store test units
                $wrapperInstance = ObjectFactory::createObjectByConfiguredName('cruncher_unit_db_wrapper_class');
 
@@ -79,9 +86,9 @@ class CruncherTestUnitProducer extends BaseUnitProducer implements UnitProducer,
                $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
 
                // Add criteria for looking up already created and available test units
-               $searchInstance->addCriteria(CruncherUnitDatabaseWrapper::DB_COLUMN_UNIT_TYPE, BaseUnitProducer::UNIT_TYPE_TEST_UNIT);
+               $searchInstance->addCriteria(CruncherUnitDatabaseWrapper::DB_COLUMN_UNIT_TYPE  , BaseUnitProducer::UNIT_TYPE_TEST_UNIT);
                $searchInstance->addCriteria(CruncherUnitDatabaseWrapper::DB_COLUMN_UNIT_STATUS, BaseUnitProducer::UNIT_STATUS_AVAILABLE);
-               $searchInstance->setLimit($this->getConfigInstance()->getConfigEntry('cruncher_test_unit_max_count'));
+               $searchInstance->setConfiguredLimit('cruncher_test_unit_max_count');
 
                // Search for our units
                $resultInstance = $wrapperInstance->doSelectByCriteria($searchInstance);
@@ -91,22 +98,21 @@ class CruncherTestUnitProducer extends BaseUnitProducer implements UnitProducer,
                        // Entries found
                        // @TODO Unfinished work here
                        $this->debugInstance();
+
+                       // The state must be changed because ...
+                       $stateInstance->someFooStateChange();
                } else {
-                       // No entries found, so generate some. First we need a very secret message (a random string) ...
-                       $rngInstance = ObjectFactory::createObjectByConfiguredName('rng_class');
-                       $secretMessage = base64_encode($rngInstance->randomString($this->getConfigInstance()->getConfigEntry('cruncher_random_secret_message_length')));
+                       // Get an encrypted, random message from our source
+                       $encryptedMessage = $this->getHelperInstance()->generateRandomMessage();
 
-                       // Second, we need a secret key
-                       $secretKey = $rngInstance->randomString($this->getConfigInstance()->getConfigEntry('cruncher_random_secret_key_length'));
+                       // Debug message
+                       self::createDebugInstance(__CLASS__)->debugOutput('PRODUCER: An encrypted, random message has been generated. Generating keys ...');
 
-                       // Now encrypt the message with our key and a good (strong) cipher
-                       $cryptoInstance = ObjectFactory::createObjectByConfiguredName('crypto_class');
-                       $encryptedMessage = base64_encode($cryptoInstance->encryptString($secretMessage, $secretKey));
+                       // Set the encrypted message in the template instance
+                       $this->getTemplateInstance()->assignVariable('encrypted_message', $encryptedMessage);
 
-                       // Make sure the secret key and message are removed from memory
-                       unset($secretKey);
-                       unset($secretMessage);
-                       die($encryptedMessage);
+                       // The state must be changed because we have a new message
+                       $stateInstance->encryptedMessageGenerated();
                }
        }
 }