]> git.mxchange.org Git - core.git/blob - framework/main/classes/info/connection/class_ConnectionInfo.php
e9b73debe6d6832e4d4cad68714efaffab5e1232
[core.git] / framework / main / classes / info / connection / class_ConnectionInfo.php
1 <?php
2 // Own namespace
3 namespace CoreFramework\Information\Connection;
4
5 // Import framework stuff
6 use CoreFramework\Information\ShareableInfo;
7 use CoreFramework\Listener\Listenable;
8 use CoreFramework\Registry\Registerable;
9
10 /**
11  * A Connection information class
12  *
13  * @author              Roland Haeder <webmaster@ship-simu.org>
14  * @version             0.0.0
15  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
16  * @license             GNU GPL 3.0 or any newer version
17  * @link                http://www.ship-simu.org
18  *
19  * This program is free software: you can redistribute it and/or modify
20  * it under the terms of the GNU General Public License as published by
21  * the Free Software Foundation, either version 3 of the License, or
22  * (at your option) any later version.
23  *
24  * This program is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  * GNU General Public License for more details.
28  *
29  * You should have received a copy of the GNU General Public License
30  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
31  */
32 class ConnectionInfo extends BaseInfo implements ShareableInfo, Registerable {
33         /**
34          * Protected constructor
35          *
36          * @return      void
37          */
38         protected function __construct () {
39                 // Call parent constructor
40                 parent::__construct(__CLASS__);
41         }
42
43         /**
44          * Creates an instance of this class
45          *
46          * @return      $infoInstance   An instance of a ShareableInfo class
47          */
48         public final static function createConnectionInfo () {
49                 // Get new instance
50                 $infoInstance = new ConnectionInfo();
51
52                 // Return the prepared instance
53                 return $infoInstance;
54         }
55
56         /**
57          * Fills the information class with data from a Listenable instance
58          *
59          * @param       $listenerInstance       An instance of a Listenable class
60          * @return      void
61          */
62         public function fillWithListenerInformation (Listenable $listenerInstance) {
63                 // Debug message
64                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: protocolName=' . $listenerInstance->getProtocolName() . ',listenerInstance=' . $listenerInstance->__toString() . ' - CALLED!');
65
66                 // Fill the generic array with several data from the listener:
67                 $this->setProtocolName($listenerInstance->getProtocolName());
68                 $this->setGenericArrayElement('connection', 'dummy', 'dummy', UniversalNodeLocator::UNL_PART_ADDRESS , $listenerInstance->getListenAddress());
69                 $this->setGenericArrayElement('connection', 'dummy', 'dummy', UniversalNodeLocator::UNL_PART_PORT    , $listenerInstance->getListenPort());
70
71                 // Set listener here
72                 $this->setListenerInstance($listenerInstance);
73
74                 // Debug message
75                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: EXIT!');
76         }
77
78         /**
79          * Fills the information class with data from a ConnectionHelper instance
80          *
81          * @param       $helperInstance         An instance of a ConnectionHelper class
82          * @return      void
83          */
84         public function fillWithConnectionHelperInformation (ConnectionHelper $helperInstance) {
85                 // Debug message
86                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: protocolName=' . $helperInstance->getProtocolName() . ',helperInstance=' . $helperInstance->__toString() . ',socketResource=' . $helperInstance->getSocketResource() . ' - CALLED!');
87
88                 // Fill the generic array with several data from the listener:
89                 $this->setProtocolName($helperInstance->getProtocolName());
90                 $this->setGenericArrayElement('connection', 'dummy', 'dummy', UniversalNodeLocator::UNL_PART_ADDRESS , $helperInstance->getAddress());
91                 $this->setGenericArrayElement('connection', 'dummy', 'dummy', UniversalNodeLocator::UNL_PART_PORT    , $helperInstance->getConnectionPort());
92
93                 // Set helper here
94                 $this->setHelperInstance($helperInstance);
95
96                 // Debug message
97                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: EXIT!');
98         }
99
100         /**
101          * Getter for address
102          *
103          * @return      $address        Address from shared information
104          */
105         public final function getAddress () {
106                 // Return it from generic array
107                 return $this->getGenericArrayElement('connection', 'dummy', 'dummy', UniversalNodeLocator::UNL_PART_ADDRESS);
108         }
109
110         /**
111          * Getter for port
112          *
113          * @return      $port   Port from shared information
114          */
115         public final function getPort () {
116                 // Return it from generic array
117                 return $this->getGenericArrayElement('connection', 'dummy', 'dummy', UniversalNodeLocator::UNL_PART_PORT);
118         }
119
120 }