Reset buffer stats on stop. Remove unused minimum playback/capture load stats.
[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 #include "ardour/track.h"
44
45 #include "i18n.h"
46
47 using namespace std;
48 using namespace ARDOUR;
49 using namespace PBD;
50
51 /* XXX put this in the right place */
52
53 static inline uint32_t next_power_of_two (uint32_t n)
54 {
55         --n;
56         n |= n >> 16;
57         n |= n >> 8;
58         n |= n >> 4;
59         n |= n >> 2;
60         n |= n >> 1;
61         ++n;
62         return n;
63 }
64
65 /*---------------------------------------------------------------------------
66  BUTLER THREAD
67  ---------------------------------------------------------------------------*/
68
69 void
70 Session::schedule_curve_reallocation ()
71 {
72         add_post_transport_work (PostTransportCurveRealloc);
73         _butler->schedule_transport_work ();
74 }
75
76 void
77 Session::request_overwrite_buffer (Track* t)
78 {
79         SessionEvent *ev = new SessionEvent (SessionEvent::Overwrite, SessionEvent::Add, SessionEvent::Immediate, 0, 0, 0.0);
80         ev->set_ptr (t);
81         queue_event (ev);
82 }
83
84 /** Process thread. */
85 void
86 Session::overwrite_some_buffers (Track* t)
87 {
88         if (actively_recording()) {
89                 return;
90         }
91
92         if (t) {
93
94                 t->set_pending_overwrite (true);
95
96         } else {
97
98                 boost::shared_ptr<RouteList> rl = routes.reader();
99                 for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) {
100                         boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (*i);
101                         if (tr) {
102                                 tr->set_pending_overwrite (true);
103                         }
104                 }
105         }
106
107         add_post_transport_work (PostTransportOverWrite);
108         _butler->schedule_transport_work ();
109 }
110
111 uint32_t
112 Session::playback_load ()
113 {
114         return (uint32_t) g_atomic_int_get (&_playback_load);
115 }
116
117 uint32_t
118 Session::capture_load ()
119 {
120         return (uint32_t) g_atomic_int_get (&_capture_load);
121 }