fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / worker.cc
index aea1c6f8e35597a191cf374c617d928376f8dda2..f8a5e44aee06294c0c354e5d85bf110715a05270 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2012 Paul Davis
+  Copyright (C) 2012-2016 Paul Davis
   Author: David Robillard
 
   This program is free software; you can redistribute it and/or modify
 
 namespace ARDOUR {
 
-Worker::Worker(Workee* workee, uint32_t ring_size)
+Worker::Worker(Workee* workee, uint32_t ring_size, bool threaded)
        : _workee(workee)
-       , _requests(new RingBuffer<uint8_t>(ring_size))
+       , _requests(threaded ? new RingBuffer<uint8_t>(ring_size) : NULL)
        , _responses(new RingBuffer<uint8_t>(ring_size))
        , _response((uint8_t*)malloc(ring_size))
-       , _sem(0)
+       , _sem("worker_semaphore", 0)
+       , _thread(NULL)
        , _exit(false)
-       , _thread (Glib::Threads::Thread::create(sigc::mem_fun(*this, &Worker::run)))
-{}
+       , _synchronous(!threaded)
+{
+       if (threaded) {
+               _thread = Glib::Threads::Thread::create(
+                       sigc::mem_fun(*this, &Worker::run));
+       }
+}
 
 Worker::~Worker()
 {
        _exit = true;
-       _sem.post();
-       _thread->join();
+       _sem.signal();
+       if (_thread) {
+               _thread->join();
+       }
 }
 
 bool
 Worker::schedule(uint32_t size, const void* data)
 {
+       if (_synchronous || !_requests) {
+               _workee->work(*this, size, data);
+               return true;
+       }
        if (_requests->write_space() < size + sizeof(size)) {
                return false;
        }
@@ -56,14 +68,14 @@ Worker::schedule(uint32_t size, const void* data)
        if (_requests->write((const uint8_t*)data, size) != size) {
                return false;
        }
-       _sem.post();
+       _sem.signal();
        return true;
 }
 
 bool
 Worker::respond(uint32_t size, const void* data)
 {
-       if (_requests->write_space() < size + sizeof(size)) {
+       if (_responses->write_space() < size + sizeof(size)) {
                return false;
        }
        if (_responses->write((const uint8_t*)&size, sizeof(size)) != sizeof(size)) {
@@ -124,7 +136,7 @@ Worker::run()
        while (true) {
                _sem.wait();
                if (_exit) {
-                       if (buf) free(buf);
+                       free(buf);
                        return;
                }
 
@@ -163,7 +175,7 @@ Worker::run()
                        continue;  // TODO: This is probably fatal
                }
 
-               _workee->work(size, buf);
+               _workee->work(*this, size, buf);
        }
 }