Merge branch 'master' into exportvis
[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/libardour_visibility.h"
28 #include "ardour/types.h"
29 #include "ardour/session_handle.h"
30
31 namespace ARDOUR {
32
33 /**
34  *  One of the Butler's functions is to clean up (ie delete) unused CrossThreadPools.
35  *  When a thread with a CrossThreadPool terminates, its CTP is added to pool_trash.
36  *  When the Butler thread wakes up, we check this trash buffer for CTPs, and if they
37  *  are empty they are deleted.
38  */
39
40 class LIBARDOUR_API Butler : public SessionHandleRef
41 {
42   public:
43         Butler (Session& session);
44         ~Butler();
45
46         int  start_thread();
47         void terminate_thread();
48         void schedule_transport_work();
49         void summon();
50         void stop();
51         void wait_until_finished();
52         bool transport_work_requested() const;
53         void drop_references ();
54
55         framecnt_t audio_diskstream_capture_buffer_size() const { return audio_dstream_capture_buffer_size; }
56         framecnt_t audio_diskstream_playback_buffer_size() const { return audio_dstream_playback_buffer_size; }
57         uint32_t midi_diskstream_buffer_size()  const { return midi_dstream_buffer_size; }
58
59         static void* _thread_work(void *arg);
60         void*         thread_work();
61
62         struct Request {
63                 enum Type {
64                         Run,
65                         Pause,
66                         Quit
67                 };
68         };
69
70         pthread_t    thread;
71         Glib::Threads::Mutex  request_lock;
72         Glib::Threads::Cond   paused;
73         bool         should_run;
74         mutable gint should_do_transport_work;
75         int          request_pipe[2];
76         framecnt_t   audio_dstream_capture_buffer_size;
77         framecnt_t   audio_dstream_playback_buffer_size;
78         uint32_t     midi_dstream_buffer_size;
79         RingBuffer<CrossThreadPool*> pool_trash;
80
81 private:
82         void empty_pool_trash ();
83         void config_changed (std::string);
84 };
85
86 } // namespace ARDOUR
87
88 #endif // __ardour_butler_h__