Renamed Insert to Processor and Redirect to IOProcessor.
[ardour.git] / libs / ardour / ardour / processor.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 */
19
20 #ifndef __ardour_processor_h__
21 #define __ardour_processor_h__
22
23 #include <vector>
24 #include <string>
25 #include <exception>
26
27 #include <pbd/statefuldestructible.h> 
28
29 #include <sigc++/signal.h>
30
31 #include <ardour/types.h>
32 #include <ardour/ardour.h>
33 #include <ardour/plugin_state.h>
34 #include <ardour/buffer_set.h>
35 #include <ardour/automatable.h>
36
37
38 class XMLNode;
39
40 namespace ARDOUR {
41
42 class Session;
43
44 /* A mixer strip element - plugin, send, meter, etc.
45  */
46 class Processor : public Automatable
47 {
48   public:
49         static const string state_node_name;
50
51         Processor(Session&, const string& name, Placement p); // TODO: remove placement in favour of sort key
52         
53         virtual ~Processor() { }
54         
55         static boost::shared_ptr<Processor> clone (boost::shared_ptr<const Processor>);
56
57         uint32_t sort_key() const { return _sort_key; }
58         void set_sort_key (uint32_t key);
59
60         Placement placement() const { return _placement; }
61         void set_placement (Placement);
62         
63         bool active () const { return _active; }
64         void set_active (bool yn);
65         
66         bool get_next_ab_is_active () const { return _next_ab_is_active; }
67         void set_next_ab_is_active (bool yn) { _next_ab_is_active = yn; }
68         
69         virtual nframes_t latency() { return 0; }
70         
71         virtual void transport_stopped (nframes_t frame) {}
72         
73         virtual void set_block_size (nframes_t nframes) {}
74
75         virtual void run (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset) = 0;
76         virtual void silence (nframes_t nframes, nframes_t offset) {}
77         
78         virtual void activate () { _active = true; ActiveChanged.emit(); }
79         virtual void deactivate () { _active = false; ActiveChanged.emit(); }
80         
81         virtual bool configure_io (ChanCount in, ChanCount out) { _configured_input = in; return (_configured = true); }
82
83         /* Act as a pass through, if not overridden */
84         virtual bool      can_support_input_configuration (ChanCount in) const { return true; }
85         virtual ChanCount output_for_input_configuration (ChanCount in) const { return in; }
86         virtual ChanCount output_streams() const { return _configured_input; }
87         virtual ChanCount input_streams () const { return _configured_input; }
88
89         virtual XMLNode& state (bool full);
90         virtual XMLNode& get_state (void);
91         virtual int set_state (const XMLNode&);
92         
93         void *get_gui () const { return _gui; }
94         void  set_gui (void *p) { _gui = p; }
95
96         static sigc::signal<void,Processor*> ProcessorCreated;
97
98         sigc::signal<void> ActiveChanged;
99         sigc::signal<void> PlacementChanged;
100
101 protected:
102         bool      _active;
103         bool      _next_ab_is_active;
104         bool      _configured;
105         ChanCount _configured_input;
106         Placement _placement;
107         uint32_t  _sort_key;
108         void*     _gui;  /* generic, we don't know or care what this is */
109 };
110
111 } // namespace ARDOUR
112
113 #endif /* __ardour_processor_h__ */