phpsocks5/Workerman/Connection/AsyncTcpConnection.php

275 lines
8.2 KiB
PHP
Raw Normal View History

2015-04-04 21:46:31 +08:00
<?php
2016-09-20 21:27:41 +08:00
/**
* This file is part of workerman.
*
* Licensed under The MIT License
* For full copyright and license information, please see the MIT-LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @author walkor<walkor@workerman.net>
* @copyright walkor<walkor@workerman.net>
* @link http://www.workerman.net/
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
2015-04-04 21:46:31 +08:00
namespace Workerman\Connection;
use Workerman\Events\EventInterface;
use Workerman\Worker;
2016-09-20 21:27:41 +08:00
use Exception;
2015-04-04 21:46:31 +08:00
/**
2016-09-20 21:27:41 +08:00
* AsyncTcpConnection.
2015-04-04 21:46:31 +08:00
*/
class AsyncTcpConnection extends TcpConnection
{
/**
2016-09-20 21:27:41 +08:00
* Emitted when socket connection is successfully established.
*
* @var callback
*/
public $onConnect = null;
/**
* Transport layer protocol.
*
* @var string
*/
public $transport = 'tcp';
/**
* Status.
*
2015-04-04 21:46:31 +08:00
* @var int
*/
2016-09-20 21:27:41 +08:00
protected $_status = self::STATUS_INITIAL;
2015-04-04 21:46:31 +08:00
/**
2016-09-20 21:27:41 +08:00
* Remote host.
*
* @var string
2015-04-04 21:46:31 +08:00
*/
2016-09-20 21:27:41 +08:00
protected $_remoteHost = '';
2015-04-04 21:46:31 +08:00
/**
2016-09-20 21:27:41 +08:00
* Connect start time.
*
* @var string
*/
protected $_connectStartTime = 0;
/**
* Remote URI.
*
* @var string
*/
protected $_remoteURI = '';
/**
* PHP built-in protocols.
*
* @var array
*/
protected static $_builtinTransports = array(
'tcp' => 'tcp',
'udp' => 'udp',
'unix' => 'unix',
'ssl' => 'ssl',
'sslv2' => 'sslv2',
'sslv3' => 'sslv3',
'tls' => 'tls'
);
/**
* Construct.
*
* @param string $remote_address
* @throws Exception
2015-04-04 21:46:31 +08:00
*/
public function __construct($remote_address)
{
2016-09-20 21:27:41 +08:00
$address_info = parse_url($remote_address);
if (!$address_info) {
echo new \Exception('bad remote_address');
$this->_remoteAddress = $remote_address;
} else {
if (!isset($address_info['port'])) {
$address_info['port'] = 80;
}
if (!isset($address_info['path'])) {
$address_info['path'] = '/';
}
if (!isset($address_info['query'])) {
$address_info['query'] = '';
} else {
$address_info['query'] = '?' . $address_info['query'];
}
$this->_remoteAddress = "{$address_info['host']}:{$address_info['port']}";
$this->_remoteHost = $address_info['host'];
$this->_remoteURI = "{$address_info['path']}{$address_info['query']}";
$scheme = isset($address_info['scheme']) ? $address_info['scheme'] : 'tcp';
}
$this->id = self::$_idRecorder++;
// Check application layer protocol class.
if (!isset(self::$_builtinTransports[$scheme])) {
$scheme = ucfirst($scheme);
$this->protocol = '\\Protocols\\' . $scheme;
if (!class_exists($this->protocol)) {
$this->protocol = "\\Workerman\\Protocols\\$scheme";
if (!class_exists($this->protocol)) {
2015-04-04 21:46:31 +08:00
throw new Exception("class \\Protocols\\$scheme not exist");
}
}
2016-09-20 21:27:41 +08:00
} else {
$this->transport = self::$_builtinTransports[$scheme];
2015-04-04 21:46:31 +08:00
}
2016-09-20 21:27:41 +08:00
// For statistics.
self::$statistics['connection_count']++;
$this->maxSendBufferSize = self::$defaultMaxSendBufferSize;
}
/**
* Do connect.
*
* @return void
*/
public function connect()
{
if ($this->_status !== self::STATUS_INITIAL && $this->_status !== self::STATUS_CLOSING && $this->_status !== self::STATUS_CLOSED) {
return;
}
$this->_status = self::STATUS_CONNECTING;
$this->_connectStartTime = microtime(true);
// Open socket connection asynchronously.
$this->_socket = stream_socket_client("{$this->transport}://{$this->_remoteAddress}", $errno, $errstr, 0,
STREAM_CLIENT_ASYNC_CONNECT);
// If failed attempt to emit onError callback.
if (!$this->_socket) {
2015-04-04 21:46:31 +08:00
$this->emitError(WORKERMAN_CONNECT_FAIL, $errstr);
2016-09-20 21:27:41 +08:00
if ($this->_status === self::STATUS_CLOSING) {
$this->destroy();
}
if ($this->_status === self::STATUS_CLOSED) {
$this->onConnect = null;
}
2015-04-04 21:46:31 +08:00
return;
}
2016-09-20 21:27:41 +08:00
// Add socket to global event loop waiting connection is successfully established or faild.
2015-04-04 21:46:31 +08:00
Worker::$globalEvent->add($this->_socket, EventInterface::EV_WRITE, array($this, 'checkConnection'));
}
2016-09-20 21:27:41 +08:00
/**
* Get remote address.
*
* @return string
*/
public function getRemoteHost()
{
return $this->_remoteHost;
}
/**
* Get remote URI.
*
* @return string
*/
public function getRemoteURI()
{
return $this->_remoteURI;
}
2015-04-04 21:46:31 +08:00
/**
2016-09-20 21:27:41 +08:00
* Try to emit onError callback.
*
* @param int $code
2015-04-04 21:46:31 +08:00
* @param string $msg
* @return void
*/
protected function emitError($code, $msg)
{
2016-09-20 21:27:41 +08:00
$this->_status = self::STATUS_CLOSING;
if ($this->onError) {
try {
2015-04-04 21:46:31 +08:00
call_user_func($this->onError, $this, $code, $msg);
2016-09-20 21:27:41 +08:00
} catch (\Exception $e) {
Worker::log($e);
exit(250);
} catch (\Error $e) {
Worker::log($e);
exit(250);
2015-04-04 21:46:31 +08:00
}
}
}
2016-09-20 21:27:41 +08:00
2015-04-04 21:46:31 +08:00
/**
2016-09-20 21:27:41 +08:00
* Check connection is successfully established or faild.
*
2015-04-04 21:46:31 +08:00
* @param resource $socket
* @return void
*/
public function checkConnection($socket)
{
2016-09-20 21:27:41 +08:00
// Check socket state.
if ($address = stream_socket_get_name($socket, true)) {
// Remove write listener.
Worker::$globalEvent->del($socket, EventInterface::EV_WRITE);
// Nonblocking.
stream_set_blocking($socket, 0);
// Compatible with hhvm
if (function_exists('stream_set_read_buffer')) {
stream_set_read_buffer($socket, 0);
2015-04-04 21:46:31 +08:00
}
2016-09-20 21:27:41 +08:00
// Try to open keepalive for tcp and disable Nagle algorithm.
if (function_exists('socket_import_stream') && $this->transport === 'tcp') {
$raw_socket = socket_import_stream($socket);
socket_set_option($raw_socket, SOL_SOCKET, SO_KEEPALIVE, 1);
socket_set_option($raw_socket, SOL_TCP, TCP_NODELAY, 1);
}
// Register a listener waiting read event.
Worker::$globalEvent->add($socket, EventInterface::EV_READ, array($this, 'baseRead'));
// There are some data waiting to send.
if ($this->_sendBuffer) {
Worker::$globalEvent->add($socket, EventInterface::EV_WRITE, array($this, 'baseWrite'));
}
$this->_status = self::STATUS_ESTABLISH;
$this->_remoteAddress = $address;
// Try to emit onConnect callback.
if ($this->onConnect) {
try {
2015-04-04 21:46:31 +08:00
call_user_func($this->onConnect, $this);
2016-09-20 21:27:41 +08:00
} catch (\Exception $e) {
Worker::log($e);
exit(250);
} catch (\Error $e) {
Worker::log($e);
exit(250);
2015-04-04 21:46:31 +08:00
}
2016-09-20 21:27:41 +08:00
}
// Try to emit protocol::onConnect
if (method_exists($this->protocol, 'onConnect')) {
try {
call_user_func(array($this->protocol, 'onConnect'), $this);
} catch (\Exception $e) {
Worker::log($e);
exit(250);
} catch (\Error $e) {
Worker::log($e);
exit(250);
2015-04-04 21:46:31 +08:00
}
}
2016-09-20 21:27:41 +08:00
} else {
// Connection failed.
$this->emitError(WORKERMAN_CONNECT_FAIL, 'connect ' . $this->_remoteAddress . ' fail after ' . round(microtime(true) - $this->_connectStartTime, 4) . ' seconds');
if ($this->_status === self::STATUS_CLOSING) {
$this->destroy();
}
if ($this->_status === self::STATUS_CLOSED) {
$this->onConnect = null;
}
2015-04-04 21:46:31 +08:00
}
}
}