Skip to content

Instantly share code, notes, and snippets.

@inhere
Created July 24, 2022 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inhere/f39d2d1641b2282e54ecefa84a5af8b4 to your computer and use it in GitHub Desktop.
Save inhere/f39d2d1641b2282e54ecefa84a5af8b4 to your computer and use it in GitHub Desktop.
implement a telnet tool class in php
<?php
/**
* Created by PhpStorm.
* User: inhere
* Date: 2017/5/9
* Time: 下午10:55
*/
namespace inhere\gearman\tools;
/**
* Class Telnet
* @package inhere\gearman\tools
*/
class Telnet
{
const DRIVER_SOCKET = 'socket';
const DRIVER_STREAM = 'stream';
const DRIVER_FSOCK = 'fsock';
/**
* @var array
*/
private static $availableDrivers = [
'socket' => 'socket_create',
'stream' => 'stream_socket_client',
'fsock' => 'fsockopen',
];
/**
* @var resource
*/
private $sock;
/**
* @var string
*/
private $driver;
/**
* @var string
*/
private $host;
/**
* @var int
*/
private $port;
/**
* @var array
*/
private $config = [
'driver' => '', // 'fsock' 'stream' 'socket'. if is empry, will auto select.
// 设置阻塞或者非阻塞模式
'blocking' => true,
// 10s
'timeout' => 10,
// max watch time 300s, when use watch()
'max_watch_time' => 300,
];
/**
* Telnet constructor.
* @param string $host
* @param int $port
* @param array $config
*/
public function __construct($host = '127.0.0.1', $port = 80, array $config = [])
{
if (strpos($host, ':')) {
list($host, $port) = explode(':', $host);
}
$this->host = $host ?: '127.0.0.1';
$this->port = $port ?: 80;
$this->setConfig($config);
$this->init();
$this->connect($this->host, $this->port);
}
/**
* init
*/
protected function init()
{
$driver = $this->config['driver'];
if (!$driver || !isset(self::$availableDrivers[$driver])) {
foreach (self::$availableDrivers as $name => $funcName) {
if (function_exists($funcName)) {
$driver = $name;
break;
}
}
}
$this->driver = $driver;
$this->config['blocking'] = (bool)$this->config['blocking'];
$this->config['timeout'] = (int)$this->config['timeout'];
}
/**
* @param string $host
* @param string $port
*/
protected function connect($host, $port)
{
try {
$this->doConnect($host, $port, $this->driver);
} catch (\Exception $e) {
throw new \RuntimeException(
"Use {$this->driver} connect to the server {$host}:{$port} failed, ERROR({$e->getCode()}): {$e->getMessage()}",
-500
);
}
}
/**
* @param string $host
* @param string $port
* @param string $driver
*/
protected function doConnect($host, $port, $driver)
{
$errNo = $errStr = null;
switch ($driver) {
case self::DRIVER_SOCKET:
$this->sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
if ($this->sock === false) {
throw new \RuntimeException('socket_create() failed. Reason: ' . socket_strerror(socket_last_error()), -400);
}
if (socket_connect($this->sock, $host, $port) === false) {
throw new \RuntimeException('socket_connect() failed. Reason: ' . socket_strerror(socket_last_error()), -450);
}
if ($this->config['blocking']) {
socket_set_block($this->sock);
} else {
socket_set_nonblock($this->sock);
}
socket_set_option($this->sock, SOL_SOCKET, SO_RCVTIMEO, [
'sec' => $this->config['timeout'],
'usec' => null
]);
break;
case self::DRIVER_STREAM:
$this->sock = stream_socket_client(
"tcp://{$host}:{$port}",
$errNo,
$errStr,
$this->config['timeout'],
STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT
);
break;
case self::DRIVER_FSOCK:
default:
$this->sock = fsockopen($host, $port, $errNo, $errStr, $this->config['timeout']);
break;
}
if (!$this->sock) {
throw new \RuntimeException("Connect to the {$host}:{$port} failed, ERROR: $errNo - $errStr", -500);
}
if ($driver !== self::DRIVER_SOCKET) {
stream_set_blocking($this->sock, $this->config['blocking'] ? 1 : 0);
stream_set_timeout($this->sock, $this->config['timeout'], 0);
}
}
/**
* watch a command
* @param string $command
* @param integer $interval (ms)
*/
public function watch($command, $interval = 500)
{
$count = 0;
$activeTime = time();
$maxTime = (int)$this->config['max_watch_time'];
$intervalUs = $interval * 1000;
echo "watch command: $command, refresh interval: {$interval}ms\n";
while (true) {
$count++;
$result = $this->command($command);
if (0 === strpos($result, 'ERR')) {
echo "$result\n";
echo "error command: $command.";
break;
}
// clear screen before output
echo "\033[2JThe {$count} times watch {$command} result(refresh interval: {$interval}ms):\n{$result}\n";
if ($maxTime > 0 && time() - $activeTime >= $maxTime) {
echo "watch time end.";
break;
}
usleep($intervalUs);
}
echo "Quit\n";
}
/**
* into interactive environment
*/
public function interactive()
{
echo "welcome! please input command('quit' or 'exit' to Quit).\n ";
while (true) {
echo "> ";
if ($cmd = trim(fgets(\STDIN))) {
// echo "input command: $cmd\n";
if ($cmd === 'quit' || $cmd === 'exit') {
echo "Quit. Bye\n";
break;
}
echo $this->command($cmd) . PHP_EOL;
}
usleep(50000);
}
$this->close();
}
/**
* send command
* @param string $command
* @param bool $readResult
* @param int $readSize
* @return false|int|string
*/
public function command($command, $readResult = true, $readSize = 1024)
{
$len = $this->write(trim($command) . "\r\n");
if ($readResult) {
return $this->read($readSize);
}
return $len;
}
/**
* write
* @param string $buffer
* @return int|false
*/
public function write($buffer)
{
if ($this->driver === self::DRIVER_SOCKET) {
return socket_write($this->sock, $buffer, strlen($buffer));
} else {
// $buffer = str_replace(chr(255), chr(255) . chr(255), $buffer);
return fwrite($this->sock, $buffer);
}
}
/**
* read
* @param integer $size
* @return string|false
*/
public function read($size = 1024)
{
if ($this->driver === self::DRIVER_SOCKET) {
return socket_read($this->sock, $size);
} else {
return fread($this->sock, $size);
}
}
/**
* close
*/
public function close()
{
if ($this->sock) {
if ($this->driver === self::DRIVER_SOCKET) {
socket_close($this->sock);
} else {
fclose($this->sock);
}
$this->sock = null;
}
}
/**
* @return resource
*/
public function getSock()
{
return $this->sock;
}
/**
* @return array
*/
public function getConfig()
{
return $this->config;
}
/**
* @param array $config
*/
public function setConfig(array $config)
{
if ($config) {
$this->config = array_merge($this->config, $config);
}
}
/**
* __destruct
*/
public function __destruct()
{
$this->close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment