Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
dcb98369
Commit
dcb98369
authored
Mar 13, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zmq_queue implementation added
parent
22db38bf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
109 additions
and
5 deletions
+109
-5
zmq_queue.cpp
devices/zmq_queue/zmq_queue.cpp
+109
-5
No files found.
devices/zmq_queue/zmq_queue.cpp
View file @
dcb98369
...
...
@@ -20,6 +20,113 @@
#include "../../include/zmq.hpp"
#include "../../foreign/xmlParser/xmlParser.cpp"
class
queue
{
public
:
queue
(
zmq
::
socket_t
&
reply
,
zmq
::
socket_t
&
request
)
:
xrep
(
reply
),
xreq
(
request
)
{
items
[
0
].
socket
=
reply
;
items
[
0
].
fd
=
0
;
items
[
0
].
events
=
ZMQ_POLLIN
;
items
[
0
].
revents
=
0
;
items
[
1
].
socket
=
request
;
items
[
1
].
fd
=
0
;
items
[
1
].
events
=
ZMQ_POLLIN
;
items
[
1
].
revents
=
0
;
m_next_request_method
=
&
queue
::
get_request
;
m_next_response_method
=
&
queue
::
get_response
;
}
void
run
()
{
while
(
true
)
{
int
rc
=
zmq
::
poll
(
&
items
[
0
],
2
,
-
1
);
if
(
rc
<
0
)
break
;
next_request
();
next_response
();
}
}
private
:
void
next_request
()
{
(
this
->*
m_next_request_method
)
();
}
void
next_response
()
{
(
this
->*
m_next_response_method
)
();
}
void
get_request
()
{
if
(
items
[
0
].
revents
&
ZMQ_POLLIN
)
{
int
rc
=
xrep
.
recv
(
&
request_msg
,
ZMQ_NOBLOCK
);
if
(
!
rc
)
return
;
items
[
0
].
events
&=
~
ZMQ_POLLIN
;
items
[
1
].
events
|=
ZMQ_POLLOUT
;
m_next_request_method
=
&
queue
::
send_request
;
}
}
void
send_request
()
{
if
(
items
[
1
].
revents
&
ZMQ_POLLOUT
)
{
int
rc
=
xreq
.
send
(
request_msg
,
ZMQ_NOBLOCK
);
if
(
!
rc
)
return
;
items
[
1
].
events
&=
~
ZMQ_POLLOUT
;
items
[
0
].
events
|=
ZMQ_POLLIN
;
m_next_request_method
=
&
queue
::
get_request
;
}
}
void
get_response
()
{
if
(
items
[
1
].
revents
&
ZMQ_POLLIN
)
{
int
rc
=
xreq
.
recv
(
&
response_msg
,
ZMQ_NOBLOCK
);
if
(
!
rc
)
return
;
items
[
1
].
events
&=
~
ZMQ_POLLIN
;
items
[
0
].
events
|=
ZMQ_POLLOUT
;
m_next_response_method
=
&
queue
::
send_response
;
}
}
void
send_response
()
{
if
(
items
[
0
].
revents
&
ZMQ_POLLOUT
)
{
int
rc
=
xrep
.
send
(
response_msg
,
ZMQ_NOBLOCK
);
if
(
!
rc
)
return
;
items
[
0
].
events
&=
~
ZMQ_POLLOUT
;
items
[
1
].
events
|=
ZMQ_POLLIN
;
m_next_response_method
=
&
queue
::
get_response
;
}
}
zmq
::
socket_t
&
xrep
;
zmq
::
socket_t
&
xreq
;
zmq_pollitem_t
items
[
2
];
zmq
::
message_t
request_msg
;
zmq
::
message_t
response_msg
;
typedef
void
(
queue
::*
next_method
)
();
next_method
m_next_request_method
;
next_method
m_next_response_method
;
queue
(
queue
const
&
);
void
operator
=
(
queue
const
&
);
};
int
main
(
int
argc
,
char
*
argv
[])
{
if
(
argc
!=
2
)
{
...
...
@@ -112,11 +219,8 @@ int main (int argc, char *argv [])
n
++
;
}
zmq
::
message_t
msg
;
while
(
true
)
{
in_socket
.
recv
(
&
msg
);
out_socket
.
send
(
msg
);
}
queue
q
(
in_socket
,
out_socket
);
q
.
run
();
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment