Revert "dedi api update"

This reverts commit cf9a69b0c93f8e23a998e5e5dbf515eab6b89a72.
This commit is contained in:
kremsy 2014-02-27 13:41:08 +01:00 committed by Steffen Schröder
parent cdc1ab7037
commit b736e46861

View File

@ -24,11 +24,6 @@ class Client
public $cb_message = array(); public $cb_message = array();
public $reqhandle; public $reqhandle;
public $protocol = 0; public $protocol = 0;
/**
* @var int Timeout in milli-seconds
*/
public $timeout;
static $received; static $received;
static $sent; static $sent;
@ -88,18 +83,11 @@ class Client
} }
} }
/** function __construct($hostname = 'localhost', $port = 5000, $timeout)
*
* @param string $hostname
* @param int $port
* @param int $timeout In milliseconds
*/
function __construct($hostname, $port, $timeout = 50)
{ {
$this->socket = false; $this->socket = false;
$this->reqhandle = 0x80000000; $this->reqhandle = 0x80000000;
$this->timeout = $timeout; $this->init($hostname, $port, $timeout);
$this->init($hostname, $port);
} }
function __destruct() function __destruct()
@ -107,13 +95,13 @@ class Client
$this->terminate(); $this->terminate();
} }
protected function init($hostname, $port) protected function init($hostname, $port, $timeout)
{ {
$this->bigEndianTest(); $this->bigEndianTest();
// open connection // open connection
$this->socket = @fsockopen($hostname, $port, $errno, $errstr, $this->timeout/1000); $this->socket = @fsockopen($hostname, $port, $errno, $errstr, $timeout);
if (!$this->socket) if (!$this->socket)
{ {
throw new FatalException("transport error - could not open socket (error: $errno, $errstr)", FatalException::NOT_INITIALIZED); throw new FatalException("transport error - could not open socket (error: $errno, $errstr)", FatalException::NOT_INITIALIZED);
@ -153,7 +141,7 @@ class Client
{ {
$xml = $request->getXml(); $xml = $request->getXml();
@stream_set_timeout($this->socket, 0, $this->timeout * 1000 * 100); @stream_set_timeout($this->socket, 20); // timeout 20 s (to write the request)
// send request // send request
$this->reqhandle++; $this->reqhandle++;
if ($this->protocol == 1) if ($this->protocol == 1)
@ -196,12 +184,12 @@ class Client
{ {
$size = 0; $size = 0;
$recvhandle = 0; $recvhandle = 0;
@stream_set_timeout($this->socket, 0, $this->timeout * 1000); @stream_set_timeout($this->socket, 5); // timeout 20 s (to read the reply header)
// Get result // Get result
if ($this->protocol == 1) if ($this->protocol == 1)
{ {
$contents = fread($this->socket, 4); $contents = fread($this->socket, 4);
if (strlen($contents) == 0 || $contents === false) if (strlen($contents) == 0)
{ {
throw new FatalException('transport error - connection interrupted!', FatalException::INTERRUPTED); throw new FatalException('transport error - connection interrupted!', FatalException::INTERRUPTED);
} }
@ -212,7 +200,7 @@ class Client
else else
{ {
$contents = fread($this->socket, 8); $contents = fread($this->socket, 8);
if (strlen($contents) == 0 || $contents === false) if (strlen($contents) == 0)
{ {
throw new FatalException('transport error - connection interrupted!', FatalException::INTERRUPTED); throw new FatalException('transport error - connection interrupted!', FatalException::INTERRUPTED);
} }
@ -241,7 +229,7 @@ class Client
$contents = ''; $contents = '';
$contents_length = 0; $contents_length = 0;
@stream_set_timeout($this->socket, 0, $this->timeout * 1000); @stream_set_timeout($this->socket, 0, 10000); // timeout 10 ms (for successive reads until end)
while ($contents_length < $size) while ($contents_length < $size)
{ {
$contents .= fread($this->socket, $size-$contents_length); $contents .= fread($this->socket, $size-$contents_length);
@ -349,7 +337,7 @@ class Client
return $this->message->params[0]; return $this->message->params[0];
} }
function readCallbacks() function readCallbacks($timeout = 2000)
{ {
if (!$this->socket || $this->protocol == 0) if (!$this->socket || $this->protocol == 0)
throw new FatalException('transport error - Client not initialized', FatalException::NOT_INITIALIZED); throw new FatalException('transport error - Client not initialized', FatalException::NOT_INITIALIZED);
@ -361,7 +349,7 @@ class Client
$contents = ''; $contents = '';
$contents_length = 0; $contents_length = 0;
@stream_set_timeout($this->socket, 0, $this->timeout * 1000); // timeout 10 ms (to read available data) @stream_set_timeout($this->socket, 0, 100000); // timeout 10 ms (to read available data)
// (assignment in arguments is forbidden since php 5.1.1) // (assignment in arguments is forbidden since php 5.1.1)
$read = array($this->socket); $read = array($this->socket);
$write = NULL; $write = NULL;
@ -370,7 +358,7 @@ class Client
try try
{ {
$nb = @stream_select($read, $write, $except, 0, $this->timeout * 1000); $nb = @stream_select($read, $write, $except, 0, $timeout);
} }
catch (\Exception $e) catch (\Exception $e)
{ {
@ -396,11 +384,13 @@ class Client
while ($nb !== false && $nb > 0) while ($nb !== false && $nb > 0)
{ {
$timeout = 0; // we don't want to wait for the full time again, just flush the available data
$size = 0; $size = 0;
$recvhandle = 0; $recvhandle = 0;
// Get result // Get result
$contents = fread($this->socket, 8); $contents = fread($this->socket, 8);
if (strlen($contents) == 0 || $contents === false) if (strlen($contents) == 0)
{ {
throw new FatalException('transport error - connection interrupted!', FatalException::INTERRUPTED); throw new FatalException('transport error - connection interrupted!', FatalException::INTERRUPTED);
} }
@ -447,7 +437,7 @@ class Client
try try
{ {
$nb = @stream_select($read, $write, $except, 0, 0); // Notimeout, just flush the data $nb = @stream_select($read, $write, $except, 0, $timeout);
} }
catch (\Exception $e) catch (\Exception $e)
{ {