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