switch to using boost::signals2 instead of sigc++, at least for libardour. not finish...
[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 "ardour/ardour.h"
28 #include "ardour/io_processor.h"
29 #include "ardour/types.h"
30
31 class XMLNode;
32
33 namespace ARDOUR {
34
35 class Session;
36 class IO;
37 class Delivery;
38 class MuteMaster;
39
40 /** Port inserts: send output to a Jack port, pick up input at a Jack port
41  */
42 class PortInsert : public IOProcessor
43 {
44   public:
45         PortInsert (Session&, boost::shared_ptr<MuteMaster> mm);
46         PortInsert (Session&, boost::shared_ptr<MuteMaster> mm, const XMLNode&);
47         ~PortInsert ();
48
49         XMLNode& state(bool full);
50         XMLNode& get_state(void);
51         int set_state (const XMLNode&, int version);
52
53         void run (BufferSet& bufs, sframes_t start_frame, sframes_t end_frame, nframes_t nframes, bool);
54
55         nframes_t signal_latency() const;
56
57         bool set_name (const std::string& name);
58
59         bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const;
60         bool configure_io (ChanCount in, ChanCount out);
61
62         void activate ();
63         void deactivate ();
64
65         uint32_t bit_slot() const { return bitslot; }
66
67   private:
68         /* disallow copy construction */
69         PortInsert (const PortInsert&);
70
71         boost::shared_ptr<Delivery> _out;
72
73         uint32_t bitslot;
74 };
75
76 } // namespace ARDOUR
77
78 #endif /* __ardour_port_insert_h__ */