ardour
butler.h
Go to the documentation of this file.
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 #ifdef PLATFORM_WINDOWS
28 #include "pbd/glib_semaphore.h"
29 #endif
30 
31 #include "pbd/crossthread.h"
32 #include "pbd/ringbuffer.h"
33 #include "pbd/pool.h"
35 #include "ardour/types.h"
36 #include "ardour/session_handle.h"
37 
38 
39 
40 namespace ARDOUR {
41 
50 {
51  public:
52  Butler (Session& session);
53  ~Butler();
54 
55  int start_thread();
56  void terminate_thread();
57  void schedule_transport_work();
58  void summon();
59  void stop();
60  void wait_until_finished();
61  bool transport_work_requested() const;
62  void drop_references ();
63 
64  framecnt_t audio_diskstream_capture_buffer_size() const { return audio_dstream_capture_buffer_size; }
65  framecnt_t audio_diskstream_playback_buffer_size() const { return audio_dstream_playback_buffer_size; }
66  uint32_t midi_diskstream_buffer_size() const { return midi_dstream_buffer_size; }
67 
68  static void* _thread_work(void *arg);
69  void* thread_work();
70 
71  struct Request {
72  enum Type {
73  Run,
75  Quit
76  };
77  };
78 
79  pthread_t thread;
81  Glib::Threads::Mutex request_lock;
82  Glib::Threads::Cond paused;
83  bool should_run;
89 
90 private:
91  void empty_pool_trash ();
92  void config_changed (std::string);
93 
97  void queue_request (Request::Type r);
98 
100 
101 };
102 
103 } // namespace ARDOUR
104 
105 #endif // __ardour_butler_h__
framecnt_t audio_diskstream_capture_buffer_size() const
Definition: butler.h:64
pthread_t thread
Definition: butler.h:79
framecnt_t audio_diskstream_playback_buffer_size() const
Definition: butler.h:65
LIBARDOUR_API uint64_t Butler
Definition: diskstream.h:191
int64_t framecnt_t
Definition: types.h:76
Definition: amp.h:29
framecnt_t audio_dstream_capture_buffer_size
Definition: butler.h:85
RingBuffer< CrossThreadPool * > pool_trash
Definition: butler.h:88
bool have_thread
Definition: butler.h:80
bool should_run
Definition: butler.h:83
#define LIBARDOUR_API
Glib::Threads::Cond paused
Definition: butler.h:82
uint32_t midi_dstream_buffer_size
Definition: butler.h:87
Glib::Threads::Mutex request_lock
Definition: butler.h:81
CrossThreadChannel _xthread
Definition: butler.h:99
uint32_t midi_diskstream_buffer_size() const
Definition: butler.h:66
gint should_do_transport_work
Definition: butler.h:84
framecnt_t audio_dstream_playback_buffer_size
Definition: butler.h:86