Merge with 2.0-ongoing R2885.
[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/buffer_set.h>
34 #include <ardour/automatable.h>
35 #include <ardour/latent.h>
36
37 class XMLNode;
38
39 namespace ARDOUR {
40
41 class Session;
42
43 /* A mixer strip element - plugin, send, meter, etc.
44  */
45 class Processor : public Automatable, public Latent
46 {
47   public:
48         static const string state_node_name;
49
50         Processor(Session&, const string& name, Placement p); // TODO: remove placement in favour of sort key
51         
52         virtual ~Processor() { }
53         
54         static boost::shared_ptr<Processor> clone (boost::shared_ptr<const Processor>);
55
56         uint32_t sort_key() const { return _sort_key; }
57         void set_sort_key (uint32_t key);
58
59         Placement placement() const { return _placement; }
60         void set_placement (Placement);
61         
62         bool active () const { return _active; }
63         void set_active (bool yn);
64         
65         bool get_next_ab_is_active () const { return _next_ab_is_active; }
66         void set_next_ab_is_active (bool yn) { _next_ab_is_active = yn; }
67         
68         virtual nframes_t signal_latency() const { return 0; }
69         
70         virtual void transport_stopped (nframes_t frame) {}
71         
72         virtual void set_block_size (nframes_t nframes) {}
73
74         virtual void run_in_place (BufferSet& bufs, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset) { assert(is_in_place()); }
75         
76         virtual void run_out_of_place (BufferSet& input, BufferSet& output, nframes_t start_frame, nframes_t end_frame, nframes_t nframes, nframes_t offset) { assert(is_out_of_place()); }
77         
78         virtual void silence (nframes_t nframes, nframes_t offset) {}
79         
80         virtual void activate () { _active = true; ActiveChanged.emit(); }
81         virtual void deactivate () { _active = false; ActiveChanged.emit(); }
82         
83         virtual bool configure_io (ChanCount in, ChanCount out) { _configured_input = in; return (_configured = true); }
84
85         /* Derived classes should override these, or processor appears as an in-place pass-through */
86
87         /** In-place processors implement run_in_place and modify thee input buffer parameter */
88         virtual bool is_in_place () const { return true; }
89
90         /* Out-Of-Place processors implement run_out_of_place, don't modify the input parameter
91          * and write to their output parameter */
92         virtual bool is_out_of_place () const { return false; }
93
94         virtual bool      can_support_input_configuration (ChanCount in) const { return true; }
95         virtual ChanCount output_for_input_configuration (ChanCount in) const { return in; }
96         virtual ChanCount output_streams() const { return _configured_input; }
97         virtual ChanCount input_streams () const { return _configured_input; }
98
99         virtual XMLNode& state (bool full);
100         virtual XMLNode& get_state (void);
101         virtual int set_state (const XMLNode&);
102         
103         void *get_gui () const { return _gui; }
104         void  set_gui (void *p) { _gui = p; }
105
106         static sigc::signal<void,Processor*> ProcessorCreated;
107
108         sigc::signal<void> ActiveChanged;
109         sigc::signal<void> PlacementChanged;
110
111 protected:
112         bool      _active;
113         bool      _next_ab_is_active;
114         bool      _configured;
115         ChanCount _configured_input;
116         Placement _placement;
117         uint32_t  _sort_key;
118         void*     _gui;  /* generic, we don't know or care what this is */
119 };
120
121 } // namespace ARDOUR
122
123 #endif /* __ardour_processor_h__ */