66900af5309622e903930f3def7bfa987af2ae7a
[core.git] / inc / classes / main / container / socket / class_SocketContainer.php
1 <?php
2 /**
3  * A Socket Container class
4  *
5  * @author              Roland Haeder <webmaster@shipsimu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.shipsimu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  */
24 class SocketContainer extends BaseContainer implements Registerable {
25         /**
26          * Protected constructor
27          *
28          * @return      void
29          */
30         protected function __construct () {
31                 // Call parent constructor
32                 parent::__construct(__CLASS__);
33         }
34
35         /**
36          * Creates an instance of this Container class and prepares it for usage
37          *
38          * @param       $socketResource         A valid socket resource
39          * @param       $listenerInstance       A Listenable instance
40          * @param       $packageData            Raw package data
41          * @return      $containerInstance      An instance of this Container class
42          */
43         public static final function createSocketContainer ($socketResource, Listenable $listenerInstance = NULL, array $packageData = array()) {
44                 // Get a new instance
45                 $containerInstance = new SocketContainer();
46
47                 // Remove unneeded entries
48                 unset($packageData[NetworkPackage::PACKAGE_DATA_CONTENT]);
49                 unset($packageData[NetworkPackage::PACKAGE_DATA_SIGNATURE]);
50
51                 // Debug message
52                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOCKET-CONTAINER[' . __METHOD__ . ':' . __LINE__ . ']:socketResource=' . $socketResource . ',packageData='.print_r($packageData, TRUE));
53
54                 // Set the resource ...
55                 $containerInstance->setSocketResource($socketResource);
56
57                 // Is a listener instance given?
58                 if ($listenerInstance instanceof Listenable) {
59                         // ..., listener instance ...
60                         $containerInstance->setListenerInstance($listenerInstance);
61                 } // END - if
62
63                 // ... and package data
64                 $containerInstance->setPackageData($packageData);
65
66                 // Return the prepared instance
67                 return $containerInstance;
68         }
69
70         /**
71          * Checks whether the given Universal Node Locator matches with the one from package data
72          *
73          * @param       $unlInstance    An instance of a LocateableNode class
74          * @return      $matches                Whether $address matches with the one from package data
75          */
76         public final function ifAddressMatches (LocateableNode $unlInstance) {
77                 // Get current package data
78                 $packageData = $this->getPackageData();
79
80                 // Debug message
81                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOCKET-CONTAINER: unlInstance=' . print_r($unlInstance, TRUE) . ',packageData=' . print_r($packageData, TRUE));
82
83                 // So, does both match?
84                 die(__METHOD__ . ': Unfinished.' . PHP_EOL);
85                 $matches = ((isset($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT])) && ($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT] === $unlInstance));
86
87                 // Return result
88                 return $matches;
89         }
90
91         /**
92          * Checks whether the given socket matches with stored
93          *
94          * @param       $unlInstance    An instance of a LocateableNode class
95          * @return      $matches                Whether given socket matches
96          */
97         public final function ifSocketResourceMatches ($socketResource) {
98                 // Debug message
99                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOCKET-CONTAINER: socketResource[' . gettype($socketResource) . ']=' .$socketResource . ',storedResource[' . gettype($this->getSocketResource()) . ']=' . $this->getSocketResource());
100
101                 // So, does both match?
102                 $matches = ((is_resource($socketResource)) && ($socketResource === $this->getSocketResource()));
103
104                 // Return result
105                 return $matches;
106         }
107 }
108
109 // [EOF]
110 ?>