]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/filter/class_BaseHubFilter.php
Updated 'core' + renamed 'main' -> 'classes'.
[hub.git] / application / hub / main / filter / class_BaseHubFilter.php
diff --git a/application/hub/main/filter/class_BaseHubFilter.php b/application/hub/main/filter/class_BaseHubFilter.php
deleted file mode 100644 (file)
index 6346a60..0000000
+++ /dev/null
@@ -1,126 +0,0 @@
-<?php
-/**
- * A generic filter for hub project
- *
- * @author             Roland Haeder <webmaster@shipsimu.org>
- * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team
- * @license            GNU GPL 3.0 or any newer version
- * @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
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * 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 BaseHubFilter extends BaseFilter {
-       /**
-        * Array with all data XML nodes (which hold the actual data) and their values
-        */
-       protected $dataXmlNodes = array();
-
-       /**
-        * Protected constructor
-        *
-        * @param       $className      Real name of class
-        * @return      void
-        */
-       protected function __construct ($className) {
-               // Call parent constructor
-               parent::__construct($className);
-       }
-
-       /**
-        * Processes the given raw message content. The method renderXmlContent
-        * may throw (not the method itself) several exceptions:
-        *
-        * InvalidXmlNodeException  - If an invalid XML node has been found (e.g.
-        *                            wrong/out-dated template used)
-        * XmlNodeMismatchException - Again might be caused by invalid XML node
-        *                            usage
-        * XmlParserException       - If the XML message is damaged or not
-        *                            well-formed
-        *
-        * @param       $messageType            Type of message
-        * @param       $messageData            Raw message data array
-        * @param       $packageInstance        An instance of a Receivable class
-        * @return      void
-        * @todo        Exceptions from renderXmlContent() are currently unhandled
-        */
-       protected function genericProcessMessage ($messageType, array $messageData, Receivable $packageInstance) {
-               // Make sure the wanted element is there
-               assert(isset($messageData[NetworkPackage::PACKAGE_CONTENT_MESSAGE]));
-               assert(isset($messageData[NetworkPackage::PACKAGE_CONTENT_SENDER]));
-               assert(isset($messageData[NetworkPackage::PACKAGE_CONTENT_HASH]));
-               assert(isset($messageData[NetworkPackage::PACKAGE_CONTENT_TAGS]));
-
-               // Get a template instance from the factory
-               $templateInstance = XmlTemplateEngineFactory::createXmlTemplateEngineInstance('node_' . $messageType . '_template_class');
-
-               // Get message content
-               $messageContent = $messageData[NetworkPackage::PACKAGE_CONTENT_MESSAGE];
-
-               // And render the XML content (aka message)
-               $templateInstance->renderXmlContent($messageContent);
-
-               // Debug message
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(str_replace('_', '-', strtoupper($messageType)) . '-TAG: Handling ' . strlen($messageContent) . ' bytes: ' . $messageContent);
-
-               /*
-                * The template system now stores all required data as 'general'
-                * variables, so simply get them. If there is an invalid XML node
-                * inside the message, the above method call will cause exceptions.
-                */
-               foreach ($this->dataXmlNodes as $key => $dummy) {
-                       // Call it
-                       $value = $templateInstance->readXmlData($key);
-
-                       /*
-                        * If value is NULL, a variable hasn't been found. This could mean
-                        * that *this* node is running an out-dated software or the other
-                        * peer is using an out-dated $messageType.xml template.
-                        */
-                       if (is_null($value)) {
-                               // Output a warning
-                               self::createDebugInstance(__CLASS__)->debugOutput(str_replace('_', '-', strtoupper($messageType)) . '-TAG: Found not fully supported variable ' . $key . ' - skipping.');
-
-                               // Skip this part, don't write NULLs to the array
-                               continue;
-                       } // END - if
-
-                       // Debug message
-                       //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(str_replace('_', '-', strtoupper($messageType)) . '-TAG: key=' . $key . ',value=' . $value);
-
-                       // Set it now
-                       $this->dataXmlNodes[$key] = $value;
-               } // END - foreach
-
-               // Construct an array for pushing it on next stack
-               $messageArray = array(
-                       // Message data itself
-                       NetworkPackage::MESSAGE_ARRAY_DATA   => $this->dataXmlNodes,
-                       // Message type (which is $messageType)
-                       NetworkPackage::MESSAGE_ARRAY_TYPE   => $messageType,
-                       // Message sender
-                       NetworkPackage::MESSAGE_ARRAY_SENDER => $messageData[NetworkPackage::PACKAGE_CONTENT_SENDER],
-                       // Package hash
-                       NetworkPackage::MESSAGE_ARRAY_HASH   => $messageData[NetworkPackage::PACKAGE_CONTENT_HASH],
-                       // Package tags
-                       NetworkPackage::MESSAGE_ARRAY_TAGS   => $messageData[NetworkPackage::PACKAGE_CONTENT_TAGS],
-               );
-
-               // Push the processed message back on stack
-               $packageInstance->getStackInstance()->pushNamed(NetworkPackage::STACKER_NAME_PROCESSED_MESSAGE, $messageArray);
-       }
-}
-
-// [EOF]
-?>