Refactor the non-portable parts of Butler thread into new functions
[ardour.git] / libs / ardour / ardour / butler.h
1 /*
2     Copyright (C) 2000-2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_butler_h__
21 #define __ardour_butler_h__
22
23 #include <glibmm/threads.h>
24
25 #include "pbd/ringbuffer.h"
26 #include "pbd/pool.h"
27 #include "ardour/types.h"
28 #include "ardour/session_handle.h"
29
30 namespace ARDOUR {
31
32 /**
33  *  One of the Butler's functions is to clean up (ie delete) unused CrossThreadPools.
34  *  When a thread with a CrossThreadPool terminates, its CTP is added to pool_trash.
35  *  When the Butler thread wakes up, we check this trash buffer for CTPs, and if they
36  *  are empty they are deleted.
37  */
38
39 class Butler : public SessionHandleRef
40 {
41   public:
42         Butler (Session& session);
43         ~Butler();
44
45         int  start_thread();
46         void terminate_thread();
47         void schedule_transport_work();
48         void summon();
49         void stop();
50         void wait_until_finished();
51         bool transport_work_requested() const;
52         void drop_references ();
53
54         framecnt_t audio_diskstream_capture_buffer_size() const { return audio_dstream_capture_buffer_size; }
55         framecnt_t audio_diskstream_playback_buffer_size() const { return audio_dstream_playback_buffer_size; }
56         uint32_t midi_diskstream_buffer_size()  const { return midi_dstream_buffer_size; }
57
58         static void* _thread_work(void *arg);
59         void*         thread_work();
60
61         struct Request {
62                 enum Type {
63                         Run,
64                         Pause,
65                         Quit
66                 };
67         };
68
69         pthread_t    thread;
70         Glib::Threads::Mutex  request_lock;
71         Glib::Threads::Cond   paused;
72         bool         should_run;
73         mutable gint should_do_transport_work;
74         int          request_pipe[2];
75         framecnt_t   audio_dstream_capture_buffer_size;
76         framecnt_t   audio_dstream_playback_buffer_size;
77         uint32_t     midi_dstream_buffer_size;
78         RingBuffer<CrossThreadPool*> pool_trash;
79
80 private:
81         void empty_pool_trash ();
82         void config_changed (std::string);
83
84         int setup_request_pipe ();
85
86         /**
87          * return true if there are requests to be processed
88          */
89         bool wait_for_requests ();
90
91         /**
92          * Remove request from butler request queue
93          *
94          * return true if there was another request and req is valid
95          */
96         bool dequeue_request (Request::Type& req);
97
98         /**
99          * Add request to butler thread request queue
100          */
101         void queue_request (Request::Type r);
102
103 };
104
105 } // namespace ARDOUR
106
107 #endif // __ardour_butler_h__