Remove weird/pointless Automatable::data().
[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
30 #include "ardour/ardour.h"
31 #include "ardour/automatable_controls.h"
32 #include "ardour/buffer_set.h"
33 #include "ardour/latent.h"
34 #include "ardour/session_object.h"
35 #include "ardour/types.h"
36
37 class XMLNode;
38
39 namespace ARDOUR {
40
41 class Session;
42 class Route;
43
44 /* A mixer strip element - plugin, send, meter, etc.
45  */
46 class Processor : public SessionObject, public AutomatableControls, public Latent
47 {
48   public:
49         static const std::string state_node_name;
50
51         Processor(Session&, const std::string& name);
52         Processor(Session&, const XMLNode& node);
53
54         virtual ~Processor() { }
55
56         virtual std::string display_name() const { return SessionObject::name(); }
57
58         virtual bool display_to_user() const { return _display_to_user; }
59         virtual void set_display_to_user (bool);
60
61         bool active () const { return _pending_active; }
62
63         bool get_next_ab_is_active () const { return _next_ab_is_active; }
64         void set_next_ab_is_active (bool yn) { _next_ab_is_active = yn; }
65
66         virtual nframes_t signal_latency() const { return 0; }
67
68         virtual void transport_stopped (sframes_t /*frame*/) {}
69
70         virtual void set_block_size (nframes_t /*nframes*/) {}
71
72         /** @param result_required true if, on return from this method, bufs is required to contain valid data;
73          *  if false, the method need not bother writing to bufs if it doesn't want to.
74          */  
75         virtual void run (BufferSet& /*bufs*/, sframes_t /*start_frame*/, sframes_t /*end_frame*/, nframes_t /*nframes*/, bool /*result_required*/) {}
76         virtual void silence (nframes_t /*nframes*/) {}
77
78         virtual void activate ()   { _pending_active = true; ActiveChanged(); }
79         virtual void deactivate () { _pending_active = false; ActiveChanged(); }
80
81         virtual bool configure_io (ChanCount in, ChanCount out);
82
83         /* Derived classes should override these, or processor appears as an in-place pass-through */
84
85         virtual bool can_support_io_configuration (const ChanCount& in, ChanCount& out) const = 0;
86         virtual ChanCount input_streams () const { return _configured_input; }
87         virtual ChanCount output_streams() const { return _configured_output; }
88
89         /* note: derived classes should implement state(), NOT get_state(), to allow
90            us to merge C++ inheritance and XML lack-of-inheritance reasonably
91            smoothly.
92          */
93
94         virtual XMLNode& state (bool full);
95         XMLNode& get_state (void);
96         int set_state (const XMLNode&, int version);
97         
98         void *get_gui () const { return _gui; }
99         void  set_gui (void *p) { _gui = p; }
100
101         static PBD::Signal1<void,Processor*> ProcessorCreated;
102
103         PBD::Signal0<void>                     ActiveChanged;
104         PBD::Signal2<void,ChanCount,ChanCount> ConfigurationChanged;
105
106 protected:
107         int       _pending_active;
108         bool      _active;
109         bool      _next_ab_is_active;
110         bool      _configured;
111         ChanCount _configured_input;
112         ChanCount _configured_output;
113         void*     _gui;  /* generic, we don't know or care what this is */
114         bool        _display_to_user;
115
116 private:
117         int set_state_2X (const XMLNode&, int version);
118 };
119
120 } // namespace ARDOUR
121
122 #endif /* __ardour_processor_h__ */