glibmm 2.66.5
thread/thread.cc

A glibmm thread example.

#include <iostream>
#include <memory>
#include <mutex>
#include <queue>
#include <thread>
#if defined(_MSC_VER) && (_MSC_VER < 1900)
/* For using noexcept on Visual Studio 2013 */
#include <glibmmconfig.h>
#endif
#include <glibmm/init.h>
#include <glibmm/random.h>
#include <glibmm/timer.h>
namespace
{
class MessageQueue
{
public:
MessageQueue();
~MessageQueue();
void producer();
void consumer();
private:
std::mutex mutex_;
};
MessageQueue::MessageQueue()
{
}
MessageQueue::~MessageQueue()
{
}
void
MessageQueue::producer()
{
Glib::Rand rand(1234);
for (auto i = 0; i < 200; ++i)
{
{
cond_pop_.wait(lock, [this]() -> bool { return queue_.size() < 64; });
queue_.push(i);
std::cout << '*';
// We unlock before notifying, because that is what the documentation suggests:
// http://en.cppreference.com/w/cpp/thread/condition_variable
lock.unlock();
cond_push_.notify_one();
}
if (rand.get_bool())
continue;
Glib::usleep(rand.get_int_range(0, 100000));
}
}
void
MessageQueue::consumer()
{
Glib::Rand rand(4567);
for (;;)
{
{
cond_push_.wait(lock, [this]() -> bool { return !queue_.empty(); });
const int i = queue_.front();
queue_.pop();
std::cout << "\x08 \x08";
// We unlock before notifying, because that is what the documentation suggests:
// http://en.cppreference.com/w/cpp/thread/condition_variable
lock.unlock();
cond_pop_.notify_one();
if (i >= 199)
break;
}
if (rand.get_bool())
continue;
Glib::usleep(rand.get_int_range(10000, 200000));
}
}
}
int
main(int, char**)
{
MessageQueue queue;
// TODO: Use std::make_unique() when we use C++14:
const auto producer =
std::unique_ptr<std::thread>(new std::thread(&MessageQueue::producer, &queue));
const auto consumer =
std::unique_ptr<std::thread>(new std::thread(&MessageQueue::consumer, &queue));
producer->join();
consumer->join();
return 0;
}
void lock(_L1 &__l1, _L2 &__l2, _L3 &... __l3)
basic_ostream< _CharT, _Traits > & endl(basic_ostream< _CharT, _Traits > &__os)
ostream cout
__ostream_type & flush()
Definition: random.h:38
gint32 get_int_range(gint32 begin, gint32 end)
bool get_bool()
void usleep(unsigned long microseconds)
void init()
Initialize glibmm.