fix a -Wformat
[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         LoadPresetProgram (); /* EMIT SIGNAL */ /* used for macvst */
391         return true;
392 }
393
394 bool
395 VSTPlugin::load_user_preset (PresetRecord r)
396 {
397         /* This is a user preset; we load it, and this code also knows about the
398            non-direct-dispatch thing.
399         */
400
401         boost::shared_ptr<XMLTree> t (presets_tree ());
402         if (t == 0) {
403                 return false;
404         }
405
406         XMLNode* root = t->root ();
407
408         for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
409                 XMLProperty const * label = (*i)->property (X_("label"));
410
411                 assert (label);
412
413                 if (label->value() != r.label) {
414                         continue;
415                 }
416
417                 if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
418
419                         /* Load a user preset chunk from our XML file and send it via a circuitous route to the plugin */
420
421                         if (_state->wanted_chunk) {
422                                 g_free (_state->wanted_chunk);
423                         }
424
425                         for (XMLNodeList::const_iterator j = (*i)->children().begin(); j != (*i)->children().end(); ++j) {
426                                 if ((*j)->is_content ()) {
427                                         /* we can't dispatch directly here; too many plugins expect only one GUI thread */
428                                         gsize size = 0;
429                                         guchar* raw_data = g_base64_decode ((*j)->content().c_str(), &size);
430                                         _state->wanted_chunk = raw_data;
431                                         _state->wanted_chunk_size = size;
432                                         _state->want_chunk = 1;
433                                         LoadPresetProgram (); /* EMIT SIGNAL */ /* used for macvst */
434                                         return true;
435                                 }
436                         }
437
438                         return false;
439
440                 } else {
441
442                         for (XMLNodeList::const_iterator j = (*i)->children().begin(); j != (*i)->children().end(); ++j) {
443                                 if ((*j)->name() == X_("Parameter")) {
444                                                 XMLProperty const * index = (*j)->property (X_("index"));
445                                                 XMLProperty const * value = (*j)->property (X_("value"));
446
447                                                 assert (index);
448                                                 assert (value);
449
450                                                 set_parameter (atoi (index->value().c_str()), atof (value->value().c_str ()));
451                                 }
452                         }
453                         return true;
454                 }
455         }
456         return false;
457 }
458
459 #include "sha1.c"
460
461 string
462 VSTPlugin::do_save_preset (string name)
463 {
464         boost::shared_ptr<XMLTree> t (presets_tree ());
465         if (t == 0) {
466                 return "";
467         }
468
469         // prevent dups -- just in case
470         t->root()->remove_nodes_and_delete (X_("label"), name);
471
472         XMLNode* p = 0;
473
474         char tmp[32];
475         snprintf (tmp, 31, "%ld", _presets.size() + 1);
476         tmp[31] = 0;
477
478         char hash[41];
479         Sha1Digest s;
480         sha1_init (&s);
481         sha1_write (&s, (const uint8_t *) name.c_str(), name.size ());
482         sha1_write (&s, (const uint8_t *) tmp, strlen(tmp));
483         sha1_result_hash (&s, hash);
484
485         string const uri = string_compose (X_("VST:%1:x%2"), unique_id (), hash);
486
487         if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
488
489                 p = new XMLNode (X_("ChunkPreset"));
490                 p->add_property (X_("uri"), uri);
491                 p->add_property (X_("label"), name);
492                 gchar* data = get_chunk (true);
493                 p->add_content (string (data));
494                 g_free (data);
495
496         } else {
497
498                 p = new XMLNode (X_("Preset"));
499                 p->add_property (X_("uri"), uri);
500                 p->add_property (X_("label"), name);
501
502                 for (uint32_t i = 0; i < parameter_count(); ++i) {
503                         if (parameter_is_input (i)) {
504                                 XMLNode* c = new XMLNode (X_("Parameter"));
505                                 c->add_property (X_("index"), string_compose ("%1", i));
506                                 c->add_property (X_("value"), string_compose ("%1", get_parameter (i)));
507                                 p->add_child_nocopy (*c);
508                         }
509                 }
510         }
511
512         t->root()->add_child_nocopy (*p);
513
514         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
515         f = Glib::build_filename (f, presets_file ());
516
517         t->write (f);
518         return uri;
519 }
520
521 void
522 VSTPlugin::do_remove_preset (string name)
523 {
524         boost::shared_ptr<XMLTree> t (presets_tree ());
525         if (t == 0) {
526                 return;
527         }
528
529         t->root()->remove_nodes_and_delete (X_("label"), name);
530
531         std::string f = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
532         f = Glib::build_filename (f, presets_file ());
533
534         t->write (f);
535 }
536
537 string
538 VSTPlugin::describe_parameter (Evoral::Parameter param)
539 {
540         char name[64];
541         memset (name, 0, sizeof (name));
542
543         /* some VST plugins expect this buffer to be zero-filled */
544
545         _plugin->dispatcher (_plugin, effGetParamName, param.id(), 0, name, 0);
546
547         if (name[0] == '\0') {
548                 strcpy (name, _("Unknown"));
549         }
550
551         return name;
552 }
553
554 framecnt_t
555 VSTPlugin::signal_latency () const
556 {
557         if (_user_latency) {
558                 return _user_latency;
559         }
560
561 #if ( defined(__x86_64__) || defined(_M_X64) )
562         return *((int32_t *) (((char *) &_plugin->flags) + 24)); /* initialDelay */
563 #else
564         return *((int32_t *) (((char *) &_plugin->flags) + 12)); /* initialDelay */
565 #endif
566 }
567
568 set<Evoral::Parameter>
569 VSTPlugin::automatable () const
570 {
571         set<Evoral::Parameter> ret;
572
573         for (uint32_t i = 0; i < parameter_count(); ++i) {
574                 ret.insert (ret.end(), Evoral::Parameter(PluginAutomation, 0, i));
575         }
576
577         return ret;
578 }
579
580 int
581 VSTPlugin::connect_and_run (BufferSet& bufs,
582                 framepos_t start, framepos_t end, double speed,
583                 ChanMapping in_map, ChanMapping out_map,
584                 pframes_t nframes, framecnt_t offset)
585 {
586         Plugin::connect_and_run(bufs, start, end, speed, in_map, out_map, nframes, offset);
587
588         if (pthread_mutex_trylock (&_state->state_lock)) {
589                 /* by convention 'effSetChunk' should not be called while processing
590                  * http://www.reaper.fm/sdk/vst/vst_ext.php
591                  *
592                  * All VSTs don't use in-place, PluginInsert::connect_and_run()
593                  * does clear output buffers, so we can just return.
594                  */
595                 return 0;
596         }
597
598         _transport_frame = start;
599         _transport_speed = speed;
600
601         ChanCount bufs_count;
602         bufs_count.set(DataType::AUDIO, 1);
603         bufs_count.set(DataType::MIDI, 1);
604         _midi_out_buf = 0;
605
606         BufferSet& silent_bufs  = _session.get_silent_buffers(bufs_count);
607         BufferSet& scratch_bufs = _session.get_scratch_buffers(bufs_count);
608
609         /* VC++ doesn't support the C99 extension that allows
610
611            typeName foo[variableDefiningSize];
612
613            Use alloca instead of dynamic array (rather than std::vector which
614            allocs on the heap) because this is realtime code.
615         */
616
617         float** ins = (float**)alloca(_plugin->numInputs*sizeof(float*));
618         float** outs = (float**)alloca(_plugin->numOutputs*sizeof(float*));
619
620         int32_t i;
621
622         uint32_t in_index = 0;
623         for (i = 0; i < (int32_t) _plugin->numInputs; ++i) {
624                 uint32_t  index;
625                 bool      valid = false;
626                 index = in_map.get(DataType::AUDIO, in_index++, &valid);
627                 ins[i] = (valid)
628                                         ? bufs.get_audio(index).data(offset)
629                                         : silent_bufs.get_audio(0).data(offset);
630         }
631
632         uint32_t out_index = 0;
633         for (i = 0; i < (int32_t) _plugin->numOutputs; ++i) {
634                 uint32_t  index;
635                 bool      valid = false;
636                 index = out_map.get(DataType::AUDIO, out_index++, &valid);
637                 outs[i] = (valid)
638                         ? bufs.get_audio(index).data(offset)
639                         : scratch_bufs.get_audio(0).data(offset);
640         }
641
642         if (bufs.count().n_midi() > 0) {
643                 VstEvents* v = 0;
644                 bool valid = false;
645                 const uint32_t buf_index_in = in_map.get(DataType::MIDI, 0, &valid);
646                 if (valid) {
647                         v = bufs.get_vst_midi (buf_index_in);
648                 }
649                 valid = false;
650                 const uint32_t buf_index_out = out_map.get(DataType::MIDI, 0, &valid);
651                 if (valid) {
652                         _midi_out_buf = &bufs.get_midi(buf_index_out);
653                         _midi_out_buf->silence(0, 0);
654                 } else {
655                         _midi_out_buf = 0;
656                 }
657                 if (v) {
658                         _plugin->dispatcher (_plugin, effProcessEvents, 0, 0, v, 0);
659                 }
660         }
661
662         /* we already know it can support processReplacing */
663         _plugin->processReplacing (_plugin, &ins[0], &outs[0], nframes);
664         _midi_out_buf = 0;
665
666         pthread_mutex_unlock (&_state->state_lock);
667         return 0;
668 }
669
670 string
671 VSTPlugin::unique_id () const
672 {
673         char buf[32];
674
675         snprintf (buf, sizeof (buf), "%d", _plugin->uniqueID);
676
677         return string (buf);
678 }
679
680
681 const char *
682 VSTPlugin::name () const
683 {
684         if (!_info->name.empty ()) {
685                 return _info->name.c_str();
686         }
687         return _handle->name;
688 }
689
690 const char *
691 VSTPlugin::maker () const
692 {
693         return _info->creator.c_str();
694 }
695
696 const char *
697 VSTPlugin::label () const
698 {
699         return _handle->name;
700 }
701
702 uint32_t
703 VSTPlugin::parameter_count () const
704 {
705         return _plugin->numParams;
706 }
707
708 bool
709 VSTPlugin::has_editor () const
710 {
711         return _plugin->flags & effFlagsHasEditor;
712 }
713
714 void
715 VSTPlugin::print_parameter (uint32_t param, char *buf, uint32_t /*len*/) const
716 {
717         char *first_nonws;
718
719         _plugin->dispatcher (_plugin, 7 /* effGetParamDisplay */, param, 0, buf, 0);
720
721         if (buf[0] == '\0') {
722                 return;
723         }
724
725         first_nonws = buf;
726         while (*first_nonws && isspace (*first_nonws)) {
727                 first_nonws++;
728         }
729
730         if (*first_nonws == '\0') {
731                 return;
732         }
733
734         memmove (buf, first_nonws, strlen (buf) - (first_nonws - buf) + 1);
735 }
736
737 void
738 VSTPlugin::find_presets ()
739 {
740         /* Built-in presets */
741
742         int const vst_version = _plugin->dispatcher (_plugin, effGetVstVersion, 0, 0, NULL, 0);
743         for (int i = 0; i < _plugin->numPrograms; ++i) {
744                 PresetRecord r (string_compose (X_("VST:%1:%2"), unique_id (), i), "", false);
745
746                 if (vst_version >= 2) {
747                         char buf[256];
748                         if (_plugin->dispatcher (_plugin, 29, i, 0, buf, 0) == 1) {
749                                 r.label = buf;
750                         } else {
751                                 r.label = string_compose (_("Preset %1"), i);
752                         }
753                 } else {
754                         r.label = string_compose (_("Preset %1"), i);
755                 }
756
757                 _presets.insert (make_pair (r.uri, r));
758         }
759
760         /* User presets from our XML file */
761
762         boost::shared_ptr<XMLTree> t (presets_tree ());
763
764         if (t) {
765                 XMLNode* root = t->root ();
766                 for (XMLNodeList::const_iterator i = root->children().begin(); i != root->children().end(); ++i) {
767
768                         XMLProperty const * uri = (*i)->property (X_("uri"));
769                         XMLProperty const * label = (*i)->property (X_("label"));
770
771                         assert (uri);
772                         assert (label);
773
774                         PresetRecord r (uri->value(), label->value(), true);
775                         _presets.insert (make_pair (r.uri, r));
776                 }
777         }
778
779 }
780
781 /** @return XMLTree with our user presets; could be a new one if no existing
782  *  one was found, or 0 if one was present but badly-formatted.
783  */
784 XMLTree *
785 VSTPlugin::presets_tree () const
786 {
787         XMLTree* t = new XMLTree;
788
789         std::string p = Glib::build_filename (ARDOUR::user_config_directory (), "presets");
790
791         if (!Glib::file_test (p, Glib::FILE_TEST_IS_DIR)) {
792                 if (g_mkdir_with_parents (p.c_str(), 0755) != 0) {
793                         error << _("Unable to make VST presets directory") << endmsg;
794                 };
795         }
796
797         p = Glib::build_filename (p, presets_file ());
798
799         if (!Glib::file_test (p, Glib::FILE_TEST_EXISTS)) {
800                 t->set_root (new XMLNode (X_("VSTPresets")));
801                 return t;
802         }
803
804         t->set_filename (p);
805         if (!t->read ()) {
806                 delete t;
807                 return 0;
808         }
809
810         return t;
811 }
812
813 /** @return Index of the first user preset in our lists */
814 int
815 VSTPlugin::first_user_preset_index () const
816 {
817         return _plugin->numPrograms;
818 }
819
820 string
821 VSTPlugin::presets_file () const
822 {
823         return string_compose ("vst-%1", unique_id ());
824 }
825