2017-04-21 13:27:04 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Copyright 2016-2017 Daniil Gentili
|
|
|
|
(https://daniil.it)
|
|
|
|
This file is part of MadelineProto.
|
|
|
|
MadelineProto is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
MadelineProto is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with MadelineProto.
|
|
|
|
If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2017-04-21 13:27:50 +02:00
|
|
|
|
|
|
|
if (!extension_loaded('pthreads')) {
|
|
|
|
class Socket
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
private $sock;
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-04-21 13:27:50 +02:00
|
|
|
public function __construct(int $domain, int $type, int $protocol)
|
|
|
|
{
|
2017-04-21 13:27:04 +02:00
|
|
|
$this->sock = socket_create($domain, $type, $protocol);
|
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
|
|
|
public function setOption(int $level, int $name, $value)
|
|
|
|
{
|
2017-04-21 13:27:04 +02:00
|
|
|
if (in_array($name, [\SO_RCVTIMEO, \SO_SNDTIMEO])) {
|
2017-04-21 13:27:50 +02:00
|
|
|
$value = ['sec' => (int) $value, 'usec' => (int) (($value - (int) $value) * 1000000)];
|
2017-04-21 13:27:04 +02:00
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
2017-04-21 13:27:04 +02:00
|
|
|
return socket_set_option($this->sock, $level, $name, $value);
|
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
|
|
|
public function getOption(int $level, int $name)
|
|
|
|
{
|
2017-04-21 13:27:04 +02:00
|
|
|
return socket_get_option($this->sock, $level, $name);
|
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
2017-06-03 16:40:14 +02:00
|
|
|
public function setBlocking(bool $blocking)
|
2017-04-21 13:27:50 +02:00
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
if ($blocking) {
|
|
|
|
return socket_set_block($this->sock);
|
|
|
|
}
|
2017-04-21 13:27:50 +02:00
|
|
|
|
2017-06-03 16:40:14 +02:00
|
|
|
return socket_set_nonblock($this->sock);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
|
|
|
public function bind(string $address, int $port = 0)
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
return socket_bind($this->sock, $address, $port);
|
|
|
|
}
|
|
|
|
|
2017-06-03 16:40:33 +02:00
|
|
|
public function listen(int $backlog = 0)
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
return socket_listen($this->sock, $backlog);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
|
|
|
public function accept()
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
return socket_accept($this->sock);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
|
|
|
public function connect(string $address, int $port = 0)
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
return socket_connect($this->sock, $address, $port);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
|
|
|
public function select(array &$read, array &$write, array &$except, int $tv_sec, int $tv_usec = 0)
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
return socket_select($read, $write, $except, $tv_sec, $tv_usec);
|
|
|
|
}
|
|
|
|
|
2017-06-03 16:40:33 +02:00
|
|
|
public function read(int $length, int $flags = 0)
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
return socket_read($this->sock, $length, $flags);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
|
|
|
public function write(string $buffer, int $length = -1)
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
return $length === -1 ? socket_write($this->sock, $buffer) : socket_write($this->sock, $buffer, $Length);
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
|
|
|
public function send(string $data, int $length, int $flags)
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
return socket_send($data, $length, $flags);
|
|
|
|
}
|
|
|
|
|
2017-06-03 16:40:33 +02:00
|
|
|
public function close()
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
return socket_close($this->sock);
|
|
|
|
}
|
|
|
|
|
2017-06-03 16:40:33 +02:00
|
|
|
public function getPeerName(bool $port = true)
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
$address = '';
|
|
|
|
$port = 0;
|
|
|
|
$port ? socket_getpeername($this->sock, $address, $ip) : socket_getpeername($this->sock, $address);
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-06-03 16:40:14 +02:00
|
|
|
return $port ? ['host' => $address, 'port' => $port] : ['host' => $address];
|
|
|
|
}
|
2017-06-03 16:40:33 +02:00
|
|
|
|
|
|
|
public function getSockName(bool $port = true)
|
|
|
|
{
|
2017-06-03 16:40:14 +02:00
|
|
|
$address = '';
|
|
|
|
$port = 0;
|
|
|
|
$port ? socket_getsockname($this->sock, $address, $ip) : socket_getsockname($this->sock, $address);
|
2017-06-03 16:40:33 +02:00
|
|
|
|
2017-06-03 16:40:14 +02:00
|
|
|
return $port ? ['host' => $address, 'port' => $port] : ['host' => $address];
|
2017-04-21 13:27:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|