change name of a Session method to makes its intended function clear
[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 <pthread.h>
24
25 #include <glibmm/threads.h>
26
27 #include "pbd/crossthread.h"
28 #include "pbd/ringbuffer.h"
29 #include "pbd/pool.h"
30 #include "ardour/libardour_visibility.h"
31 #include "ardour/types.h"
32 #include "ardour/session_handle.h"
33
34
35
36 namespace ARDOUR {
37
38 /**
39  *  One of the Butler's functions is to clean up (ie delete) unused CrossThreadPools.
40  *  When a thread with a CrossThreadPool terminates, its CTP is added to pool_trash.
41  *  When the Butler thread wakes up, we check this trash buffer for CTPs, and if they
42  *  are empty they are deleted.
43  */
44
45 class LIBARDOUR_API Butler : public SessionHandleRef
46 {
47   public:
48         Butler (Session& session);
49         ~Butler();
50
51         int  start_thread();
52         void terminate_thread();
53         void schedule_transport_work();
54         void summon();
55         void stop();
56         void wait_until_finished();
57         bool transport_work_requested() const;
58         void drop_references ();
59
60         void map_parameters ();
61
62         framecnt_t audio_diskstream_capture_buffer_size() const { return audio_dstream_capture_buffer_size; }
63         framecnt_t audio_diskstream_playback_buffer_size() const { return audio_dstream_playback_buffer_size; }
64         uint32_t midi_diskstream_buffer_size()  const { return midi_dstream_buffer_size; }
65
66         bool flush_tracks_to_disk_after_locate (boost::shared_ptr<RouteList>, uint32_t& errors);
67
68         static void* _thread_work(void *arg);
69         void*         thread_work();
70
71         struct Request {
72                 enum Type {
73                         Run,
74                         Pause,
75                         Quit
76                 };
77         };
78
79         pthread_t    thread;
80         bool         have_thread;
81         Glib::Threads::Mutex  request_lock;
82         Glib::Threads::Cond   paused;
83         bool         should_run;
84         mutable gint should_do_transport_work;
85         framecnt_t   audio_dstream_capture_buffer_size;
86         framecnt_t   audio_dstream_playback_buffer_size;
87         uint32_t     midi_dstream_buffer_size;
88         RingBuffer<CrossThreadPool*> pool_trash;
89
90 private:
91         void empty_pool_trash ();
92         void config_changed (std::string);
93
94         bool flush_tracks_to_disk_normal (boost::shared_ptr<RouteList>, uint32_t& errors);
95
96         /**
97          * Add request to butler thread request queue
98          */
99         void queue_request (Request::Type r);
100
101         CrossThreadChannel _xthread;
102
103 };
104
105 } // namespace ARDOUR
106
107 #endif // __ardour_butler_h__