Merged with trunk R1283.
[ardour.git] / libs / ardour / ardour / send.h
1 /*
2     Copyright (C) 2000 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     $Id$
19 */
20
21 #ifndef __ardour_send_h__
22 #define __ardour_send_h__
23
24 #include <sigc++/signal.h>
25 #include <string>
26
27
28 #include <pbd/stateful.h> 
29 #include <ardour/ardour.h>
30 #include <ardour/audioengine.h>
31 #include <ardour/io.h>
32 #include <ardour/redirect.h>
33
34 namespace ARDOUR {
35
36 class Send : public Redirect 
37 {
38   public:       
39         Send (Session&, Placement);
40         Send (Session&, const XMLNode&);
41         Send (const Send&);
42         ~Send ();
43
44         uint32_t bit_slot() const { return bitslot; }
45         
46         void run (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset);
47         
48         void activate() {}
49         void deactivate () {}
50
51         void set_metering (bool yn);
52
53         XMLNode& state(bool full);
54         XMLNode& get_state(void);
55         int set_state(const XMLNode& node);
56
57         uint32_t pans_required() const { return _expected_inputs.get(DataType::AUDIO); }
58         void expect_inputs (const ChanCount&);
59
60         static uint32_t how_many_sends();
61
62   private:
63         bool      _metering;
64         ChanCount _expected_inputs;
65         uint32_t bitslot;
66 };
67
68 } // namespace ARDOUR
69
70 #endif /* __ardour_send_h__ */