MediaWiki master
UDPTransport.php
Go to the documentation of this file.
1<?php
21use Wikimedia\IPUtils;
22
34 // Limit to 64 KiB
35 public const MAX_PAYLOAD_SIZE = 65507;
36 private string $host;
37 private int $port;
39 private $prefix;
40 private int $domain;
41
48 public function __construct( $host, $port, $domain, $prefix = false ) {
49 $this->host = $host;
50 $this->port = $port;
51 $this->domain = $domain;
52 $this->prefix = $prefix;
53 }
54
59 public static function newFromString( $info ) {
60 if ( preg_match( '!^udp:(?://)?\[([0-9a-fA-F:]+)\]:(\d+)(?:/(.*))?$!', $info, $m ) ) {
61 // IPv6 bracketed host
62 $host = $m[1];
63 $port = intval( $m[2] );
64 $prefix = $m[3] ?? false;
65 $domain = AF_INET6;
66 } elseif ( preg_match( '!^udp:(?://)?([a-zA-Z0-9.-]+):(\d+)(?:/(.*))?$!', $info, $m ) ) {
67 $host = $m[1];
68 if ( !IPUtils::isIPv4( $host ) ) {
69 $host = gethostbyname( $host );
70 }
71 $port = intval( $m[2] );
72 $prefix = $m[3] ?? false;
73 $domain = AF_INET;
74 } else {
75 throw new InvalidArgumentException( __METHOD__ . ': Invalid UDP specification' );
76 }
77
78 return new self( $host, $port, $domain, $prefix );
79 }
80
84 public function emit( $text ): void {
85 // Clean it up for the multiplexer
86 if ( $this->prefix !== false ) {
87 $text = preg_replace( '/^/m', $this->prefix . ' ', $text );
88
89 if ( strlen( $text ) > self::MAX_PAYLOAD_SIZE - 1 ) {
90 $text = substr( $text, 0, self::MAX_PAYLOAD_SIZE - 1 );
91 }
92
93 if ( substr( $text, -1 ) != "\n" ) {
94 $text .= "\n";
95 }
96 } elseif ( strlen( $text ) > self::MAX_PAYLOAD_SIZE ) {
97 $text = substr( $text, 0, self::MAX_PAYLOAD_SIZE );
98 }
99
100 $sock = socket_create( $this->domain, SOCK_DGRAM, SOL_UDP );
101 if ( !$sock ) { // @todo should this throw an exception?
102 return;
103 }
104
105 socket_sendto( $sock, $text, strlen( $text ), 0, $this->host, $this->port );
106 socket_close( $sock );
107 }
108}
if(!defined('MW_SETUP_CALLBACK'))
Definition WebStart.php:81
A generic class to send a message over UDP.
const MAX_PAYLOAD_SIZE
static newFromString( $info)
__construct( $host, $port, $domain, $prefix=false)