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
ce0972dc
Commit
ce0972dc
authored
Sep 01, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
context creates an inproc endpoint ('
inproc://log'
) to distribute 0MQ's log messages
parent
db73c763
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
2 deletions
+43
-2
ctx.cpp
src/ctx.cpp
+23
-2
ctx.hpp
src/ctx.hpp
+10
-0
object.cpp
src/object.cpp
+5
-0
object.hpp
src/object.hpp
+5
-0
No files found.
src/ctx.cpp
View file @
ce0972dc
...
...
@@ -20,8 +20,6 @@
#include <new>
#include <string.h>
#include "../include/zmq.h"
#include "ctx.hpp"
#include "socket_base.hpp"
#include "io_thread.hpp"
...
...
@@ -68,6 +66,12 @@ zmq::ctx_t::ctx_t (uint32_t io_threads_) :
empty_slots
.
push_back
(
i
);
slots
[
i
]
=
NULL
;
}
// Create the logging infrastructure.
log_socket
=
create_socket
(
ZMQ_PUB
);
zmq_assert
(
log_socket
);
int
rc
=
log_socket
->
bind
(
"inproc://log"
);
zmq_assert
(
rc
==
0
);
}
zmq
::
ctx_t
::~
ctx_t
()
...
...
@@ -104,6 +108,13 @@ int zmq::ctx_t::terminate ()
for
(
sockets_t
::
size_type
i
=
0
;
i
!=
sockets
.
size
();
i
++
)
sockets
[
i
]
->
stop
();
// Close the logging infrastructure.
log_sync
.
lock
();
int
rc
=
log_socket
->
close
();
zmq_assert
(
rc
==
0
);
log_socket
=
NULL
;
log_sync
.
unlock
();
// Find out whether there are any open sockets to care about.
// If so, sleep till they are closed. Note that we can use
// no_sockets_notify safely out of the critical section as once set
...
...
@@ -287,6 +298,16 @@ zmq::socket_base_t *zmq::ctx_t::find_endpoint (const char *addr_)
return
endpoint
;
}
void
zmq
::
ctx_t
::
log
(
zmq_msg_t
*
msg_
)
{
// At this point we migrate the log socket to the current thread.
// We rely on mutex for executing the memory barrier.
log_sync
.
lock
();
if
(
log_socket
)
log_socket
->
send
(
msg_
,
0
);
log_sync
.
unlock
();
}
void
zmq
::
ctx_t
::
dezombify
()
{
// Try to dezombify each zombie in the list. Note that caller is
...
...
src/ctx.hpp
View file @
ce0972dc
...
...
@@ -24,6 +24,8 @@
#include <vector>
#include <string>
#include "../include/zmq.h"
#include "signaler.hpp"
#include "semaphore.hpp"
#include "ypipe.hpp"
...
...
@@ -74,6 +76,9 @@ namespace zmq
void
unregister_endpoints
(
class
socket_base_t
*
socket_
);
class
socket_base_t
*
find_endpoint
(
const
char
*
addr_
);
// Logging.
void
log
(
zmq_msg_t
*
msg_
);
private
:
~
ctx_t
();
...
...
@@ -125,6 +130,11 @@ namespace zmq
// Synchronisation of access to the list of inproc endpoints.
mutex_t
endpoints_sync
;
// PUB socket for logging. The socket is shared among all the threads,
// thus it is synchronised by a mutex.
class
socket_base_t
*
log_socket
;
mutex_t
log_sync
;
ctx_t
(
const
ctx_t
&
);
void
operator
=
(
const
ctx_t
&
);
};
...
...
src/object.cpp
View file @
ce0972dc
...
...
@@ -137,6 +137,11 @@ zmq::socket_base_t *zmq::object_t::find_endpoint (const char *addr_)
return
ctx
->
find_endpoint
(
addr_
);
}
void
zmq
::
object_t
::
log
(
zmq_msg_t
*
msg_
)
{
ctx
->
log
(
msg_
);
}
zmq
::
io_thread_t
*
zmq
::
object_t
::
choose_io_thread
(
uint64_t
taskset_
)
{
return
ctx
->
choose_io_thread
(
taskset_
);
...
...
src/object.hpp
View file @
ce0972dc
...
...
@@ -20,6 +20,8 @@
#ifndef __ZMQ_OBJECT_HPP_INCLUDED__
#define __ZMQ_OBJECT_HPP_INCLUDED__
#include "../include/zmq.h"
#include "stdint.hpp"
#include "blob.hpp"
...
...
@@ -48,6 +50,9 @@ namespace zmq
void
unregister_endpoints
(
class
socket_base_t
*
socket_
);
class
socket_base_t
*
find_endpoint
(
const
char
*
addr_
);
// Logs an message.
void
log
(
zmq_msg_t
*
msg_
);
// Chooses least loaded I/O thread.
class
io_thread_t
*
choose_io_thread
(
uint64_t
taskset_
);
...
...
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