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: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 
<?php

namespace SAREhub\Commons\Zmq\RequestReply;

use SAREhub\Commons\Misc\Dsn;

/**
 * Receiving request from ZMQ and sending reply for that.
 */
class RequestReceiver
{

    const WAIT = true;
    const DONT_WAIT = false;

    /**
     * @var Dsn
     */
    protected $dsn = null;

    /**
     * @var \ZMQContext
     */
    protected $context;

    /**
     * @var \ZMQSocket
     */
    protected $socket = null;

    /**
     * @param \ZMQContext $context
     */
    public function __construct(\ZMQContext $context)
    {
        $this->context = $context;
    }

    /**
     * @param \ZMQContext $context
     * @return RequestReceiver
     */
    public static function inContext(\ZMQContext $context)
    {
        return new self($context);
    }

    /**
     * Binds socket to $dsn
     * @param Dsn $dsn
     * @return $this
     * @throws \LogicException When binding second time.
     */
    public function bind(Dsn $dsn)
    {
        if ($this->isBinded()) {
            throw new \LogicException("Can't bind to binded socket");
        }
        $this->dsn = $dsn;
        $this->getSocket()->bind((string)$dsn);
        return $this;
    }

    /**
     * Unbinds socket from current binded dsn
     * @return $this
     */
    public function unbind()
    {
        if ($this->isBinded()) {
            $this->getSocket()->unbind($this->dsn);
            $this->dsn = null;
        }

        return $this;
    }

    /**
     * Getting next request from socket.
     * @param bool $wait If true call will waits for next request.
     * @return string
     * @throws \ZMQSocketException
     */
    public function receiveRequest($wait = self::WAIT)
    {
        return $this->getSocket()->recv(($wait ? 0 : \ZMQ::MODE_DONTWAIT));
    }

    /**
     * Sending reply to ZMQ socket.
     * @param string $reply
     * @param bool $wait If true call will be waits for reply send done.
     * @return $this
     * @throws \ZMQSocketException
     */
    public function sendReply($reply, $wait = self::WAIT)
    {
        $this->getSocket()->send($reply, ($wait ? 0 : \ZMQ::MODE_DONTWAIT));
        return $this;
    }

    /**
     * @return bool
     */
    public function isBinded()
    {
        return $this->getDsn() !== null;
    }

    /**
     * @return Dsn Current binded dsn
     */
    public function getDsn()
    {
        return $this->dsn;
    }

    /**
     * @return \ZMQSocket
     */
    public function getSocket()
    {
        if ($this->socket === null) {
            $this->socket = $this->context->getSocket(\ZMQ::SOCKET_REP, null, null);
        }

        return $this->socket;
    }

    /**
     * @return \ZMQContext
     */
    public function getContext()
    {
        return $this->context;
    }

}