moebius / socket
A coroutine based socket client and server implementation.
Requires
- charm/event: >=1.0.0
- charm/options: >=1.0.6
- moebius/coroutine: >=1.0
Requires (Dev)
- charm/testing: >=0.0.8
This package is auto-updated.
Last update: 2024-11-20 03:33:10 UTC
README
An easy to use interface for working with many simultaneous and non-blocking network connections.
Note! A default build of PHP limit the number of concurrent "polling" connections to 1024. This limitation can be overcome by running multiple server processes, or by recompiling PHP.
Architecture
This library provides three core classes which you can use to create network clients or server implementations.
-
Moebius\Socket\Client
provides an API to thestream_socket_client()
function in PHP, and can be used to create concurrent HTTP clients. -
Moebius\Socket\Server
provides an API to thestream_socket_server()
function, and lets you create servers that accepts connections and gives you connection instances for every new client that connects. -
Moebius\Socket\Connection
is similar to the Client class, but connections are initiated externally and returned by the Server class.
Example client
use Moebius\Socket\Client; use function M\{go, await}; /** * *** COROUTINE 1 *** */ $google = go(function() { $client = new Client('tcp://www.google.com:80'); $client->write("GET / HTTP/1.0\r\n\r\n"); while (!$client->eof()) { echo "< ".$client->readLine()."\n"; } }); /** * *** COROUTINE 2 *** */ $bing = go(function() { $client = new Client('tcp://www.bing.com:80'); $client->write("GET / HTTP/1.0\r\n\r\n"); while (!$client->eof()) { echo "< ".$client->readLine()."\n"; } }); /** * *** AWAIT BOTH COROUTINES *** */ await($google); await($bing);
Example server
use Moebius\Socket\Server; use function M\go; $server = new Server('tcp://0.0.0.0:8080'); while ($connection = $server->accept()) { /** * *** LAUNCH A COROUTINE PER CONNECTION *** */ go(function() use ($connection) { $requestLine = $connection->readLine(); do { $header = $connection->readLine(); } while ($header !== ''); $connection->write(<<<RESPONSE HTTP/1.0 200 OK\r Content-Type: text/plain\r \r Hello World! RESPONSE); $connection->close(); }); }
Complete working example
To issue multiple concurrent requests, you simply wrap run your code via the
M\go(callable $callbacl)
function. This way you can perform a lot of requests
at the same time.
<?php require(__DIR__.'/../vendor/autoload.php'); use Moebius\Socket\Client; use function M\{go, await}; // Asynchronous operation requires that you call via the `go()` function. $futureBufferA = go(function() { $client = new Client('tcp://www.dagbladet.no:80'); $client->connect(); $client->write("GET / HTTP/1.0\r\n\r\n"); $buffer = '' while (!$client->eof()) { $buffer .= $client->read(4096); } return $buffer; }); $futureBufferA = go(function() { $client = new Client('tcp://www.vg.no:80'); $client->connect(); $client->write("GET / HTTP/1.0\r\n\r\n"); $buffer = '' while (!$client->eof()) { $buffer .= $client->read(4096); } return $buffer; }); // note that it does not matter which order you await each of these buffers $bufferA = await( $futureBufferA ); $bufferB = await( $futureBufferB ); echo "Received ".strlen($bufferA)." bytes from client A and ".strlen($bufferB)." bytes from client B\n";
API
-
Client::__construct(string $address, ClientOptions|array $options=[])
. Creates an instance of the socket client, but does not perform any network operations. -
Client::connect()
. Non-blocking connect to server. (The DNS lookup operation may block at the moment) -
Client::disconnect()
. Close the connection. -
Client::read(int $length): string
. Read$length
bytes from the server. You may want to perform this via theM\go(callable $coroutine)
function if you want to issue multiple requests