1
0

socket.class.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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. if(is_null($this->port)){
  74. if(file_exists($this->address)){
  75. chmod($this->address, 0702);
  76. }elseif(function_exists('posix_mkfifo')){
  77. posix_mkfifo($this->address, 0702);
  78. }
  79. $res = socket_bind($this->socket, $this->address);
  80. if(!file_exists($this->address)){
  81. throw new \Exception('Unable to create socket file');
  82. }
  83. }else{
  84. $res = socket_bind($this->socket, $this->address, $this->port);
  85. }
  86. $this->throw_if($res);
  87. $this->fire('bind', $this);
  88. $this->throw_if(socket_listen($this->socket, $this->max_connections));
  89. $this->fire('listen', $this);
  90. }elseif($this->socket_type == static::CLIENT){
  91. if(is_null($this->port)){
  92. $res = socket_connect($this->socket, $this->address);
  93. }else{
  94. $res = socket_connect($this->socket, $this->address, $this->port);
  95. }
  96. $this->throw_if($res);
  97. }else{
  98. throw new \Exception("Invalid socket type {$this->socket_type}");
  99. }
  100. $this->open = true;
  101. $this->fire('open', $this);
  102. return $this;
  103. }
  104. public function handle(int $length = 2048, bool $binary = false){
  105. if(!$this->open){
  106. $this->open();
  107. }
  108. socket_set_nonblock($this->socket);
  109. if($this->socket_type == static::SERVER){
  110. $regex = $binary ? '/\0/' : '/[\n\r]/';
  111. $type = $binary ? PHP_BINARY_READ : PHP_NORMAL_READ;
  112. do{
  113. $socket = socket_accept($this->socket);
  114. if($socket === false){
  115. usleep(100);
  116. }elseif($socket > 0){
  117. socket_set_nonblock($socket);
  118. $client = [$socket, ''];
  119. $this->clients[] = $client;
  120. $this->fire('connect', $this, $client);
  121. }else{
  122. $error = trim(socket_strerror($socket));
  123. if($error !== 'A non-blocking socket operation could not be completed immediately.'){
  124. $this->fire('error', $this, new \Exception($error));
  125. $this->open = false;
  126. }
  127. }
  128. $this->fire('tick', $this);
  129. if($this->open){
  130. foreach($this->clients as $client){
  131. $data = socket_read($client[0], $length, $type);
  132. if($data === false){
  133. $this->drop($client);
  134. }else{
  135. if(strlen($data) > 0 && $this->fire('data', $this, $data, $client) !== false){
  136. $client[1] .= $data;
  137. }
  138. $pos = preg_match($regex, $data, $matches, PREG_OFFSET_CAPTURE) == 1 ? $matches[0][1] : false;
  139. if($pos === strlen($data) - 1){
  140. $this->fire('read', $this, substr($client[1], 0, -1), $client);
  141. $client[1] = '';
  142. }
  143. }
  144. $this->fire('tick', $this);
  145. if($this->open === false){
  146. break;
  147. }
  148. }
  149. }
  150. }while($this->open);
  151. }elseif($this->socket_type == static::CLIENT){
  152. while($this->open && $this->read($length, $binary) !== false){};
  153. }
  154. socket_set_block($this->socket);
  155. $this->close(true);
  156. return $this;
  157. }
  158. public function write(string $data, bool $binary = false){
  159. if(!$this->open){
  160. throw new \Exception("You can't write to a socket that isn't open");
  161. }
  162. $stop = $binary ? "\0" : "\n";
  163. if($this->fire('write', $this, $data) !== false){
  164. $this->throw_if(socket_write($this->socket, $data.$stop));
  165. }
  166. return $this;
  167. }
  168. public function read(int $length = 2048, bool $binary = false){
  169. if(!$this->open){
  170. return false;
  171. }
  172. $regex = $binary ? '/\0/' : '/[\n\r]/';
  173. $type = $binary ? PHP_BINARY_READ : PHP_NORMAL_READ;
  174. $line = '';
  175. do{
  176. $data = socket_read($this->socket, $length, $type);
  177. if($data === false){
  178. $this->open = false;
  179. }elseif(strlen($data) > 0 && $this->fire('data', $this, $data) !== false){
  180. $line .= $data;
  181. }
  182. $pos = preg_match($regex, $data, $matches, PREG_OFFSET_CAPTURE) == 1 ? $matches[0][1] : false;
  183. }while($pos !== strlen($data) - 1 && $this->open !== false);
  184. $line = substr($line, 0, -1);
  185. $this->fire('read', $this, $line);
  186. return $line;
  187. }
  188. public function client_write(array $client, $data, bool $binary = false){
  189. if(!$this->open){
  190. throw new \Exception("You can't write to a socket that isn't open");
  191. }
  192. $stop = $binary ? "\0" : "\n";
  193. if($this->fire('write', $this, $data) !== false){
  194. $this->throw_if(socket_write($client[0], $data.$stop));
  195. }
  196. return $this;
  197. }
  198. public function close(bool $event = false){
  199. foreach($this->clients as $client){
  200. $this->drop($client);
  201. }
  202. socket_close($this->socket);
  203. $this->open = false;
  204. $this->fire('close', $this);
  205. return $this;
  206. }
  207. public function drop($client){
  208. socket_close($client[0]);
  209. if(in_array($client, $this->clients)){
  210. array_splice($this->clients, array_search($client, $this->clients), 1);
  211. $this->fire('disconnect', $this, $client);
  212. }
  213. }
  214. }
  215. ?>