fix VST plugin crash (from 35a9c63)
[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
29 #include "ardour/vst_plugin.h"
30 #include "ardour/vestige/aeffectx.h"
31 #include "ardour/session.h"
32 #include "ardour/vst_types.h"
33 #include "ardour/filesystem_paths.h"
34 #include "ardour/audio_buffer.h"
35
36 #include "i18n.h"
37
38 #ifndef VST_IN_PLACE
39 #define MAX_VST_BUFFERSIZE 8192
40 #endif
41
42 using namespace std;
43 using namespace PBD;
44 using namespace ARDOUR;
45
46 VSTPlugin::VSTPlugin (AudioEngine& engine, Session& session, VSTHandle* handle)
47         : Plugin (engine, session)
48         , _handle (handle)
49         , _state (0)
50         , _plugin (0)
51 #ifndef VST_IN_PLACE
52         , _audio_out_buf (0)
53         , _audio_out_buf_cnt (0)
54 #endif
55 {
56
57 }
58
59 VSTPlugin::~VSTPlugin ()
60 {
61 #ifndef VST_IN_PLACE
62         for (uint32_t i = 0; i < _audio_out_buf_cnt; ++i) {
63                 free (_audio_out_buf[i]);
64         }
65         free (_audio_out_buf);
66 #endif
67 }
68
69 void
70 VSTPlugin::set_plugin (AEffect* e)
71 {
72         _plugin = e;
73         _plugin->user = this;
74
75         /* set rate and blocksize */
76
77         _plugin->dispatcher (_plugin, effSetSampleRate, 0, 0, NULL, (float) _session.frame_rate());
78         _plugin->dispatcher (_plugin, effSetBlockSize, 0, _session.get_block_size(), NULL, 0.0f);
79 #ifndef VST_IN_PLACE
80         if (_audio_out_buf_cnt != _plugin->numOutputs) {
81                 for (uint32_t i = 0; i < _audio_out_buf_cnt; ++i) {
82                         free (_audio_out_buf[i]);
83                 }
84                 free (_audio_out_buf);
85                 _audio_out_buf_cnt = _plugin->numOutputs;
86                 _audio_out_buf = (float**) malloc (_audio_out_buf_cnt * sizeof(float*));
87                 /* think.  Should this be part of the BufferSet ?
88                  * in which case it would be dynamically sized, but then again
89                  * every BufferSet would have N[?] extra VST audio buffers.
90                  */
91                 for (uint32_t i = 0; i < _audio_out_buf_cnt; ++i) {
92                         _audio_out_buf[i] = (float*) malloc (MAX_VST_BUFFERSIZE * sizeof(float));
93                 }
94         }
95 #endif
96 }
97
98 void
99 VSTPlugin::deactivate ()
100 {
101         _plugin->dispatcher (_plugin, effMainsChanged, 0, 0, NULL, 0.0f);
102 }
103
104 void
105 VSTPlugin::activate ()
106 {
107         _plugin->dispatcher (_plugin, effMainsChanged, 0, 1, NULL, 0.0f);
108 }
109
110 int
111 VSTPlugin::set_block_size (pframes_t nframes)
112 {
113         deactivate ();
114         _plugin->dispatcher (_plugin, effSetBlockSize, 0, nframes, NULL, 0.0f);
115         activate ();
116         return 0;
117 }
118
119 float
120 VSTPlugin::default_value (uint32_t)
121 {
122         return 0;
123 }
124
125 float
126 VSTPlugin::get_parameter (uint32_t which) const
127 {
128         return _plugin->getParameter (_plugin, which);
129 }
130
131 void
132 VSTPlugin::set_parameter (uint32_t which, float newval)
133 {
134         float oldval = get_parameter (which);
135
136         if (PBD::floateq (oldval, newval, 1)) {
137                 return;
138         }
139
140         _plugin->setParameter (_plugin, which, newval);
141
142         float curval = get_parameter (which);
143
144         if (!PBD::floateq (curval, oldval, 1)) {
145                 /* value has changed, follow rest of the notification path */
146                 Plugin::set_parameter (which, newval);
147         }
148 }
149
150 uint32_t
151 VSTPlugin::nth_parameter (uint32_t n, bool& ok) const
152 {
153         ok = true;
154         return n;
155 }
156
157 /** Get VST chunk as base64-encoded data.
158  *  @param single true for single program, false for all programs.
159  *  @return 0-terminated base64-encoded data; must be passed to g_free () by caller.
160  */
161 gchar *
162 VSTPlugin::get_chunk (bool single) const
163 {
164         guchar* data;
165         int32_t data_size = _plugin->dispatcher (_plugin, 23 /* effGetChunk */, single ? 1 : 0, 0, &data, 0);
166         if (data_size == 0) {
167                 return 0;
168         }
169
170         return g_base64_encode (data, data_size);
171 }
172
173 /** Set VST chunk from base64-encoded data.
174  *  @param 0-terminated base64-encoded data.
175  *  @param single true for single program, false for all programs.
176  *  @return 0 on success, non-0 on failure
177  */
178 int
179 VSTPlugin::set_chunk (gchar const * data, bool single)
180 {
181         gsize size = 0;
182         guchar* raw_data = g_base64_decode (data, &size);
183         int const r = _plugin->dispatcher (_plugin, 24 /* effSetChunk */, single ? 1 : 0, size, raw_data, 0);
184         g_free (raw_data);
185         return r;
186 }
187
188 void
189 VSTPlugin::add_state (XMLNode* root) const
190 {
191         LocaleGuard lg (X_("C"));
192
193         if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
194
195                 gchar* data = get_chunk (false);
196                 if (data == 0) {
197                         return;
198                 }
199
200                 /* store information */
201
202                 XMLNode* chunk_node = new XMLNode (X_("chunk"));
203
204                 chunk_node->add_content (data);
205                 g_free (data);
206
207                 root->add_child_nocopy (*chunk_node);
208
209         } else {
210
211                 XMLNode* parameters = new XMLNode ("parameters");
212
213                 for (int32_t n = 0; n < _plugin->numParams; ++n) {
214                         char index[64];
215                         char val[32];
216                         snprintf (index, sizeof (index), "param-%d", n);
217                         snprintf (val, sizeof (val), "%.12g", _plugin->getParameter (_plugin, n));
218                         parameters->add_property (index, val);
219                 }
220
221                 root->add_child_nocopy (*parameters);
222         }
223 }
224
225 int
226 VSTPlugin::set_state (const XMLNode& node, int version)
227 {
228         LocaleGuard lg (X_("C"));
229         int ret = -1;
230
231         if (node.name() != state_node_name()) {
232                 error << _("Bad node sent to VSTPlugin::set_state") << endmsg;
233                 return 0;
234         }
235
236 #ifndef NO_PLUGIN_STATE
237         XMLNode* child;
238
239         if ((child = find_named_node (node, X_("chunk"))) != 0) {
240
241                 XMLPropertyList::const_iterator i;
242                 XMLNodeList::const_iterator n;
243
244                 for (n = child->children ().begin (); n != child->children ().end (); ++n) {
245                         if ((*n)->is_content ()) {
246                                 /* XXX: this may be dubious for the same reasons that we delay
247                                          execution of load_preset.
248                                          */
249                                 ret = set_chunk ((*n)->content().c_str(), false);
250                         }
251                 }
252
253         } else if ((child = find_named_node (node, X_("parameters"))) != 0) {
254
255                 XMLPropertyList::const_iterator i;
256
257                 for (i = child->properties().begin(); i != child->properties().end(); ++i) {
258                         int32_t param;
259                         float val;
260
261                         sscanf ((*i)->name().c_str(), "param-%d", &param);
262                         sscanf ((*i)->value().c_str(), "%f", &val);
263
264                         _plugin->setParameter (_plugin, param, val);
265                 }
266
267                 ret = 0;
268
269         }
270 #endif
271
272         Plugin::set_state (node, version);
273         return ret;
274 }
275
276
277 int
278 VSTPlugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& desc) const
279 {
280         VstParameterProperties prop;
281
282         memset (&prop, 0, sizeof (VstParameterProperties));
283         desc.min_unbound = false;
284         desc.max_unbound = false;
285         prop.flags = 0;
286
287         if (_plugin->dispatcher (_plugin, effGetParameterProperties, which, 0, &prop, 0)) {
288
289                 /* i have yet to find or hear of a VST plugin that uses this */
290                 /* RG: faust2vsti does use this :) */
291
292                 if (prop.flags & kVstParameterUsesIntegerMinMax) {
293                         desc.lower = prop.minInteger;
294                         desc.upper = prop.maxInteger;
295                 } else {
296                         desc.lower = 0;
297                         desc.upper = 1.0;
298                 }
299
300                 if (prop.flags & kVstParameterUsesIntStep) {
301
302                         desc.step = prop.stepInteger;
303                         desc.smallstep = prop.stepInteger;
304                         desc.largestep = prop.stepInteger;
305
306                 } else if (prop.flags & kVstParameterUsesFloatStep) {
307
308                         desc.step = prop.stepFloat;
309                         desc.smallstep = prop.smallStepFloat;
310                         desc.largestep = prop.largeStepFloat;
311
312                 } else {
313
314                         float range = desc.upper - desc.lower;
315
316                         desc.step = range / 100.0f;
317                         desc.smallstep = desc.step / 2.0f;
318                         desc.largestep = desc.step * 10.0f;
319                 }
320
321                 if (strlen(prop.label) == 0) {
322                         _plugin->dispatcher (_plugin, effGetParamName, which, 0, prop.label, 0);
323                 }
324
325                 desc.toggled = prop.flags & kVstParameterIsSwitch;
326                 desc.logarithmic = false;
327                 desc.sr_dependent = false;
328                 desc.label = prop.label;
329
330         } else {
331
332                 /* old style */
333
334                 char label[64];
335                 /* some VST plugins expect this buffer to be zero-filled */
336                 memset (label, 0, sizeof (label));
337
338                 _plugin->dispatcher (_plugin, effGetParamName, which, 0, label, 0);
339
340                 desc.label = label;
341                 desc.integer_step = false;
342                 desc.lower = 0.0f;
343                 desc.upper = 1.0f;
344                 desc.step = 0.01f;
345                 desc.smallstep = 0.005f;
346                 desc.largestep = 0.1f;
347                 desc.toggled = false;
348                 desc.logarithmic = false;
349                 desc.sr_dependent = false;
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* 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* index = (*j)->property (X_("index"));
443                                                 XMLProperty* 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         return *((int32_t *) (((char *) &_plugin->flags) + 12)); /* initialDelay */
544 }
545
546 set<Evoral::Parameter>
547 VSTPlugin::automatable () const
548 {
549         set<Evoral::Parameter> ret;
550
551         for (uint32_t i = 0; i < parameter_count(); ++i) {
552                 ret.insert (ret.end(), Evoral::Parameter(PluginAutomation, 0, i));
553         }
554
555         return ret;
556 }
557
558 int
559 VSTPlugin::connect_and_run (BufferSet& bufs,
560                 ChanMapping in_map, ChanMapping out_map,
561                 pframes_t nframes, framecnt_t offset)
562 {
563         Plugin::connect_and_run (bufs, in_map, out_map, nframes, offset);
564
565         ChanCount bufs_count;
566         bufs_count.set(DataType::AUDIO, 1);
567         bufs_count.set(DataType::MIDI, 1);
568         _midi_out_buf = 0;
569
570         BufferSet& silent_bufs  = _session.get_silent_buffers(bufs_count);
571         BufferSet& scratch_bufs = _session.get_scratch_buffers(bufs_count);
572
573         /* VC++ doesn't support the C99 extension that allows
574
575            typeName foo[variableDefiningSize];
576
577            Use alloca instead of dynamic array (rather than std::vector which
578            allocs on the heap) because this is realtime code.
579         */
580
581         float** ins = (float**)alloca(_plugin->numInputs*sizeof(float*));
582         float** outs = (float**)alloca(_plugin->numOutputs*sizeof(float*));
583
584         int32_t i;
585
586         uint32_t in_index = 0;
587         for (i = 0; i < (int32_t) _plugin->numInputs; ++i) {
588                 uint32_t  index;
589                 bool      valid = false;
590                 index = in_map.get(DataType::AUDIO, in_index++, &valid);
591                 ins[i] = (valid)
592                                         ? bufs.get_audio(index).data(offset)
593                                         : silent_bufs.get_audio(0).data(offset);
594         }
595
596 #ifndef VST_IN_PLACE
597         assert (nframes <= MAX_VST_BUFFERSIZE);
598         assert (_plugin->numOutputs <= _audio_out_buf_cnt);
599 #endif
600
601         uint32_t out_index = 0;
602         for (i = 0; i < (int32_t) _plugin->numOutputs; ++i) {
603                 uint32_t  index;
604                 bool      valid = false;
605                 index = out_map.get(DataType::AUDIO, out_index++, &valid);
606 #ifdef VST_IN_PLACE
607                 outs[i] = (valid)
608                                         ? bufs.get_audio(index).data(offset)
609                                         : scratch_bufs.get_audio(0).data(offset);
610 #else
611                 if (!valid) {
612                         outs[i] = scratch_bufs.get_audio(0).data(offset);
613                 } else {
614                         outs[i] = _audio_out_buf[i];
615                 }
616 #endif
617         }
618
619         if (bufs.count().n_midi() > 0) {
620                 VstEvents* v = 0;
621                 bool valid = false;
622                 const uint32_t buf_index_in = in_map.get(DataType::MIDI, 0, &valid);
623                 if (valid) {
624                         v = bufs.get_vst_midi (buf_index_in);
625                 }
626                 valid = false;
627                 const uint32_t buf_index_out = out_map.get(DataType::MIDI, 0, &valid);
628                 if (valid) {
629                         _midi_out_buf = &bufs.get_midi(buf_index_out);
630                         _midi_out_buf->silence(0, 0);
631                 } else {
632                         _midi_out_buf = 0;
633                 }
634                 if (v) {
635                         _plugin->dispatcher (_plugin, effProcessEvents, 0, 0, v, 0);
636                 }
637         }
638
639         /* we already know it can support processReplacing */
640         _plugin->processReplacing (_plugin, &ins[0], &outs[0], nframes);
641         _midi_out_buf = 0;
642
643 #ifndef VST_IN_PLACE
644         out_index = 0;
645         for (i = 0; i < (int32_t) _plugin->numOutputs; ++i) {
646                 uint32_t  index;
647                 bool      valid = false;
648                 index = out_map.get(DataType::AUDIO, out_index++, &valid);
649                 if (!valid) {
650                         continue;
651                 }
652                 memcpy (bufs.get_audio(index).data(offset), outs[i], nframes * sizeof(float));
653         }
654 #endif
655         return 0;
656 }
657
658 string
659 VSTPlugin::unique_id () const
660 {
661         char buf[32];
662
663         snprintf (buf, sizeof (buf), "%d", _plugin->uniqueID);
664
665         return string (buf);
666 }
667
668
669 const char *
670 VSTPlugin::name () const
671 {
672         if (!_info->name.empty ()) {
673                 return _info->name.c_str();
674         }
675         return _handle->name;
676 }
677
678 const char *
679 VSTPlugin::maker () const
680 {
681         return _info->creator.c_str();
682 }
683
684 const char *
685 VSTPlugin::label () const
686 {
687         return _handle->name;
688 }
689
690 uint32_t
691 VSTPlugin::parameter_count () const
692 {
693         return _plugin->numParams;
694 }
695
696 bool
697 VSTPlugin::has_editor () const
698 {
699         return _plugin->flags & effFlagsHasEditor;
700 }
701
702 void
703 VSTPlugin::print_parameter (uint32_t param, char *buf, uint32_t /*len*/) const
704 {
705         char *first_nonws;
706
707         _plugin->dispatcher (_plugin, 7 /* effGetParamDisplay */, param, 0, buf, 0);
708
709         if (buf[0] == '\0') {
710                 return;
711         }
712
713         first_nonws = buf;
714         while (*first_nonws && isspace (*first_nonws)) {
715                 first_nonws++;
716         }
717
718         if (*first_nonws == '\0') {
719                 return;
720         }
721
722         memmove (buf, first_nonws, strlen (buf) - (first_nonws - buf) + 1);
723 }
724
725 void
726 VSTPlugin::find_presets ()
727 {
728         /* Built-in presets */
729
730         int const vst_version = _plugin->dispatcher (_plugin, effGetVstVersion, 0, 0, NULL, 0);
731         for (int i = 0; i < _plugin->numPrograms; ++i) {
732                 PresetRecord r (string_compose (X_("VST:%1:%2"), unique_id (), i), "", -1, false);
733
734                 if (vst_version >= 2) {
735                         char buf[256];
736                         if (_plugin->dispatcher (_plugin, 29, i, 0, buf, 0) == 1) {
737                                 r.label = buf;
738                         } else {
739                                 r.label = string_compose (_("Preset %1"), i);
740                         }
741                 } else {
742                         r.label = string_compose (_("Preset %1"), i);
743                 }
744
745                 _presets.insert (make_pair (r.uri, r));
746         }
747
748         /* User presets from our XML file */
749
750         boost::shared_ptr<XMLTree> t (presets_tree ());
751
752         if (t) {
753                 XMLNode* root = t->root ();
754                 for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
755
756                         XMLProperty* uri = (*i)->property (X_("uri"));
757                         XMLProperty* label = (*i)->property (X_("label"));
758
759                         assert (uri);
760                         assert (label);
761
762                         PresetRecord r (uri->value(), label->value(), -1, true);
763                         _presets.insert (make_pair (r.uri, r));
764                 }
765         }
766
767 }
768
769 /** @return XMLTree with our user presets; could be a new one if no existing
770  *  one was found, or 0 if one was present but badly-formatted.
771  */
772 XMLTree *
773 VSTPlugin::presets_tree () const
774 {
775         XMLTree* t = new XMLTree;
776
777         std::string p = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
778
779         if (!Glib::file_test (p, Glib::FILE_TEST_IS_DIR)) {
780                 if (g_mkdir_with_parents (p.c_str(), 0755) != 0) {
781                         error << _("Unable to make VST presets directory") << endmsg;
782                 };
783         }
784
785         p = Glib::build_filename (p, presets_file ());
786
787         if (!Glib::file_test (p, Glib::FILE_TEST_EXISTS)) {
788                 t->set_root (new XMLNode (X_("VSTPresets")));
789                 return t;
790         }
791
792         t->set_filename (p);
793         if (!t->read ()) {
794                 delete t;
795                 return 0;
796         }
797
798         return t;
799 }
800
801 /** @return Index of the first user preset in our lists */
802 int
803 VSTPlugin::first_user_preset_index () const
804 {
805         return _plugin->numPrograms;
806 }
807
808 string
809 VSTPlugin::presets_file () const
810 {
811         return string_compose ("vst-%1", unique_id ());
812 }
813