[TASK] Added function for clients, so they're able to send initial data right after connecting to a server.

[TASK] Restructured parts of the core to support sending data right after connecting.
[TASK] Adapted core part for automatic reconnect to support sending initial data, too.
This commit is contained in:
Jan Philipp Timme
2011-06-25 22:13:53 +00:00
parent 4c9f5ba7f3
commit 2c5e520c9f
11 changed files with 159 additions and 66 deletions
+23 -23
View File
@@ -16,17 +16,17 @@ class Socket_SocketHandler {
/**
* @var boolean
*/
protected $is_connected;
protected $isConnected;
/**
* @var boolean
*/
protected $is_bound;
protected $isBound;
/**
* @var boolean
*/
protected $is_listening;
protected $isListening;
/**
* Default constructor. Sets the socket.
@@ -37,9 +37,9 @@ class Socket_SocketHandler {
public function __construct($socket) {
if(is_resource($socket) === FALSE) throw new Exception_SocketException("Invalid socket ressource!", 1289663108);
$this->socket = $socket;
$this->is_bound = FALSE;
$this->is_connected = FALSE;
$this->is_listening = FALSE;
$this->isBound = FALSE;
$this->isConnected = FALSE;
$this->isListening = FALSE;
}
/**
@@ -62,23 +62,23 @@ class Socket_SocketHandler {
* @return boolean
*/
public function isConnected() {
return $this->is_connected;
return $this->isConnected;
}
/**
* Sets is_connected-flag.
* Sets isConnected-flag.
* @param boolean $connected
* @return void
*/
public function setConnected($connected) {
$this->is_connected = $connected;
$this->isConnected = $connected;
}
/**
* @return boolean
*/
public function isListening() {
return $this->is_listening;
return $this->isListening;
}
/**
@@ -89,10 +89,10 @@ class Socket_SocketHandler {
* @return void
*/
public function connect($address, $port) {
if($this->is_connected === TRUE) throw new Exception_SocketException("Socket is already connected!", 1289663170);
if($this->isConnected === TRUE) throw new Exception_SocketException("Socket is already connected!", 1289663170);
$result = socket_connect($this->socket, $address, $port);
if($result === FALSE) $this->error();
$this->is_connected = TRUE;
$this->isConnected = TRUE;
}
/**
@@ -103,12 +103,12 @@ class Socket_SocketHandler {
* @return void
*/
public function bind($address, $port) {
if($this->is_bound === TRUE) throw new Exception_SocketException("Socket is already bound!", 1289663212);
if($this->isBound === TRUE) throw new Exception_SocketException("Socket is already bound!", 1289663212);
$result = socket_set_option($this->socket, SOL_SOCKET, SO_REUSEADDR, 1);
if($result === FALSE) $this->error();
$result = socket_bind($this->socket, $address, $port);
if($result === FALSE) $this->error();
$this->is_bound = TRUE;
$this->isBound = TRUE;
}
/**
@@ -117,10 +117,10 @@ class Socket_SocketHandler {
* @return void
*/
public function listen() {
if($this->is_bound === FALSE) throw new Exception_SocketException("Cannot listen on unbound socket!", 1289663220);
if($this->isBound === FALSE) throw new Exception_SocketException("Cannot listen on unbound socket!", 1289663220);
$result = socket_listen($this->socket);
if($result === FALSE) $this->error();
$this->is_listening = TRUE;
$this->isListening = TRUE;
}
/**
@@ -128,7 +128,7 @@ class Socket_SocketHandler {
* @return void
*/
public function hasBeenAccepted() {
$this->is_connected = TRUE;
$this->isConnected = TRUE;
}
/**
@@ -138,8 +138,8 @@ class Socket_SocketHandler {
* @return ressource
*/
public function accept() {
if($this->is_bound === FALSE) throw new Exception_SocketException("Cannot accept connections from unbound socket!", 1289663239);
if($this->is_listening === FALSE) throw new Exception_SocketException("Cannot accept connections from socket that is not listening!", 1289663241);
if($this->isBound === FALSE) throw new Exception_SocketException("Cannot accept connections from unbound socket!", 1289663239);
if($this->isListening === FALSE) throw new Exception_SocketException("Cannot accept connections from socket that is not listening!", 1289663241);
$accept = socket_accept($this->socket);
if($accept === FALSE) $this->error();
return $accept;
@@ -151,7 +151,7 @@ class Socket_SocketHandler {
* @return string
*/
public function getRemoteName() {
if($this->is_connected === FALSE) throw new Exception_SocketException("Socket not connected, cannot retrieve remote name!", 1289928192);
if($this->isConnected === FALSE) throw new Exception_SocketException("Socket not connected, cannot retrieve remote name!", 1289928192);
$result = socket_getpeername($this->socket, $address, $port);
if($result === FALSE) $this->error();
return $address . ":" . $port;
@@ -163,7 +163,7 @@ class Socket_SocketHandler {
* @return string
*/
public function getLocalName() {
if($this->is_bound === FALSE ^ $this->is_connected === FALSE) throw new Exception_SocketException("Socket is not bound or connected, no local name available!", 1289928256);
if($this->isBound === FALSE ^ $this->isConnected === FALSE) throw new Exception_SocketException("Socket is not bound or connected, no local name available!", 1289928256);
$result = socket_getsockname($this->socket, $address, $port);
if($result === FALSE) $this->error();
return $address . ":" . $port;
@@ -199,7 +199,7 @@ class Socket_SocketHandler {
*/
public function close() {
usleep(100000);
if($this->is_connected === TRUE) {
if($this->isConnected === TRUE) {
$result = socket_shutdown($this->socket);
if($result === FALSE) $this->error();
}
@@ -207,7 +207,7 @@ class Socket_SocketHandler {
$result = socket_close($this->socket);
if($result === FALSE) $this->error();
}
$this->is_connected = FALSE;
$this->isConnected = FALSE;
}
/**