Fix various code quality issues found by cppcheck (e.g. uninitialized members, larger...
[ardour.git] / libs / ardour / ardour / delivery.h
1 /*
2     Copyright (C) 2006 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify it
5     under the terms of the GNU General Public License as published by the Free
6     Software Foundation; either version 2 of the License, or (at your option)
7     any later version.
8
9     This program is distributed in the hope that it will be useful, but WITHOUT
10     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12     for more details.
13
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __ardour_delivery_h__
20 #define __ardour_delivery_h__
21
22 #include <string>
23
24 #include "ardour/types.h"
25 #include "ardour/chan_count.h"
26 #include "ardour/io_processor.h"
27
28 namespace ARDOUR {
29
30 class BufferSet;
31 class IO;
32 class MuteMaster;
33 class Panner;
34
35 class Delivery : public IOProcessor
36 {
37 public:
38         enum Role {
39                 /* main outputs - delivers out-of-place to port buffers, and cannot be removed */
40                 Main   = 0x1,
41                 /* send - delivers to port buffers, leaves input buffers untouched */
42                 Send   = 0x2,
43                 /* insert - delivers to port buffers and receives in-place from port buffers */
44                 Insert = 0x4,
45                 /* listen - internal send used only to deliver to control/monitor bus */
46                 Listen = 0x8,
47                 /* aux - internal send used to deliver to any bus, by user request */
48                 Aux    = 0x10
49         };
50
51         static bool role_requires_output_ports (Role r) { return r == Main || r == Send || r == Insert; }
52
53         /* Delivery to an existing output */
54
55         Delivery (Session& s, boost::shared_ptr<IO> io, boost::shared_ptr<MuteMaster> mm, const std::string& name, Role);
56         Delivery (Session& s, boost::shared_ptr<IO> io, boost::shared_ptr<MuteMaster> mm, const XMLNode&);
57
58         /* Delivery to a new output owned by this object */
59
60         Delivery (Session& s, boost::shared_ptr<MuteMaster> mm, const std::string& name, Role);
61         Delivery (Session&, boost::shared_ptr<MuteMaster> mm, const XMLNode&);
62         ~Delivery ();
63
64         bool set_name (const std::string& name);
65         std::string display_name() const;
66
67         Role role() const { return _role; }
68         bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
69         bool configure_io (ChanCount in, ChanCount out);
70
71         void run (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes, bool);
72
73         /* supplemental method used with MIDI */
74
75         void flush (nframes_t nframes, nframes64_t time);
76         void transport_stopped ();
77
78         void no_outs_cuz_we_no_monitor(bool);
79
80         void set_solo_level (int32_t sl) { _solo_level = sl; }
81         void set_solo_isolated (bool yn) { _solo_isolated = yn; }
82
83         void cycle_start (nframes_t);
84         void increment_output_offset (nframes_t);
85         void transport_stopped (sframes_t frame);
86
87         BufferSet& output_buffers() { return *_output_buffers; }
88
89         PBD::Signal0<void> MuteChange;
90
91         static PBD::Signal1<void,nframes_t> CycleStart;
92
93         XMLNode& state (bool full);
94         int set_state (const XMLNode&, int version);
95
96         /* Panning */
97
98         static int  disable_panners (void);
99         static int  reset_panners (void);
100
101         boost::shared_ptr<Panner> panner() const { return _panner; }
102
103         void reset_panner ();
104         void defer_pan_reset ();
105         void allow_pan_reset ();
106
107         uint32_t pans_required() const { return _configured_input.n_audio(); }
108         void start_pan_touch (uint32_t which);
109         void end_pan_touch (uint32_t which);
110
111   protected:
112         Role        _role;
113         BufferSet*  _output_buffers;
114         gain_t      _current_gain;
115         nframes_t   _output_offset;
116         bool        _no_outs_cuz_we_no_monitor;
117         uint32_t    _solo_level;
118         bool        _solo_isolated;
119         boost::shared_ptr<MuteMaster> _mute_master;
120         bool         no_panner_reset;
121         boost::shared_ptr<Panner> _panner;
122
123         static bool panners_legal;
124         static PBD::Signal0<int>            PannersLegal;
125
126         int panners_became_legal ();
127         PBD::ScopedConnection panner_legal_c;
128         void output_changed (IOChange, void*);
129
130         gain_t target_gain ();
131 };
132
133
134 } // namespace ARDOUR
135
136 #endif // __ardour__h__
137