3336a31bf4635ba63e907abca243dc5deddd7faf
[ardour.git] / libs / ardour / ardour / ladspa_plugin.h
1 /*
2     Copyright (C) 2000-2006 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_ladspa_plugin_h__
21 #define __ardour_ladspa_plugin_h__
22
23 #include <set>
24 #include <vector>
25 #include <string>
26
27 #include <glibmm/module.h>
28
29 #include "pbd/stateful.h"
30
31 #include "ardour/ladspa.h"
32 #include "ardour/plugin.h"
33
34 namespace ARDOUR {
35 class AudioEngine;
36 class Session;
37
38 class LIBARDOUR_API LadspaPlugin : public ARDOUR::Plugin
39 {
40   public:
41         LadspaPlugin (std::string module_path, ARDOUR::AudioEngine&, ARDOUR::Session&, uint32_t index, framecnt_t sample_rate);
42         LadspaPlugin (const LadspaPlugin &);
43         ~LadspaPlugin ();
44
45         /* Plugin interface */
46
47         std::string unique_id() const;
48         const char* label() const           { return _descriptor->Label; }
49         const char* name() const            { return _descriptor->Name; }
50         const char* maker() const           { return _descriptor->Maker; }
51         uint32_t    parameter_count() const { return _descriptor->PortCount; }
52         float       default_value (uint32_t port) { return _default_value (port); }
53         framecnt_t  signal_latency() const;
54         void        set_parameter (uint32_t port, float val);
55         float       get_parameter (uint32_t port) const;
56         int         get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const;
57         uint32_t    nth_parameter (uint32_t port, bool& ok) const;
58
59         std::set<Evoral::Parameter> automatable() const;
60
61         void activate () {
62                 if (!_was_activated && _descriptor->activate)
63                         _descriptor->activate (_handle);
64
65                 _was_activated = true;
66         }
67
68         void deactivate () {
69                 if (_was_activated && _descriptor->deactivate)
70                         _descriptor->deactivate (_handle);
71
72                 _was_activated = false;
73         }
74
75         void cleanup () {
76                 activate();
77                 deactivate();
78
79                 if (_descriptor->cleanup)
80                         _descriptor->cleanup (_handle);
81         }
82
83         int set_block_size (pframes_t /*nframes*/) { return 0; }
84
85         int connect_and_run (BufferSet& bufs,
86                         ChanMapping in, ChanMapping out,
87                         pframes_t nframes, framecnt_t offset);
88
89         std::string describe_parameter (Evoral::Parameter);
90         std::string state_node_name() const { return "ladspa"; }
91         void        print_parameter (uint32_t, char*, uint32_t len) const;
92
93         bool parameter_is_audio(uint32_t) const;
94         bool parameter_is_control(uint32_t) const;
95         bool parameter_is_input(uint32_t) const;
96         bool parameter_is_output(uint32_t) const;
97         bool parameter_is_toggled(uint32_t) const;
98
99         boost::shared_ptr<ScalePoints>
100         get_scale_points(uint32_t port_index) const;
101
102         int set_state (const XMLNode&, int version);
103
104         bool load_preset (PresetRecord);
105
106         bool has_editor() const { return false; }
107
108         /* LADSPA extras */
109
110         LADSPA_Properties           properties() const                { return _descriptor->Properties; }
111         uint32_t                    index() const                     { return _index; }
112         const char *                copyright() const                 { return _descriptor->Copyright; }
113         LADSPA_PortDescriptor       port_descriptor(uint32_t i) const;
114         const LADSPA_PortRangeHint* port_range_hints() const          { return _descriptor->PortRangeHints; }
115         const char * const *        port_names() const                { return _descriptor->PortNames; }
116
117         void set_gain (float gain)                    { _descriptor->set_run_adding_gain (_handle, gain); }
118         void run_adding (uint32_t nsamples)           { _descriptor->run_adding (_handle, nsamples); }
119         void connect_port (uint32_t port, float *ptr) { _descriptor->connect_port (_handle, port, ptr); }
120
121   private:
122         float                    _default_value (uint32_t port) const;
123         std::string              _module_path;
124         Glib::Module*            _module;
125         const LADSPA_Descriptor* _descriptor;
126         LADSPA_Handle            _handle;
127         framecnt_t               _sample_rate;
128         LADSPA_Data*             _control_data;
129         LADSPA_Data*             _shadow_data;
130         LADSPA_Data*             _latency_control_port;
131         uint32_t                 _index;
132         bool                     _was_activated;
133
134         void find_presets ();
135
136         void init (std::string module_path, uint32_t index, framecnt_t rate);
137         void run_in_place (pframes_t nsamples);
138         void latency_compute_run ();
139         int set_state_2X (const XMLNode&, int version);
140         std::string do_save_preset (std::string name);
141         void do_remove_preset (std::string name);
142         std::string preset_envvar () const;
143         std::string preset_source (std::string) const;
144         bool write_preset_file (std::string);
145         void add_state (XMLNode *) const;
146 };
147
148 class LIBARDOUR_API LadspaPluginInfo : public PluginInfo {
149   public:
150         LadspaPluginInfo ();
151         ~LadspaPluginInfo () { };
152
153         PluginPtr load (Session& session);
154         virtual std::vector<Plugin::PresetRecord> get_presets(Session& session);
155 };
156
157 typedef boost::shared_ptr<LadspaPluginInfo> LadspaPluginInfoPtr;
158
159 } // namespace ARDOUR
160
161 #endif /* __ardour_ladspa_plugin_h__ */