mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-15 10:18:01 +08:00
Merge pull request #12 from rodgert/master
resolve #1296 Remove of ZMQ_IDENTITY_FD socket option
This commit is contained in:
commit
20e3a9f535
@ -326,7 +326,6 @@ test_apps = \
|
|||||||
test_connect_rid \
|
test_connect_rid \
|
||||||
test_bind_src_address \
|
test_bind_src_address \
|
||||||
test_metadata \
|
test_metadata \
|
||||||
test_id2fd \
|
|
||||||
test_capabilities \
|
test_capabilities \
|
||||||
test_xpub_nodrop
|
test_xpub_nodrop
|
||||||
|
|
||||||
|
@ -676,23 +676,6 @@ Option value unit:: N/A
|
|||||||
Default value:: not set
|
Default value:: not set
|
||||||
Applicable socket types:: all, when using TCP transport
|
Applicable socket types:: all, when using TCP transport
|
||||||
|
|
||||||
ZMQ_IDENTITY_FD: Retrieve FD associated with igven identity
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
The 'ZMQ_IDENTITY_FD' option shall retrieve the FD associated with given identity.
|
|
||||||
call _zmq_getsockopt()_ with _option_value_ / _option_len_ pointing to memory
|
|
||||||
holding the identity string. On return the start of _option_value_ buffer will be
|
|
||||||
filled with file descriptor of the pipe with given identity if found. If the identity
|
|
||||||
is not found ENOTSOCK is returned as _zmq_getsockopt()_ result. When the pipe is not
|
|
||||||
using FD as lower transport you might get -1 as FD. NB: _option_value_ must be always
|
|
||||||
big enough to hold sizeof(fd_t) bytes no matter how small the identity length is.
|
|
||||||
|
|
||||||
[horizontal]
|
|
||||||
Option value type:: character string/fd_t
|
|
||||||
Option value unit:: N/A
|
|
||||||
Default value:: not set
|
|
||||||
Applicable socket types:: ROUTER
|
|
||||||
|
|
||||||
|
|
||||||
RETURN VALUE
|
RETURN VALUE
|
||||||
------------
|
------------
|
||||||
|
@ -301,7 +301,6 @@ ZMQ_EXPORT const char *zmq_msg_gets (zmq_msg_t *msg, const char *property);
|
|||||||
#define ZMQ_GSSAPI_SERVICE_PRINCIPAL 64
|
#define ZMQ_GSSAPI_SERVICE_PRINCIPAL 64
|
||||||
#define ZMQ_GSSAPI_PLAINTEXT 65
|
#define ZMQ_GSSAPI_PLAINTEXT 65
|
||||||
#define ZMQ_HANDSHAKE_IVL 66
|
#define ZMQ_HANDSHAKE_IVL 66
|
||||||
#define ZMQ_IDENTITY_FD 67
|
|
||||||
#define ZMQ_SOCKS_PROXY 68
|
#define ZMQ_SOCKS_PROXY 68
|
||||||
#define ZMQ_XPUB_NODROP 69
|
#define ZMQ_XPUB_NODROP 69
|
||||||
|
|
||||||
|
@ -20,8 +20,6 @@
|
|||||||
#ifndef __ZMQ_I_ENGINE_HPP_INCLUDED__
|
#ifndef __ZMQ_I_ENGINE_HPP_INCLUDED__
|
||||||
#define __ZMQ_I_ENGINE_HPP_INCLUDED__
|
#define __ZMQ_I_ENGINE_HPP_INCLUDED__
|
||||||
|
|
||||||
#include "fd.hpp"
|
|
||||||
|
|
||||||
namespace zmq
|
namespace zmq
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -50,9 +48,6 @@ namespace zmq
|
|||||||
virtual void restart_output () = 0;
|
virtual void restart_output () = 0;
|
||||||
|
|
||||||
virtual void zap_msg_available () = 0;
|
virtual void zap_msg_available () = 0;
|
||||||
|
|
||||||
// provide a way to link from engine to file descriptor
|
|
||||||
virtual fd_t get_assoc_fd () { return retired_fd;};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,6 @@ int zmq::pipepair (class object_t *parents_ [2], class pipe_t* pipes_ [2],
|
|||||||
zmq::pipe_t::pipe_t (object_t *parent_, upipe_t *inpipe_, upipe_t *outpipe_,
|
zmq::pipe_t::pipe_t (object_t *parent_, upipe_t *inpipe_, upipe_t *outpipe_,
|
||||||
int inhwm_, int outhwm_, bool conflate_) :
|
int inhwm_, int outhwm_, bool conflate_) :
|
||||||
object_t (parent_),
|
object_t (parent_),
|
||||||
assoc_fd (retired_fd),
|
|
||||||
inpipe (inpipe_),
|
inpipe (inpipe_),
|
||||||
outpipe (outpipe_),
|
outpipe (outpipe_),
|
||||||
in_active (true),
|
in_active (true),
|
||||||
|
@ -27,7 +27,6 @@
|
|||||||
#include "stdint.hpp"
|
#include "stdint.hpp"
|
||||||
#include "array.hpp"
|
#include "array.hpp"
|
||||||
#include "blob.hpp"
|
#include "blob.hpp"
|
||||||
#include "fd.hpp"
|
|
||||||
|
|
||||||
namespace zmq
|
namespace zmq
|
||||||
{
|
{
|
||||||
@ -120,8 +119,6 @@ namespace zmq
|
|||||||
|
|
||||||
// check HWM
|
// check HWM
|
||||||
bool check_hwm () const;
|
bool check_hwm () const;
|
||||||
// provide a way to link pipe to engine fd. Set on session initialization
|
|
||||||
fd_t assoc_fd; //=retired_fd
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
// Type of the underlying lock-free pipe.
|
// Type of the underlying lock-free pipe.
|
||||||
|
@ -133,33 +133,6 @@ int zmq::router_t::xsetsockopt (int option_, const void *optval_,
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int zmq::router_t::xgetsockopt (int option_, const void *optval_,
|
|
||||||
size_t *optvallen_)
|
|
||||||
{
|
|
||||||
switch (option_) {
|
|
||||||
case ZMQ_IDENTITY_FD:
|
|
||||||
if (optval_==NULL && optvallen_) {
|
|
||||||
*optvallen_=sizeof(fd_t);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (optval_ && optvallen_ && *optvallen_) {
|
|
||||||
blob_t identity= blob_t((unsigned char*)optval_,*optvallen_);
|
|
||||||
outpipes_t::iterator it = outpipes.find (identity);
|
|
||||||
if (it == outpipes.end() ){
|
|
||||||
return ENOTSOCK;
|
|
||||||
}
|
|
||||||
*((fd_t*)optval_)=it->second.pipe->assoc_fd;
|
|
||||||
*optvallen_=sizeof(fd_t);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
errno = EINVAL;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void zmq::router_t::xpipe_terminated (pipe_t *pipe_)
|
void zmq::router_t::xpipe_terminated (pipe_t *pipe_)
|
||||||
{
|
{
|
||||||
|
@ -47,7 +47,6 @@ namespace zmq
|
|||||||
// Overrides of functions from socket_base_t.
|
// Overrides of functions from socket_base_t.
|
||||||
void xattach_pipe (zmq::pipe_t *pipe_, bool subscribe_to_all_);
|
void xattach_pipe (zmq::pipe_t *pipe_, bool subscribe_to_all_);
|
||||||
int xsetsockopt (int option_, const void *optval_, size_t optvallen_);
|
int xsetsockopt (int option_, const void *optval_, size_t optvallen_);
|
||||||
int xgetsockopt (int option_, const void *optval_, size_t *optvallen_);
|
|
||||||
int xsend (zmq::msg_t *msg_);
|
int xsend (zmq::msg_t *msg_);
|
||||||
int xrecv (zmq::msg_t *msg_);
|
int xrecv (zmq::msg_t *msg_);
|
||||||
bool xhas_in ();
|
bool xhas_in ();
|
||||||
|
@ -367,9 +367,7 @@ void zmq::session_base_t::process_attach (i_engine *engine_)
|
|||||||
// Remember the local end of the pipe.
|
// Remember the local end of the pipe.
|
||||||
zmq_assert (!pipe);
|
zmq_assert (!pipe);
|
||||||
pipe = pipes [0];
|
pipe = pipes [0];
|
||||||
// Store engine assoc_fd for linking pipe to fd
|
|
||||||
pipe->assoc_fd = engine_->get_assoc_fd ();
|
|
||||||
pipes [1]->assoc_fd = pipe->assoc_fd;
|
|
||||||
// Ask socket to plug into the remote end of the pipe.
|
// Ask socket to plug into the remote end of the pipe.
|
||||||
send_bind (socket, pipes [1]);
|
send_bind (socket, pipes [1]);
|
||||||
}
|
}
|
||||||
|
@ -289,11 +289,6 @@ int zmq::socket_base_t::getsockopt (int option_, void *optval_,
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// First, check whether specific socket type overloads the option.
|
|
||||||
int rc = xgetsockopt (option_, optval_, optvallen_);
|
|
||||||
if (rc == 0 || errno != EINVAL)
|
|
||||||
return rc;
|
|
||||||
|
|
||||||
if (option_ == ZMQ_RCVMORE) {
|
if (option_ == ZMQ_RCVMORE) {
|
||||||
if (*optvallen_ < sizeof (int)) {
|
if (*optvallen_ < sizeof (int)) {
|
||||||
errno = EINVAL;
|
errno = EINVAL;
|
||||||
@ -1066,11 +1061,6 @@ int zmq::socket_base_t::xsetsockopt (int, const void *, size_t)
|
|||||||
errno = EINVAL;
|
errno = EINVAL;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
int zmq::socket_base_t::xgetsockopt (int, const void *, size_t*)
|
|
||||||
{
|
|
||||||
errno = EINVAL;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool zmq::socket_base_t::xhas_out ()
|
bool zmq::socket_base_t::xhas_out ()
|
||||||
{
|
{
|
||||||
|
@ -133,13 +133,10 @@ namespace zmq
|
|||||||
|
|
||||||
// The default implementation assumes there are no specific socket
|
// The default implementation assumes there are no specific socket
|
||||||
// options for the particular socket type. If not so, override this
|
// options for the particular socket type. If not so, override this
|
||||||
// methods.
|
// method.
|
||||||
virtual int xsetsockopt (int option_, const void *optval_,
|
virtual int xsetsockopt (int option_, const void *optval_,
|
||||||
size_t optvallen_);
|
size_t optvallen_);
|
||||||
|
|
||||||
virtual int xgetsockopt (int option_, const void *optval_,
|
|
||||||
size_t *optvallen_);
|
|
||||||
|
|
||||||
// The default implementation assumes that send is not supported.
|
// The default implementation assumes that send is not supported.
|
||||||
virtual bool xhas_out ();
|
virtual bool xhas_out ();
|
||||||
virtual int xsend (zmq::msg_t *msg_);
|
virtual int xsend (zmq::msg_t *msg_);
|
||||||
|
@ -76,8 +76,6 @@ namespace zmq
|
|||||||
void out_event ();
|
void out_event ();
|
||||||
void timer_event (int id_);
|
void timer_event (int id_);
|
||||||
|
|
||||||
// export s via i_engine so it is possible to link a pipe to fd
|
|
||||||
fd_t get_assoc_fd (){ return s; };
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
// Unplug the engine from the session.
|
// Unplug the engine from the session.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user