Exemplo n.º 1
0
 /**
  * Returns the total number of bytes read by the stream.
  *
  * @access public
  * @return integer
  */
 public function get_bytes_read()
 {
     return $this->_stream->get_bytes_read();
 }
Exemplo n.º 2
0
 public function handleAcceptEvent($sock, $flag)
 {
     // Accept the incoming connection and set that as non-blocking.
     $connection = socket_accept($sock);
     $streamName = NULL;
     $stream = new IOStream($connection, $this->_eventBase, $streamName, array($this, 'handleStreamClose'));
     $this->_streams[$streamName] = $stream;
     self::$_logger->info("Accepted a new connection {$streamName}.");
     // Handle the stream
     $stream->recv(4, array($this, 'printByte4'));
 }
Exemplo n.º 3
0
 /**
  * Start listening for new connections
  * 
  * @param   string  $address
  * @param   array   $context
  * @return  this
  */
 public function listen($address, array $context = array())
 {
     $address = is_numeric($address) ? "tcp://0.0.0.0:{$address}" : $address;
     $context = stream_context_create($context);
     $this->stream = @stream_socket_server($address, $errno, $errstr, STREAM_SERVER_BIND | STREAM_SERVER_LISTEN, $context);
     $server = $this;
     if (!is_resource($this->stream) || $errstr) {
         $this->emit('error', array($errstr, $this));
         return $this;
     }
     $this->emit('listening', array($this));
     $this->iloop->add($this->stream, IOLoop::READ, function ($master, $ioloop) use($server) {
         $client = stream_socket_accept($master, 0);
         $client = new IOStream($ioloop, $client, IOStream::DUPLEX);
         $client->reader = 'fgets';
         $client->writer = 'stream_socket_sendto';
         $client->on('close', function ($client) {
             stream_socket_shutdown($client->stream, STREAM_SHUT_RDWR);
         });
         $server->emit('connection', array($client));
     });
     return $this;
 }