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