3 * A helper class for announcing this node to other nodes
5 * @author Roland Haeder <webmaster@shipsimu.org>
7 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
8 * @license GNU GPL 3.0 or any newer version
9 * @link http://www.shipsimu.org
10 * @todo Find an interface for hub helper
12 * This program is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 class NodeAnnouncementHelper extends BaseNodeHelper implements HelpableNode {
27 * Protected constructor
31 protected function __construct () {
32 // Call parent constructor
33 parent::__construct(__CLASS__);
36 $this->setRecipientType(NetworkPackage::NETWORK_TARGET_UPPER);
39 $this->setPackageTags(array('announcement'));
43 * Creates the helper class
45 * @return $helperInstance A prepared instance of this helper
47 public static final function createNodeAnnouncementHelper () {
49 $helperInstance = new NodeAnnouncementHelper();
51 // Return the prepared instance
52 return $helperInstance;
56 * Loads the announcement descriptor for parsing
58 * @param $nodeInstance An instance of a NodeHelper class
61 public function loadDescriptorXml (NodeHelper $nodeInstance) {
63 self::createDebugInstance(__CLASS__)->debugOutput('HELPER[' . __METHOD__ . ':' . __LINE__ . ']: Starting with announcement to upper hubs...');
65 // Get a XML template instance
66 $templateInstance = XmlTemplateEngineFactory::createXmlTemplateEngineInstance('node_announcement_template_class');
68 // Set it for later use
69 $this->setTemplateInstance($templateInstance);
71 // Read the XML descriptor
72 $templateInstance->loadXmlTemplate();
74 // Render the XML content
75 $templateInstance->renderXmlContent();
79 * Publishes the node's descriptor XML to all found upper nodes when the
80 * node has not yet published it's descriptor to a bootstrap node. This is
81 * done by getting the raw XML content and inserting all variables into
82 * the code. After this wents fine, the rendered content got "packaged"
83 * for network delivery.
85 * @param $nodeInstance An instance of a NodeHelper class
88 public function sendPackage (NodeHelper $nodeInstance) {
89 // Sanity check: Is the node in the approx. state? (active)
90 $nodeInstance->getStateInstance()->validateNodeStateIsActiveOrReachable();
92 // Compile the template, this inserts the loaded node data into the gaps.
93 $this->getTemplateInstance()->compileTemplate();
95 // Get a singleton network package instance
96 $packageInstance = NetworkPackageFactory::createNetworkPackageInstance();
98 // Next, feed the content in. The network package class is a pipe-through class.
99 $packageInstance->enqueueRawDataFromTemplate($this);