Merge branch 'noppc' of https://github.com/mojofunk/ardour into cairocanvas
[ardour.git] / libs / ardour / vst_plugin.cc
1 /*
2     Copyright (C) 2010 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 #include <glib.h>
21 #include <glib/gstdio.h>
22
23 #include <glibmm/fileutils.h>
24 #include <glibmm/miscutils.h>
25
26 #include "pbd/floating.h"
27 #include "pbd/locale_guard.h"
28 #include "pbd/pathscanner.h"
29
30 #include "ardour/vst_plugin.h"
31 #include "ardour/vestige/aeffectx.h"
32 #include "ardour/session.h"
33 #include "ardour/vst_types.h"
34 #include "ardour/filesystem_paths.h"
35 #include "ardour/audio_buffer.h"
36
37 #include "i18n.h"
38
39 using namespace std;
40 using namespace PBD;
41 using namespace ARDOUR;
42
43 VSTPlugin::VSTPlugin (AudioEngine& engine, Session& session, VSTHandle* handle)
44         : Plugin (engine, session)
45         , _handle (handle)
46         , _state (0)
47         , _plugin (0)
48 {
49
50 }
51
52 VSTPlugin::~VSTPlugin ()
53 {
54
55 }
56
57 void
58 VSTPlugin::set_plugin (AEffect* e)
59 {
60         _plugin = e;
61         _plugin->user = this;
62
63         /* set rate and blocksize */
64
65         _plugin->dispatcher (_plugin, effSetSampleRate, 0, 0, NULL, (float) _session.frame_rate());
66         _plugin->dispatcher (_plugin, effSetBlockSize, 0, _session.get_block_size(), NULL, 0.0f);
67 }
68
69 void
70 VSTPlugin::deactivate ()
71 {
72         _plugin->dispatcher (_plugin, effMainsChanged, 0, 0, NULL, 0.0f);
73 }
74
75 void
76 VSTPlugin::activate ()
77 {
78         _plugin->dispatcher (_plugin, effMainsChanged, 0, 1, NULL, 0.0f);
79 }
80
81 int
82 VSTPlugin::set_block_size (pframes_t nframes)
83 {
84         deactivate ();
85         _plugin->dispatcher (_plugin, effSetBlockSize, 0, nframes, NULL, 0.0f);
86         activate ();
87         return 0;
88 }
89
90 float
91 VSTPlugin::default_value (uint32_t)
92 {
93         return 0;
94 }
95
96 float
97 VSTPlugin::get_parameter (uint32_t which) const
98 {
99         return _plugin->getParameter (_plugin, which);
100 }
101
102 void
103 VSTPlugin::set_parameter (uint32_t which, float newval)
104 {
105         float oldval = get_parameter (which);
106
107         if (PBD::floateq (oldval, newval, 1)) {
108                 return;
109         }
110
111         _plugin->setParameter (_plugin, which, newval);
112
113         float curval = get_parameter (which);
114
115         if (!PBD::floateq (curval, oldval, 1)) {
116                 /* value has changed, follow rest of the notification path */
117                 Plugin::set_parameter (which, newval);
118         }
119 }
120
121 uint32_t
122 VSTPlugin::nth_parameter (uint32_t n, bool& ok) const
123 {
124         ok = true;
125         return n;
126 }
127
128 /** Get VST chunk as base64-encoded data.
129  *  @param single true for single program, false for all programs.
130  *  @return 0-terminated base64-encoded data; must be passed to g_free () by caller.
131  */
132 gchar *
133 VSTPlugin::get_chunk (bool single) const
134 {
135         guchar* data;
136         int32_t data_size = _plugin->dispatcher (_plugin, 23 /* effGetChunk */, single ? 1 : 0, 0, &data, 0);
137         if (data_size == 0) {
138                 return 0;
139         }
140
141         return g_base64_encode (data, data_size);
142 }
143
144 /** Set VST chunk from base64-encoded data.
145  *  @param 0-terminated base64-encoded data.
146  *  @param single true for single program, false for all programs.
147  *  @return 0 on success, non-0 on failure
148  */
149 int
150 VSTPlugin::set_chunk (gchar const * data, bool single)
151 {
152         gsize size = 0;
153         guchar* raw_data = g_base64_decode (data, &size);
154         int const r = _plugin->dispatcher (_plugin, 24 /* effSetChunk */, single ? 1 : 0, size, raw_data, 0);
155         g_free (raw_data);
156         return r;
157 }
158
159 void
160 VSTPlugin::add_state (XMLNode* root) const
161 {
162         LocaleGuard lg (X_("POSIX"));
163
164         if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
165
166                 gchar* data = get_chunk (false);
167                 if (data == 0) {
168                         return;
169                 }
170
171                 /* store information */
172
173                 XMLNode* chunk_node = new XMLNode (X_("chunk"));
174
175                 chunk_node->add_content (data);
176                 g_free (data);
177
178                 root->add_child_nocopy (*chunk_node);
179
180         } else {
181
182                 XMLNode* parameters = new XMLNode ("parameters");
183
184                 for (int32_t n = 0; n < _plugin->numParams; ++n) {
185                         char index[64];
186                         char val[32];
187                         snprintf (index, sizeof (index), "param-%d", n);
188                         snprintf (val, sizeof (val), "%.12g", _plugin->getParameter (_plugin, n));
189                         parameters->add_property (index, val);
190                 }
191
192                 root->add_child_nocopy (*parameters);
193         }
194 }
195
196 int
197 VSTPlugin::set_state (const XMLNode& node, int version)
198 {
199         LocaleGuard lg (X_("POSIX"));
200         int ret = -1;
201
202         if (node.name() != state_node_name()) {
203                 error << _("Bad node sent to VSTPlugin::set_state") << endmsg;
204                 return 0;
205         }
206
207 #ifndef NO_PLUGIN_STATE
208         XMLNode* child;
209
210         if ((child = find_named_node (node, X_("chunk"))) != 0) {
211
212                 XMLPropertyList::const_iterator i;
213                 XMLNodeList::const_iterator n;
214
215                 for (n = child->children ().begin (); n != child->children ().end (); ++n) {
216                         if ((*n)->is_content ()) {
217                                 /* XXX: this may be dubious for the same reasons that we delay
218                                          execution of load_preset.
219                                          */
220                                 ret = set_chunk ((*n)->content().c_str(), false);
221                         }
222                 }
223
224         } else if ((child = find_named_node (node, X_("parameters"))) != 0) {
225
226                 XMLPropertyList::const_iterator i;
227
228                 for (i = child->properties().begin(); i != child->properties().end(); ++i) {
229                         int32_t param;
230                         float val;
231
232                         sscanf ((*i)->name().c_str(), "param-%d", &param);
233                         sscanf ((*i)->value().c_str(), "%f", &val);
234
235                         _plugin->setParameter (_plugin, param, val);
236                 }
237
238                 ret = 0;
239
240         }
241 #endif
242
243         Plugin::set_state (node, version);
244         return ret;
245 }
246
247
248 int
249 VSTPlugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& desc) const
250 {
251         VstParameterProperties prop;
252
253         memset (&prop, 0, sizeof (VstParameterProperties));
254         desc.min_unbound = false;
255         desc.max_unbound = false;
256         prop.flags = 0;
257
258         if (_plugin->dispatcher (_plugin, effGetParameterProperties, which, 0, &prop, 0)) {
259
260                 /* i have yet to find or hear of a VST plugin that uses this */
261                 /* RG: faust2vsti does use this :) */
262
263                 if (prop.flags & kVstParameterUsesIntegerMinMax) {
264                         desc.lower = prop.minInteger;
265                         desc.upper = prop.maxInteger;
266                 } else {
267                         desc.lower = 0;
268                         desc.upper = 1.0;
269                 }
270
271                 if (prop.flags & kVstParameterUsesIntStep) {
272
273                         desc.step = prop.stepInteger;
274                         desc.smallstep = prop.stepInteger;
275                         desc.largestep = prop.stepInteger;
276
277                 } else if (prop.flags & kVstParameterUsesFloatStep) {
278
279                         desc.step = prop.stepFloat;
280                         desc.smallstep = prop.smallStepFloat;
281                         desc.largestep = prop.largeStepFloat;
282
283                 } else {
284
285                         float range = desc.upper - desc.lower;
286
287                         desc.step = range / 100.0f;
288                         desc.smallstep = desc.step / 2.0f;
289                         desc.largestep = desc.step * 10.0f;
290                 }
291
292                 if (strlen(prop.label) == 0) {
293                         _plugin->dispatcher (_plugin, effGetParamName, which, 0, prop.label, 0);
294                 }
295
296                 desc.toggled = prop.flags & kVstParameterIsSwitch;
297                 desc.logarithmic = false;
298                 desc.sr_dependent = false;
299                 desc.label = prop.label;
300
301         } else {
302
303                 /* old style */
304
305                 char label[64];
306                 /* some VST plugins expect this buffer to be zero-filled */
307                 memset (label, 0, sizeof (label));
308
309                 _plugin->dispatcher (_plugin, effGetParamName, which, 0, label, 0);
310
311                 desc.label = label;
312                 desc.integer_step = false;
313                 desc.lower = 0.0f;
314                 desc.upper = 1.0f;
315                 desc.step = 0.01f;
316                 desc.smallstep = 0.005f;
317                 desc.largestep = 0.1f;
318                 desc.toggled = false;
319                 desc.logarithmic = false;
320                 desc.sr_dependent = false;
321         }
322
323         return 0;
324 }
325
326 bool
327 VSTPlugin::load_preset (PresetRecord r)
328 {
329         bool s;
330
331         if (r.user) {
332                 s = load_user_preset (r);
333         } else {
334                 s = load_plugin_preset (r);
335         }
336
337         if (s) {
338                 Plugin::load_preset (r);
339         }
340
341         return s;
342 }
343
344 bool
345 VSTPlugin::load_plugin_preset (PresetRecord r)
346 {
347         /* This is a plugin-provided preset.
348            We can't dispatch directly here; too many plugins expects only one GUI thread.
349         */
350
351         /* Extract the index of this preset from the URI */
352         int id;
353         int index;
354 #ifndef NDEBUG
355         int const p = sscanf (r.uri.c_str(), "VST:%d:%d", &id, &index);
356         assert (p == 2);
357 #else
358         sscanf (r.uri.c_str(), "VST:%d:%d", &id, &index);
359 #endif
360         _state->want_program = index;
361         return true;
362 }
363
364 bool
365 VSTPlugin::load_user_preset (PresetRecord r)
366 {
367         /* This is a user preset; we load it, and this code also knows about the
368            non-direct-dispatch thing.
369         */
370
371         boost::shared_ptr<XMLTree> t (presets_tree ());
372         if (t == 0) {
373                 return false;
374         }
375
376         XMLNode* root = t->root ();
377
378         for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
379                 XMLProperty* label = (*i)->property (X_("label"));
380
381                 assert (label);
382
383                 if (label->value() != r.label) {
384                         continue;
385                 }
386
387                 if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
388
389                         /* Load a user preset chunk from our XML file and send it via a circuitous route to the plugin */
390
391                         if (_state->wanted_chunk) {
392                                 g_free (_state->wanted_chunk);
393                         }
394
395                         for (XMLNodeList::const_iterator j = (*i)->children().begin(); j != (*i)->children().end(); ++j) {
396                                 if ((*j)->is_content ()) {
397                                         /* we can't dispatch directly here; too many plugins expect only one GUI thread */
398                                         gsize size = 0;
399                                         guchar* raw_data = g_base64_decode ((*j)->content().c_str(), &size);
400                                         _state->wanted_chunk = raw_data;
401                                         _state->wanted_chunk_size = size;
402                                         _state->want_chunk = 1;
403                                         return true;
404                                 }
405                         }
406
407                         return false;
408
409                 } else {
410
411                         for (XMLNodeList::const_iterator j = (*i)->children().begin(); j != (*i)->children().end(); ++j) {
412                                 if ((*j)->name() == X_("Parameter")) {
413                                                 XMLProperty* index = (*j)->property (X_("index"));
414                                                 XMLProperty* value = (*j)->property (X_("value"));
415
416                                                 assert (index);
417                                                 assert (value);
418
419                                                 set_parameter (atoi (index->value().c_str()), atof (value->value().c_str ()));
420                                 }
421                         }
422                         return true;
423                 }
424         }
425         return false;
426 }
427
428 string
429 VSTPlugin::do_save_preset (string name)
430 {
431         boost::shared_ptr<XMLTree> t (presets_tree ());
432         if (t == 0) {
433                 return "";
434         }
435
436         XMLNode* p = 0;
437         /* XXX: use of _presets.size() + 1 for the unique ID here is dubious at best */
438         string const uri = string_compose (X_("VST:%1:%2"), unique_id (), _presets.size() + 1);
439
440         if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
441
442                 p = new XMLNode (X_("ChunkPreset"));
443                 p->add_property (X_("uri"), uri);
444                 p->add_property (X_("label"), name);
445                 gchar* data = get_chunk (true);
446                 p->add_content (string (data));
447                 g_free (data);
448
449         } else {
450
451                 p = new XMLNode (X_("Preset"));
452                 p->add_property (X_("uri"), uri);
453                 p->add_property (X_("label"), name);
454
455                 for (uint32_t i = 0; i < parameter_count(); ++i) {
456                         if (parameter_is_input (i)) {
457                                 XMLNode* c = new XMLNode (X_("Parameter"));
458                                 c->add_property (X_("index"), string_compose ("%1", i));
459                                 c->add_property (X_("value"), string_compose ("%1", get_parameter (i)));
460                                 p->add_child_nocopy (*c);
461                         }
462                 }
463         }
464
465         t->root()->add_child_nocopy (*p);
466
467         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
468         f = Glib::build_filename (f, presets_file ());
469
470         t->write (f);
471         return uri;
472 }
473
474 void
475 VSTPlugin::do_remove_preset (string name)
476 {
477         boost::shared_ptr<XMLTree> t (presets_tree ());
478         if (t == 0) {
479                 return;
480         }
481
482         t->root()->remove_nodes_and_delete (X_("label"), name);
483
484         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
485         f = Glib::build_filename (f, presets_file ());
486
487         t->write (f);
488 }
489
490 string
491 VSTPlugin::describe_parameter (Evoral::Parameter param)
492 {
493         char name[64];
494         memset (name, 0, sizeof (name));
495
496         /* some VST plugins expect this buffer to be zero-filled */
497
498         _plugin->dispatcher (_plugin, effGetParamName, param.id(), 0, name, 0);
499
500         if (name[0] == '\0') {
501                 strcpy (name, _("Unknown"));
502         }
503
504         return name;
505 }
506
507 framecnt_t
508 VSTPlugin::signal_latency () const
509 {
510         if (_user_latency) {
511                 return _user_latency;
512         }
513
514         return *((int32_t *) (((char *) &_plugin->flags) + 12)); /* initialDelay */
515 }
516
517 set<Evoral::Parameter>
518 VSTPlugin::automatable () const
519 {
520         set<Evoral::Parameter> ret;
521
522         for (uint32_t i = 0; i < parameter_count(); ++i) {
523                 ret.insert (ret.end(), Evoral::Parameter(PluginAutomation, 0, i));
524         }
525
526         return ret;
527 }
528
529 int
530 VSTPlugin::connect_and_run (BufferSet& bufs,
531                 ChanMapping in_map, ChanMapping out_map,
532                 pframes_t nframes, framecnt_t offset)
533 {
534         Plugin::connect_and_run (bufs, in_map, out_map, nframes, offset);
535
536         ChanCount bufs_count;
537         bufs_count.set(DataType::AUDIO, 1);
538         bufs_count.set(DataType::MIDI, 1);
539         _midi_out_buf = 0;
540
541         BufferSet& silent_bufs  = _session.get_silent_buffers(bufs_count);
542         BufferSet& scratch_bufs = _session.get_scratch_buffers(bufs_count);
543
544         /* VC++ doesn't support the C99 extension that allows
545
546            typeName foo[variableDefiningSize];
547
548            Use alloca instead of dynamic array (rather than std::vector which
549            allocs on the heap) because this is realtime code.
550         */
551
552         float** ins = (float**)alloca(_plugin->numInputs*sizeof(float*));
553         float** outs = (float**)alloca(_plugin->numInputs*sizeof(float*));
554
555         int32_t i;
556
557         uint32_t in_index = 0;
558         for (i = 0; i < (int32_t) _plugin->numInputs; ++i) {
559                 uint32_t  index;
560                 bool      valid = false;
561                 index = in_map.get(DataType::AUDIO, in_index++, &valid);
562                 ins[i] = (valid)
563                                         ? bufs.get_audio(index).data(offset)
564                                         : silent_bufs.get_audio(0).data(offset);
565         }
566
567         uint32_t out_index = 0;
568         for (i = 0; i < (int32_t) _plugin->numOutputs; ++i) {
569                 uint32_t  index;
570                 bool      valid = false;
571                 index = out_map.get(DataType::AUDIO, out_index++, &valid);
572                 outs[i] = (valid)
573                                         ? bufs.get_audio(index).data(offset)
574                                         : scratch_bufs.get_audio(0).data(offset);
575         }
576
577         if (bufs.count().n_midi() > 0) {
578                 VstEvents* v = 0;
579                 bool valid = false;
580                 const uint32_t buf_index_in = in_map.get(DataType::MIDI, 0, &valid);
581                 if (valid) {
582                         v = bufs.get_vst_midi (buf_index_in);
583                 }
584                 valid = false;
585                 const uint32_t buf_index_out = out_map.get(DataType::MIDI, 0, &valid);
586                 if (valid) {
587                         _midi_out_buf = &bufs.get_midi(buf_index_out);
588                         _midi_out_buf->silence(0, 0);
589                 } else {
590                         _midi_out_buf = 0;
591                 }
592                 if (v) {
593                         _plugin->dispatcher (_plugin, effProcessEvents, 0, 0, v, 0);
594                 }
595         }
596
597         /* we already know it can support processReplacing */
598         _plugin->processReplacing (_plugin, &ins[0], &outs[0], nframes);
599         _midi_out_buf = 0;
600
601         return 0;
602 }
603
604 string
605 VSTPlugin::unique_id () const
606 {
607         char buf[32];
608
609         snprintf (buf, sizeof (buf), "%d", _plugin->uniqueID);
610
611         return string (buf);
612 }
613
614
615 const char *
616 VSTPlugin::name () const
617 {
618         return _handle->name;
619 }
620
621 const char *
622 VSTPlugin::maker () const
623 {
624         return _info->creator.c_str();
625 }
626
627 const char *
628 VSTPlugin::label () const
629 {
630         return _handle->name;
631 }
632
633 uint32_t
634 VSTPlugin::parameter_count () const
635 {
636         return _plugin->numParams;
637 }
638
639 bool
640 VSTPlugin::has_editor () const
641 {
642         return _plugin->flags & effFlagsHasEditor;
643 }
644
645 void
646 VSTPlugin::print_parameter (uint32_t param, char *buf, uint32_t /*len*/) const
647 {
648         char *first_nonws;
649
650         _plugin->dispatcher (_plugin, 7 /* effGetParamDisplay */, param, 0, buf, 0);
651
652         if (buf[0] == '\0') {
653                 return;
654         }
655
656         first_nonws = buf;
657         while (*first_nonws && isspace (*first_nonws)) {
658                 first_nonws++;
659         }
660
661         if (*first_nonws == '\0') {
662                 return;
663         }
664
665         memmove (buf, first_nonws, strlen (buf) - (first_nonws - buf) + 1);
666 }
667
668 void
669 VSTPlugin::find_presets ()
670 {
671         /* Built-in presets */
672
673         int const vst_version = _plugin->dispatcher (_plugin, effGetVstVersion, 0, 0, NULL, 0);
674         for (int i = 0; i < _plugin->numPrograms; ++i) {
675                 PresetRecord r (string_compose (X_("VST:%1:%2"), unique_id (), i), "", -1, false);
676
677                 if (vst_version >= 2) {
678                         char buf[256];
679                         if (_plugin->dispatcher (_plugin, 29, i, 0, buf, 0) == 1) {
680                                 r.label = buf;
681                         } else {
682                                 r.label = string_compose (_("Preset %1"), i);
683                         }
684                 } else {
685                         r.label = string_compose (_("Preset %1"), i);
686                 }
687
688                 _presets.insert (make_pair (r.uri, r));
689         }
690
691         /* User presets from our XML file */
692
693         boost::shared_ptr<XMLTree> t (presets_tree ());
694
695         if (t) {
696                 XMLNode* root = t->root ();
697                 for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
698
699                         XMLProperty* uri = (*i)->property (X_("uri"));
700                         XMLProperty* label = (*i)->property (X_("label"));
701
702                         assert (uri);
703                         assert (label);
704
705                         PresetRecord r (uri->value(), label->value(), -1, true);
706                         _presets.insert (make_pair (r.uri, r));
707                 }
708         }
709
710 }
711
712 /** @return XMLTree with our user presets; could be a new one if no existing
713  *  one was found, or 0 if one was present but badly-formatted.
714  */
715 XMLTree *
716 VSTPlugin::presets_tree () const
717 {
718         XMLTree* t = new XMLTree;
719
720         std::string p = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
721
722         if (!Glib::file_test (p, Glib::FILE_TEST_IS_DIR)) {
723                 if (g_mkdir_with_parents (p.c_str(), 0755) != 0) {
724                         error << _("Unable to make VST presets directory") << endmsg;
725                 };
726         }
727
728         p = Glib::build_filename (p, presets_file ());
729
730         if (!Glib::file_test (p, Glib::FILE_TEST_EXISTS)) {
731                 t->set_root (new XMLNode (X_("VSTPresets")));
732                 return t;
733         }
734
735         t->set_filename (p);
736         if (!t->read ()) {
737                 delete t;
738                 return 0;
739         }
740
741         return t;
742 }
743
744 /** @return Index of the first user preset in our lists */
745 int
746 VSTPlugin::first_user_preset_index () const
747 {
748         return _plugin->numPrograms;
749 }
750
751 string
752 VSTPlugin::presets_file () const
753 {
754         return string_compose ("vst-%1", unique_id ());
755 }
756