mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
Xthread: blocking read + non-blocking write mode.
Needed for switching the butler to use Crossthreads.
This commit is contained in:
parent
60388f975c
commit
d7727a77e0
3 changed files with 73 additions and 10 deletions
|
|
@ -1,3 +1,5 @@
|
||||||
|
#include <poll.h>
|
||||||
|
|
||||||
CrossThreadChannel::CrossThreadChannel (bool non_blocking)
|
CrossThreadChannel::CrossThreadChannel (bool non_blocking)
|
||||||
: receive_channel (0)
|
: receive_channel (0)
|
||||||
{
|
{
|
||||||
|
|
@ -61,8 +63,37 @@ CrossThreadChannel::deliver (char msg)
|
||||||
return ::write (fds[1], &msg, 1);
|
return ::write (fds[1], &msg, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
bool
|
||||||
CrossThreadChannel::receive (char& msg)
|
CrossThreadChannel::poll_for_request()
|
||||||
{
|
{
|
||||||
|
struct pollfd pfd[1];
|
||||||
|
pfd[0].fd = fds[0];
|
||||||
|
pfd[0].events = POLLIN|POLLERR|POLLHUP;
|
||||||
|
while(true) {
|
||||||
|
if (poll (pfd, 1, -1) < 0) {
|
||||||
|
if (errno == EINTR) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (pfd[0].revents & ~POLLIN) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pfd[0].revents & POLLIN) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
CrossThreadChannel::receive (char& msg, bool wait)
|
||||||
|
{
|
||||||
|
if (wait) {
|
||||||
|
if (!poll_for_request ()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
return ::read (fds[0], &msg, 1);
|
return ::read (fds[0], &msg, 1);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -152,11 +152,38 @@ CrossThreadChannel::deliver (char msg)
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
CrossThreadChannel::poll_for_request()
|
||||||
|
{
|
||||||
|
// windows before Vista has no poll
|
||||||
|
while(true) {
|
||||||
|
fd_set rfds;
|
||||||
|
FD_ZERO(&rfds);
|
||||||
|
FD_SET(receive_socket, &rfds);
|
||||||
|
if ((select(receive_socket+1, &rfds, NULL, NULL, NULL)) < 0) {
|
||||||
|
if (errno == EINTR) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if(FD_ISSET(receive_socket, &rfds)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
CrossThreadChannel::receive (char& msg)
|
CrossThreadChannel::receive (char& msg, bool wait)
|
||||||
{
|
{
|
||||||
gsize read = 0;
|
gsize read = 0;
|
||||||
GError *g_error = 0;
|
GError *g_error = 0;
|
||||||
|
|
||||||
|
if (wait) {
|
||||||
|
if (!poll_for_request ()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// fetch the message from the channel.
|
// fetch the message from the channel.
|
||||||
GIOStatus g_status = g_io_channel_read_chars (receive_channel, &msg, sizeof(msg), &read, &g_error);
|
GIOStatus g_status = g_io_channel_read_chars (receive_channel, &msg, sizeof(msg), &read, &g_error);
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class LIBPBD_API CrossThreadChannel {
|
class LIBPBD_API CrossThreadChannel {
|
||||||
public:
|
public:
|
||||||
/** if @a non_blocking is true, the channel will not cause blocking
|
/** if @a non_blocking is true, the channel will not cause blocking
|
||||||
* when used in an event loop based on poll/select or the glib main
|
* when used in an event loop based on poll/select or the glib main
|
||||||
* loop.
|
* loop.
|
||||||
|
|
@ -62,13 +62,16 @@ class LIBPBD_API CrossThreadChannel {
|
||||||
* because there is no way to know which byte value will be used
|
* because there is no way to know which byte value will be used
|
||||||
* for ::wakeup()
|
* for ::wakeup()
|
||||||
*/
|
*/
|
||||||
int deliver (char msg);
|
int deliver (char msg);
|
||||||
|
|
||||||
/** if using ::deliver() to wakeup the listening thread, then
|
/** if using ::deliver() to wakeup the listening thread, then
|
||||||
* the listener should call ::receive() to fetch the message
|
* the listener should call ::receive() to fetch the message
|
||||||
* type from the channel.
|
* type from the channel.
|
||||||
|
*
|
||||||
|
* wait = true only make sense for non_blocking channels,
|
||||||
|
* it polls for data to become available.
|
||||||
*/
|
*/
|
||||||
int receive (char& msg);
|
int receive (char& msg, bool wait = false);
|
||||||
|
|
||||||
/** empty the channel of all requests.
|
/** empty the channel of all requests.
|
||||||
* Typically this is done as soon as input
|
* Typically this is done as soon as input
|
||||||
|
|
@ -79,15 +82,17 @@ class LIBPBD_API CrossThreadChannel {
|
||||||
*/
|
*/
|
||||||
void drain ();
|
void drain ();
|
||||||
|
|
||||||
void set_receive_handler (sigc::slot<bool,Glib::IOCondition> s);
|
void set_receive_handler (sigc::slot<bool,Glib::IOCondition> s);
|
||||||
void attach (Glib::RefPtr<Glib::MainContext>);
|
void attach (Glib::RefPtr<Glib::MainContext>);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
friend gboolean cross_thread_channel_call_receive_slot (GIOChannel*, GIOCondition condition, void *data);
|
friend gboolean cross_thread_channel_call_receive_slot (GIOChannel*, GIOCondition condition, void *data);
|
||||||
|
|
||||||
GIOChannel* receive_channel;
|
GIOChannel* receive_channel;
|
||||||
GSource* receive_source;
|
GSource* receive_source;
|
||||||
sigc::slot<bool,Glib::IOCondition> receive_slot;
|
sigc::slot<bool,Glib::IOCondition> receive_slot;
|
||||||
|
|
||||||
|
bool poll_for_request();
|
||||||
|
|
||||||
#ifndef PLATFORM_WINDOWS
|
#ifndef PLATFORM_WINDOWS
|
||||||
int fds[2]; // current implementation uses a pipe/fifo
|
int fds[2]; // current implementation uses a pipe/fifo
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue