1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127:
<?php
namespace SAREhub\Commons\Zmq\RequestReply;
use SAREhub\Commons\Misc\Dsn;
/**
* Sending request to ZMQ socket
*/
class RequestSender
{
const WAIT = true;
const DONT_WAIT = false;
/**
* @var Dsn
*/
protected $dsn = null;
/**
* @var \ZMQContext
*/
protected $context;
/**
* @var \ZMQSocket
*/
protected $socket = null;
public function __construct(\ZMQContext $context)
{
$this->context = $context;
}
public static function inContext(\ZMQContext $context)
{
return new self($context);
}
/**
* @param Dsn $dsn
* @return $this
*/
public function connect(Dsn $dsn)
{
if ($this->isConnected()) {
throw new \LogicException("Can't connect when socket is connected");
}
$this->dsn = $dsn;
$this->getSocket()->connect((string)$dsn);
return $this;
}
/**
* @return $this
*/
public function disconnect()
{
if ($this->isConnected()) {
$this->getSocket()->disconnect($this->dsn);
$this->dsn = null;
}
return $this;
}
/**
* Send request via ZMQ socket.
* @param string $request Request payload.
* @param bool $wait If true that operation would be block.
* @return $this
* @throws \ZMQSocketException
*/
public function sendRequest($request, $wait = self::WAIT)
{
$this->getSocket()->send($request, ($wait) ? 0 : \ZMQ::MODE_DONTWAIT);
return $this;
}
/**
* Receive reply from ZMQ socket.
* @param bool $wait If true that operation would be block.
* @return bool|string
* @throws \ZMQSocketException
*/
public function receiveReply($wait = self::WAIT)
{
return $this->getSocket()->recv(($wait) ? 0 : \ZMQ::MODE_DONTWAIT);
}
/**
* @return bool
*/
public function isConnected()
{
return $this->getDsn() !== null;
}
/**
* @return Dsn
*/
public function getDsn()
{
return $this->dsn;
}
/**
* @return \ZMQSocket
*/
public function getSocket()
{
if ($this->socket === null) {
$this->socket = $this->context->getSocket(\ZMQ::SOCKET_REQ, null, null);
}
return $this->socket;
}
/**
* @return \ZMQContext
*/
public function getContext()
{
return $this->context;
}
}