'libs/ardour' - Main body of changes required for building with MSVC
[ardour.git] / libs / ardour / ardour / lv2_plugin.h
1 /*
2     Copyright (C) 2008-2012 Paul Davis
3     Author: David Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_lv2_plugin_h__
21 #define __ardour_lv2_plugin_h__
22
23 #include <set>
24 #include <string>
25 #include <vector>
26
27 #include "ardour/plugin.h"
28 #include "ardour/uri_map.h"
29 #include "ardour/worker.h"
30 #include "pbd/ringbuffer.h"
31
32 typedef struct LV2_Evbuf_Impl LV2_Evbuf;
33
34 namespace ARDOUR {
35
36 // a callback function for lilv_state_new_from_instance(). friend of LV2Plugin
37 // so we can pass an LV2Plugin* in user_data and access its private members.
38 const void* lv2plugin_get_port_value(const char* port_symbol,
39                                      void*       user_data,
40                                      uint32_t*   size,
41                                      uint32_t*   type);
42
43 class AudioEngine;
44 class Session;
45
46 class LV2Plugin : public ARDOUR::Plugin, public ARDOUR::Workee
47 {
48   public:
49         LV2Plugin (ARDOUR::AudioEngine& engine,
50                    ARDOUR::Session&     session,
51                    const void*          c_plugin,
52                    framecnt_t           sample_rate);
53         LV2Plugin (const LV2Plugin &);
54         ~LV2Plugin ();
55
56         std::string unique_id () const;
57         const char* uri () const;
58         const char* label () const;
59         const char* name () const;
60         const char* maker () const;
61
62         uint32_t    num_ports () const;
63         uint32_t    parameter_count () const;
64         float       default_value (uint32_t port);
65         framecnt_t  signal_latency () const;
66         void        set_parameter (uint32_t port, float val);
67         float       get_parameter (uint32_t port) const;
68         std::string get_docs() const;
69         std::string get_parameter_docs(uint32_t which) const;
70         int         get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const;
71         uint32_t    nth_parameter (uint32_t port, bool& ok) const;
72
73         const void* extension_data (const char* uri) const;
74
75         const void* c_plugin();
76         const void* c_ui();
77         const void* c_ui_type();
78
79         bool is_external_ui () const;
80         bool ui_is_resizable () const;
81
82         const char* port_symbol (uint32_t port) const;
83         uint32_t    port_index (const char* symbol) const;
84
85         const LV2_Feature* const* features () { return _features; }
86
87         std::set<Evoral::Parameter> automatable () const;
88
89         void activate ();
90         void deactivate ();
91         void cleanup ();
92
93         int set_block_size (pframes_t /*nframes*/) { return 0; }
94
95         int connect_and_run (BufferSet& bufs,
96                              ChanMapping in, ChanMapping out,
97                              pframes_t nframes, framecnt_t offset);
98
99         std::string describe_parameter (Evoral::Parameter);
100         std::string state_node_name () const { return "lv2"; }
101
102         void print_parameter (uint32_t param,
103                               char*    buf,
104                               uint32_t len) const;
105
106         bool parameter_is_audio (uint32_t) const;
107         bool parameter_is_control (uint32_t) const;
108         bool parameter_is_event (uint32_t) const;
109         bool parameter_is_input (uint32_t) const;
110         bool parameter_is_output (uint32_t) const;
111         bool parameter_is_toggled (uint32_t) const;
112
113         boost::shared_ptr<Plugin::ScalePoints>
114         get_scale_points(uint32_t port_index) const;
115
116         void set_insert_info(const PluginInsert* insert);
117
118         int      set_state (const XMLNode& node, int version);
119         bool     save_preset (std::string uri);
120         void     remove_preset (std::string uri);
121         bool     load_preset (PresetRecord);
122         std::string current_preset () const;
123
124         bool has_editor () const;
125         bool has_message_output () const;
126
127         bool write_from_ui(uint32_t       index,
128                            uint32_t       protocol,
129                            uint32_t       size,
130                            const uint8_t* body);
131
132         typedef void UIMessageSink(void*       controller,
133                                    uint32_t    index,
134                                    uint32_t    size,
135                                    uint32_t    format,
136                                    const void* buffer);
137
138         void enable_ui_emmission();
139         void emit_to_ui(void* controller, UIMessageSink sink);
140
141         Worker* worker() { return _worker; }
142
143         int work(uint32_t size, const void* data);
144         int work_response(uint32_t size, const void* data);
145
146         static URIMap _uri_map;
147
148         struct URIDs {
149                 uint32_t atom_Chunk;
150                 uint32_t atom_Path;
151                 uint32_t atom_Sequence;
152                 uint32_t atom_eventTransfer;
153                 uint32_t log_Error;
154                 uint32_t log_Note;
155                 uint32_t log_Warning;
156                 uint32_t midi_MidiEvent;
157                 uint32_t time_Position;
158                 uint32_t time_bar;
159                 uint32_t time_barBeat;
160                 uint32_t time_beatUnit;
161                 uint32_t time_beatsPerBar;
162                 uint32_t time_beatsPerMinute;
163                 uint32_t time_frame;
164                 uint32_t time_speed;
165         };
166
167         static URIDs urids;
168
169   private:
170         struct Impl;
171         Impl*         _impl;
172         void*         _module;
173         LV2_Feature** _features;
174         Worker*       _worker;
175         framecnt_t    _sample_rate;
176         float*        _control_data;
177         float*        _shadow_data;
178         float*        _defaults;
179         LV2_Evbuf**   _ev_buffers;
180         LV2_Evbuf**   _atom_ev_buffers;
181         float*        _bpm_control_port;  ///< Special input set by ardour
182         float*        _freewheel_control_port;  ///< Special input set by ardour
183         float*        _latency_control_port;  ///< Special output set by ardour
184         framepos_t    _next_cycle_start;  ///< Expected start frame of next run cycle
185         double        _next_cycle_speed;  ///< Expected start frame of next run cycle
186         PBD::ID       _insert_id;
187
188         friend const void* lv2plugin_get_port_value(const char* port_symbol,
189                                                     void*       user_data,
190                                                     uint32_t*   size,
191                                                     uint32_t*   type);
192
193         typedef enum {
194                 PORT_INPUT    = 1,       ///< Input port
195                 PORT_OUTPUT   = 1 << 1,  ///< Output port
196                 PORT_AUDIO    = 1 << 2,  ///< Audio (buffer of float)
197                 PORT_CONTROL  = 1 << 3,  ///< Control (single float)
198                 PORT_EVENT    = 1 << 4,  ///< Old event API event port
199                 PORT_SEQUENCE = 1 << 5,  ///< New atom API event port
200                 PORT_MIDI     = 1 << 6,  ///< Event port understands MIDI
201                 PORT_POSITION = 1 << 7   ///< Event port understands position
202         } PortFlag;
203
204         typedef unsigned PortFlags;
205
206         std::vector<PortFlags>         _port_flags;
207         std::vector<size_t>            _port_minimumSize;
208         std::map<std::string,uint32_t> _port_indices;
209
210         /// Message send to/from UI via ports
211         struct UIMessage {
212                 uint32_t index;
213                 uint32_t protocol;
214                 uint32_t size;
215         };
216
217         bool write_to_ui(uint32_t       index,
218                          uint32_t       protocol,
219                          uint32_t       size,
220                          const uint8_t* body);
221
222         bool write_to(RingBuffer<uint8_t>* dest,
223                       uint32_t             index,
224                       uint32_t             protocol,
225                       uint32_t             size,
226                       const uint8_t*       body);
227
228         // Created on demand so the space is only consumed if necessary
229         RingBuffer<uint8_t>* _to_ui;
230         RingBuffer<uint8_t>* _from_ui;
231
232         typedef struct {
233                 const void* (*extension_data) (const char* uri);
234         } LV2_DataAccess;
235
236         LV2_DataAccess _data_access_extension_data;
237         LV2_Feature    _data_access_feature;
238         LV2_Feature    _instance_access_feature;
239         LV2_Feature    _make_path_feature;
240         LV2_Feature    _log_feature;
241         LV2_Feature    _work_schedule_feature;
242         LV2_Feature    _options_feature;
243         LV2_Feature    _def_state_feature;
244
245         // Options passed to plugin
246         int32_t _block_length;
247         int32_t _seq_size;
248
249         mutable unsigned _state_version;
250
251         bool _was_activated;
252         bool _has_state_interface;
253
254         const std::string plugin_dir () const;
255         const std::string scratch_dir () const;
256         const std::string file_dir () const;
257         const std::string state_dir (unsigned num) const;
258
259         static char* lv2_state_make_path (void*       host_data,
260                                           const char* path);
261
262         void init (const void* c_plugin, framecnt_t rate);
263         void allocate_atom_event_buffers ();
264         void run (pframes_t nsamples);
265
266         void latency_compute_run ();
267         std::string do_save_preset (std::string);
268         void do_remove_preset (std::string);
269         void find_presets ();
270         void add_state (XMLNode *) const;
271 };
272
273
274 class LV2PluginInfo : public PluginInfo {
275 public:
276         LV2PluginInfo (const void* c_plugin);
277         ~LV2PluginInfo ();
278
279         static PluginInfoList* discover ();
280
281         PluginPtr load (Session& session);
282
283         const void* _c_plugin;
284 };
285
286 typedef boost::shared_ptr<LV2PluginInfo> LV2PluginInfoPtr;
287
288 } // namespace ARDOUR
289
290 #endif /* __ardour_lv2_plugin_h__ */