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