Insert/Redirect refactoring, towards better MIDI support in mixer strip, and
[ardour.git] / libs / ardour / ardour / port_insert.h
1 /*
2     Copyright (C) 2000,2007 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_port_insert_h__
21 #define __ardour_port_insert_h__
22
23 #include <vector>
24 #include <string>
25 #include <exception>
26
27 #include <sigc++/signal.h>
28 #include <ardour/ardour.h>
29 #include <ardour/redirect.h>
30 #include <ardour/plugin_state.h>
31 #include <ardour/types.h>
32
33 class XMLNode;
34
35 namespace ARDOUR {
36
37 class Session;
38
39 /** Port inserts: send output to a Jack port, pick up input at a Jack port
40  *
41  * PortInsert IS-A Redirect IS-A Insert, IO
42  */
43 class PortInsert : public Redirect
44 {
45   public:
46         PortInsert (Session&, Placement);
47         PortInsert (Session&, const XMLNode&);
48         PortInsert (const PortInsert&);
49         ~PortInsert ();
50
51         XMLNode& state(bool full);
52         XMLNode& get_state(void);
53         int set_state(const XMLNode&);
54
55         void init ();
56         
57         void run (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset);
58
59         nframes_t latency();
60         
61         ChanCount output_streams() const;
62         ChanCount input_streams() const;
63
64         virtual bool      can_support_input_configuration (ChanCount in) const;
65         virtual ChanCount output_for_input_configuration (ChanCount in) const;
66         virtual bool      configure_io (ChanCount in, ChanCount out);
67
68         uint32_t bit_slot() const { return bitslot; }
69
70   private:
71         uint32_t bitslot;
72 };
73
74 } // namespace ARDOUR
75
76 #endif /* __ardour_port_insert_h__ */