move Session::Event into SessionEvent class; add SessionEventManager (Session IS...
[ardour.git] / libs / ardour / session_butler.cc
1 /*
2     Copyright (C) 1999-2002 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 #include <algorithm>
21 #include <string>
22 #include <cmath>
23 #include <cerrno>
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <poll.h>
27
28 #include <glibmm/thread.h>
29
30 #include "pbd/error.h"
31 #include "pbd/pthread_utils.h"
32 #include "pbd/stacktrace.h"
33
34 #include "ardour/audio_diskstream.h"
35 #include "ardour/audioengine.h"
36 #include "ardour/butler.h"
37 #include "ardour/configuration.h"
38 #include "ardour/crossfade.h"
39 #include "ardour/io.h"
40 #include "ardour/midi_diskstream.h"
41 #include "ardour/session.h"
42 #include "ardour/timestamps.h"
43
44 #include "i18n.h"
45
46 using namespace std;
47 using namespace ARDOUR;
48 using namespace PBD;
49
50 /* XXX put this in the right place */
51
52 static inline uint32_t next_power_of_two (uint32_t n)
53 {
54         --n;
55         n |= n >> 16;
56         n |= n >> 8;
57         n |= n >> 4;
58         n |= n >> 2;
59         n |= n >> 1;
60         ++n;
61         return n;
62 }
63
64 /*---------------------------------------------------------------------------
65  BUTLER THREAD
66  ---------------------------------------------------------------------------*/
67
68 void
69 Session::schedule_curve_reallocation ()
70 {
71         add_post_transport_work (PostTransportCurveRealloc);
72         _butler->schedule_transport_work ();
73 }
74
75 void
76 Session::request_overwrite_buffer (Diskstream* stream)
77 {
78         SessionEvent *ev = new SessionEvent (SessionEvent::Overwrite, SessionEvent::Add, SessionEvent::Immediate, 0, 0, 0.0);
79         ev->set_ptr (stream);
80         queue_event (ev);
81 }
82
83 /** Process thread. */
84 void
85 Session::overwrite_some_buffers (Diskstream* ds)
86 {
87         if (actively_recording()) {
88                 return;
89         }
90
91         if (ds) {
92
93                 ds->set_pending_overwrite (true);
94
95         } else {
96
97                 boost::shared_ptr<DiskstreamList> dsl = diskstreams.reader();
98                 for (DiskstreamList::iterator i = dsl->begin(); i != dsl->end(); ++i) {
99                         (*i)->set_pending_overwrite (true);
100                 }
101         }
102
103         add_post_transport_work (PostTransportOverWrite);
104         _butler->schedule_transport_work ();
105 }
106
107 uint32_t
108 Session::playback_load ()
109 {
110         return (uint32_t) g_atomic_int_get (&_playback_load);
111 }
112
113 uint32_t
114 Session::capture_load ()
115 {
116         return (uint32_t) g_atomic_int_get (&_capture_load);
117 }
118
119 uint32_t
120 Session::playback_load_min ()
121 {
122         return (uint32_t) g_atomic_int_get (&_playback_load_min);
123 }
124
125 uint32_t
126 Session::capture_load_min ()
127 {
128         return (uint32_t) g_atomic_int_get (&_capture_load_min);
129 }
130
131 void
132 Session::reset_capture_load_min ()
133 {
134         g_atomic_int_set (&_capture_load_min, 100);
135 }
136
137 void
138 Session::reset_playback_load_min ()
139 {
140         g_atomic_int_set (&_playback_load_min, 100);
141 }
142