socket.class.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. namespace Juju\Net;
  3. use Juju\Events;
  4. require_once(dirname(__DIR__).'/events.trait.php');
  5. class Socket {
  6. use Events;
  7. private $socket;
  8. private $clients;
  9. private $dsn;
  10. private $socket_type;
  11. private $open;
  12. const SERVER = 0;
  13. const CLIENT = 1;
  14. public static function from(string $dsnstring, bool $listen = false){
  15. return new Socket($dsnstring, $listen);
  16. }
  17. private function __construct(string $dsnstring, bool $listen = false){
  18. $parts = explode('://', $dsnstring);
  19. $dsnstring = $parts[1];
  20. $dsn = explode(';', $dsnstring);
  21. $dsn = array_reduce($dsn, function($dsn, $item){
  22. $item = explode('=', $item);
  23. $dsn[$item[0]] = $item[1];
  24. return $dsn;
  25. });
  26. $this->dsn = [
  27. 'protocol'=> $parts[0] ?? null,
  28. 'domain'=> strtoupper($dsn['domain']) ?? 'UNIX',
  29. 'type'=> strtoupper($dsn['type']) ?? 'STREAM',
  30. 'address'=> $dsn['address'] ?? '127.0.0.1',
  31. 'port'=> $dsn['port'] ?? null,
  32. 'max_connections'=> $dsn['max_connections'] ?? 5
  33. ];
  34. $this->socket_type = $listen ? static::SERVER : static::CLIENT;
  35. $this->open = false;
  36. if($listen){
  37. $this->clients = [];
  38. }
  39. }
  40. public function __get($name){
  41. switch($name){
  42. case 'socket':case 'dsn':case 'socket_type':case 'open':
  43. return $this->$name;
  44. break;
  45. case 'protocol':case 'domain':case 'type':case 'address':case 'port':case 'max_connections':
  46. return $this->dsn[$name];
  47. break;
  48. case 'error':
  49. return socket_strerror(socket_last_error());
  50. break;
  51. default:
  52. throw new \Exception("Property {$name} does not exist");
  53. }
  54. }
  55. public function __set($name, $value){
  56. throw new \Exception("Property {$name} does not exist or is read only");
  57. }
  58. private function throw_if($bool){
  59. if($bool === false){
  60. $this->throw();
  61. }
  62. }
  63. private function throw(){
  64. $error = new \Exception($this->error);
  65. if($this->fire('error', $this, $error) !== false){
  66. throw $error;
  67. }
  68. }
  69. public function open(){
  70. $this->socket = socket_create(constant("AF_{$this->dsn['protocol']}"), constant("SOCK_{$this->dsn['type']}"), is_null($this->dsn['protocol']) ? 0 : getprotobyname($this->dsn['protocol']));
  71. $this->throw_if($this->socket);
  72. if($this->socket_type == static::SERVER){
  73. $this->throw_if(socket_bind($this->socket, $this->address, $this->port));
  74. $this->fire('bind', $this);
  75. $this->throw_if(socket_listen($this->socket, $this->max_connections));
  76. $this->fire('listen', $this);
  77. }elseif($this->socket_type == static::CLIENT){
  78. $this->throw_if(socket_connect($this->socket, $this->address, $this->port));
  79. }else{
  80. throw new \Exception("Invalid socket type {$this->socket_type}");
  81. }
  82. $this->open = true;
  83. $this->fire('open', $this);
  84. return $this;
  85. }
  86. public function handle(){
  87. if(!$this->open){
  88. $this->open();
  89. }
  90. if($this->socket_type == static::SERVER){
  91. socket_set_nonblock($this->socket);
  92. do{
  93. $client = socket_accept($this->socket);
  94. if($client === false){
  95. $this->open = $this->error !== 'A non-blocking socket operation could not be completed immediately.';
  96. }elseif(!is_null($client)){
  97. socket_set_nonblock($client);
  98. $this->client = $client;
  99. $this->fire('connect', $this);
  100. while($this->open && $this->read() !== false){};
  101. socket_set_block($client);
  102. socket_close($client);
  103. $this->client = null;
  104. $this->fire('disconnect', $this);
  105. }
  106. }while($this->open);
  107. socket_set_block($this->socket);
  108. }elseif($this->socket_type == static::CLIENT){
  109. socket_set_nonblock($this->client);
  110. while($this->open && $this->read() !== false){};
  111. socket_set_block($this->client);
  112. }
  113. $this->close(true);
  114. return $this;
  115. }
  116. public function write(string $data, bool $binary = false){
  117. if(!$this->open){
  118. throw new \Exception("You can't write to a socket that isn't open");
  119. }
  120. $stop = $binary ? "\0" : "\n";
  121. if($this->fire('write', $this, $data) !== false){
  122. $this->throw_if(socket_write($this->socket, $data.$stop));
  123. }
  124. return $this;
  125. }
  126. public function read(int $length = 2048, bool $binary = false){
  127. if(!$this->open){
  128. return false;
  129. }
  130. $regex = $binary ? '/\0/' : '/[\n\r]/';
  131. $line = '';
  132. do{
  133. $data = socket_read($this->socket, $length, $binary ? PHP_BINARY_READ : PHP_NORMAL_READ);
  134. if($data === false){
  135. $this->open = false;
  136. }elseif(strlen($data) > 0 && $this->fire('data', $this, $data) !== false){
  137. $line .= $data;
  138. }
  139. $pos = preg_match($regex, $data, $matches, PREG_OFFSET_CAPTURE) == 1 ? $matches[0][1] : false;
  140. $this->fire('tick', $this);
  141. }while($pos !== strlen($data) - 1 && $this->open !== false);
  142. $line = substr($line, 0, -1);
  143. $this->fire('read', $this, $line);
  144. return $line;
  145. }
  146. public function close(bool $event = false){
  147. $this->drop();
  148. socket_close($this->socket);
  149. $this->open = false;
  150. $this->fire('close', $this);
  151. return $this;
  152. }
  153. public function drop($client){
  154. if(!is_null($client)){
  155. socket_close($client);
  156. }
  157. }
  158. }
  159. ?>