04efb2e50c66cd9e4a7de9a03a1e4bc4240653d5
[ardour.git] / libs / ardour / audio_unit.cc
1 /*
2     Copyright (C) 2006-2009 Paul Davis
3     Some portions Copyright (C) Sophia Poirier.
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include <sstream>
22 #include <errno.h>
23 #include <string.h>
24 #include <math.h>
25 #include <ctype.h>
26
27 #include "pbd/transmitter.h"
28 #include "pbd/xml++.h"
29 #include "pbd/convert.h"
30 #include "pbd/whitespace.h"
31 #include "pbd/pathscanner.h"
32 #include "pbd/locale_guard.h"
33
34 #include <glibmm/thread.h>
35 #include <glibmm/fileutils.h>
36 #include <glibmm/miscutils.h>
37
38 #include "ardour/ardour.h"
39 #include "ardour/audioengine.h"
40 #include "ardour/audio_buffer.h"
41 #include "ardour/midi_buffer.h"
42 #include "ardour/filesystem_paths.h"
43 #include "ardour/io.h"
44 #include "ardour/audio_unit.h"
45 #include "ardour/session.h"
46 #include "ardour/tempo.h"
47 #include "ardour/utils.h"
48
49 #include "appleutility/CAAudioUnit.h"
50 #include "appleutility/CAAUParameter.h"
51
52 #include <CoreFoundation/CoreFoundation.h>
53 #include <CoreServices/CoreServices.h>
54 #include <AudioUnit/AudioUnit.h>
55 #include <AudioToolbox/AudioUnitUtilities.h>
56
57 #include "i18n.h"
58
59 using namespace std;
60 using namespace PBD;
61 using namespace ARDOUR;
62
63 //#define TRACE_AU_API
64 #ifdef TRACE_AU_API
65 #define TRACE_API(fmt,...) fprintf (stderr, fmt, ## __VA_ARGS__)
66 #else
67 #define TRACE_API(fmt,...)
68 #endif
69
70 #ifndef AU_STATE_SUPPORT
71 static bool seen_get_state_message = false;
72 static bool seen_set_state_message = false;
73 static bool seen_loading_message = false;
74 static bool seen_saving_message = false;
75 #endif
76
77 AUPluginInfo::CachedInfoMap AUPluginInfo::cached_info;
78
79 static string preset_search_path = "/Library/Audio/Presets:/Network/Library/Audio/Presets";
80 static string preset_suffix = ".aupreset";
81 static bool preset_search_path_initialized = false;
82 static bool debug_io_config = true;
83
84 static OSStatus
85 _render_callback(void *userData,
86                  AudioUnitRenderActionFlags *ioActionFlags,
87                  const AudioTimeStamp    *inTimeStamp,
88                  UInt32       inBusNumber,
89                  UInt32       inNumberFrames,
90                  AudioBufferList*       ioData)
91 {
92         if (userData) {
93                 return ((AUPlugin*)userData)->render_callback (ioActionFlags, inTimeStamp, inBusNumber, inNumberFrames, ioData);
94         }
95         return paramErr;
96 }
97
98 static OSStatus
99 _get_beat_and_tempo_callback (void*    userData,
100                               Float64* outCurrentBeat,
101                               Float64* outCurrentTempo)
102 {
103         if (userData) {
104                 return ((AUPlugin*)userData)->get_beat_and_tempo_callback (outCurrentBeat, outCurrentTempo);
105         }
106
107         return paramErr;
108 }
109
110 static OSStatus
111 _get_musical_time_location_callback (void *     userData,
112                                      UInt32 *   outDeltaSampleOffsetToNextBeat,
113                                      Float32 *  outTimeSig_Numerator,
114                                      UInt32 *   outTimeSig_Denominator,
115                                      Float64 *  outCurrentMeasureDownBeat)
116 {
117         if (userData) {
118                 return ((AUPlugin*)userData)->get_musical_time_location_callback (outDeltaSampleOffsetToNextBeat,
119                                                                                   outTimeSig_Numerator,
120                                                                                   outTimeSig_Denominator,
121                                                                                   outCurrentMeasureDownBeat);
122         }
123         return paramErr;
124 }
125
126 static OSStatus
127 _get_transport_state_callback (void*     userData,
128                                Boolean*  outIsPlaying,
129                                Boolean*  outTransportStateChanged,
130                                Float64*  outCurrentSampleInTimeLine,
131                                Boolean*  outIsCycling,
132                                Float64*  outCycleStartBeat,
133                                Float64*  outCycleEndBeat)
134 {
135         if (userData) {
136                 return ((AUPlugin*)userData)->get_transport_state_callback (
137                         outIsPlaying, outTransportStateChanged,
138                         outCurrentSampleInTimeLine, outIsCycling,
139                         outCycleStartBeat, outCycleEndBeat);
140         }
141         return paramErr;
142 }
143
144
145 static int
146 save_property_list (CFPropertyListRef propertyList, Glib::ustring path)
147
148 {
149         CFDataRef xmlData;
150         int fd;
151
152         // Convert the property list into XML data.
153
154         xmlData = CFPropertyListCreateXMLData( kCFAllocatorDefault, propertyList);
155
156         if (!xmlData) {
157                 error << _("Could not create XML version of property list") << endmsg;
158                 return -1;
159         }
160
161         // Write the XML data to the file.
162
163         fd = open (path.c_str(), O_WRONLY|O_CREAT|O_EXCL, 0664);
164         while (fd < 0) {
165                 if (errno == EEXIST) {
166                         error << string_compose (_("Preset file %1 exists; not overwriting"),
167                                                  path) << endmsg;
168                 } else {
169                         error << string_compose (_("Cannot open preset file %1 (%2)"),
170                                                  path, strerror (errno)) << endmsg;
171                 }
172                 CFRelease (xmlData);
173                 return -1;
174         }
175
176         size_t cnt = CFDataGetLength (xmlData);
177
178         if (write (fd, CFDataGetBytePtr (xmlData), cnt) != (ssize_t) cnt) {
179                 CFRelease (xmlData);
180                 close (fd);
181                 return -1;
182         }
183
184         close (fd);
185         return 0;
186 }
187
188
189 static CFPropertyListRef
190 load_property_list (Glib::ustring path)
191 {
192         int fd;
193         CFPropertyListRef propertyList = 0;
194         CFDataRef         xmlData;
195         CFStringRef       errorString;
196
197         // Read the XML file.
198
199         if ((fd = open (path.c_str(), O_RDONLY)) < 0) {
200                 return propertyList;
201
202         }
203
204         off_t len = lseek (fd, 0, SEEK_END);
205         char* buf = new char[len];
206         lseek (fd, 0, SEEK_SET);
207
208         if (read (fd, buf, len) != len) {
209                 delete [] buf;
210                 close (fd);
211                 return propertyList;
212         }
213
214         close (fd);
215
216         xmlData = CFDataCreateWithBytesNoCopy (kCFAllocatorDefault, (UInt8*) buf, len, kCFAllocatorNull);
217
218         // Reconstitute the dictionary using the XML data.
219
220         propertyList = CFPropertyListCreateFromXMLData( kCFAllocatorDefault,
221                                                         xmlData,
222                                                         kCFPropertyListImmutable,
223                                                         &errorString);
224
225         CFRelease (xmlData);
226         delete [] buf;
227
228         return propertyList;
229 }
230
231 //-----------------------------------------------------------------------------
232 static void
233 set_preset_name_in_plist (CFPropertyListRef plist, string preset_name)
234 {
235         if (!plist) {
236                 return;
237         }
238         CFStringRef pn = CFStringCreateWithCString (kCFAllocatorDefault, preset_name.c_str(), kCFStringEncodingUTF8);
239
240         if (CFGetTypeID (plist) == CFDictionaryGetTypeID()) {
241                 CFDictionarySetValue ((CFMutableDictionaryRef)plist, CFSTR(kAUPresetNameKey), pn);
242         }
243
244         CFRelease (pn);
245 }
246
247 //-----------------------------------------------------------------------------
248 static std::string
249 get_preset_name_in_plist (CFPropertyListRef plist)
250 {
251         std::string ret;
252
253         if (!plist) {
254                 return ret;
255         }
256
257         if (CFGetTypeID (plist) == CFDictionaryGetTypeID()) {
258                 const void *p = CFDictionaryGetValue ((CFMutableDictionaryRef)plist, CFSTR(kAUPresetNameKey));
259                 if (p) {
260                         CFStringRef str = (CFStringRef) p;
261                         int len = CFStringGetLength(str);
262                         len =  (len * 2) + 1;
263                         char local_buffer[len];
264                         if (CFStringGetCString (str, local_buffer, len, kCFStringEncodingUTF8)) {
265                                 ret = local_buffer;
266                         }
267                 }
268         }
269         return ret;
270 }
271
272 //--------------------------------------------------------------------------
273 // general implementation for ComponentDescriptionsMatch() and ComponentDescriptionsMatch_Loosely()
274 // if inIgnoreType is true, then the type code is ignored in the ComponentDescriptions
275 Boolean ComponentDescriptionsMatch_General(const ComponentDescription * inComponentDescription1, const ComponentDescription * inComponentDescription2, Boolean inIgnoreType);
276 Boolean ComponentDescriptionsMatch_General(const ComponentDescription * inComponentDescription1, const ComponentDescription * inComponentDescription2, Boolean inIgnoreType)
277 {
278         if ( (inComponentDescription1 == NULL) || (inComponentDescription2 == NULL) )
279                 return FALSE;
280
281         if ( (inComponentDescription1->componentSubType == inComponentDescription2->componentSubType)
282                         && (inComponentDescription1->componentManufacturer == inComponentDescription2->componentManufacturer) )
283         {
284                 // only sub-type and manufacturer IDs need to be equal
285                 if (inIgnoreType)
286                         return TRUE;
287                 // type, sub-type, and manufacturer IDs all need to be equal in order to call this a match
288                 else if (inComponentDescription1->componentType == inComponentDescription2->componentType)
289                         return TRUE;
290         }
291
292         return FALSE;
293 }
294
295 //--------------------------------------------------------------------------
296 // general implementation for ComponentAndDescriptionMatch() and ComponentAndDescriptionMatch_Loosely()
297 // if inIgnoreType is true, then the type code is ignored in the ComponentDescriptions
298 Boolean ComponentAndDescriptionMatch_General(Component inComponent, const ComponentDescription * inComponentDescription, Boolean inIgnoreType);
299 Boolean ComponentAndDescriptionMatch_General(Component inComponent, const ComponentDescription * inComponentDescription, Boolean inIgnoreType)
300 {
301         OSErr status;
302         ComponentDescription desc;
303
304         if ( (inComponent == NULL) || (inComponentDescription == NULL) )
305                 return FALSE;
306
307         // get the ComponentDescription of the input Component
308         status = GetComponentInfo(inComponent, &desc, NULL, NULL, NULL);
309         if (status != noErr)
310                 return FALSE;
311
312         // check if the Component's ComponentDescription matches the input ComponentDescription
313         return ComponentDescriptionsMatch_General(&desc, inComponentDescription, inIgnoreType);
314 }
315
316 //--------------------------------------------------------------------------
317 // determine if 2 ComponentDescriptions are basically equal
318 // (by that, I mean that the important identifying values are compared,
319 // but not the ComponentDescription flags)
320 Boolean ComponentDescriptionsMatch(const ComponentDescription * inComponentDescription1, const ComponentDescription * inComponentDescription2)
321 {
322         return ComponentDescriptionsMatch_General(inComponentDescription1, inComponentDescription2, FALSE);
323 }
324
325 //--------------------------------------------------------------------------
326 // determine if 2 ComponentDescriptions have matching sub-type and manufacturer codes
327 Boolean ComponentDescriptionsMatch_Loose(const ComponentDescription * inComponentDescription1, const ComponentDescription * inComponentDescription2)
328 {
329         return ComponentDescriptionsMatch_General(inComponentDescription1, inComponentDescription2, TRUE);
330 }
331
332 //--------------------------------------------------------------------------
333 // determine if a ComponentDescription basically matches that of a particular Component
334 Boolean ComponentAndDescriptionMatch(Component inComponent, const ComponentDescription * inComponentDescription)
335 {
336         return ComponentAndDescriptionMatch_General(inComponent, inComponentDescription, FALSE);
337 }
338
339 //--------------------------------------------------------------------------
340 // determine if a ComponentDescription matches only the sub-type and manufacturer codes of a particular Component
341 Boolean ComponentAndDescriptionMatch_Loosely(Component inComponent, const ComponentDescription * inComponentDescription)
342 {
343         return ComponentAndDescriptionMatch_General(inComponent, inComponentDescription, TRUE);
344 }
345
346
347 AUPlugin::AUPlugin (AudioEngine& engine, Session& session, boost::shared_ptr<CAComponent> _comp)
348         : Plugin (engine, session)
349         , comp (_comp)
350         , unit (new CAAudioUnit)
351         , initialized (false)
352         , _current_block_size (0)
353         , _requires_fixed_size_buffers (false)
354         , buffers (0)
355         , current_maxbuf (0)
356         , current_offset (0)
357         , current_buffers (0)
358         , frames_processed (0)
359         , last_transport_rolling (false)
360         , last_transport_speed (0.0)
361 {
362         if (!preset_search_path_initialized) {
363                 Glib::ustring p = Glib::get_home_dir();
364                 p += "/Library/Audio/Presets:";
365                 p += preset_search_path;
366                 preset_search_path = p;
367                 preset_search_path_initialized = true;
368         }
369
370         init ();
371 }
372
373
374 AUPlugin::AUPlugin (const AUPlugin& other)
375         : Plugin (other)
376         , comp (other.get_comp())
377         , unit (new CAAudioUnit)
378         , initialized (false)
379         , _current_block_size (0)
380         , _last_nframes (0)
381         , _requires_fixed_size_buffers (false)
382         , buffers (0)
383         , current_maxbuf (0)
384         , current_offset (0)
385         , current_buffers (0)
386         , frames_processed (0)
387
388 {
389         init ();
390 }
391
392 AUPlugin::~AUPlugin ()
393 {
394         if (unit) {
395                 TRACE_API ("about to call uninitialize in plugin destructor\n");
396                 unit->Uninitialize ();
397         }
398
399         if (buffers) {
400                 free (buffers);
401         }
402 }
403
404 void
405 AUPlugin::discover_factory_presets ()
406 {
407         CFArrayRef presets;
408         UInt32 dataSize = sizeof (presets);
409         OSStatus err;
410
411         TRACE_API ("get property FactoryPresets in global scope\n");
412         if ((err = unit->GetProperty (kAudioUnitProperty_FactoryPresets, kAudioUnitScope_Global, 0, (void*) &presets, &dataSize)) != 0) {
413                 cerr << "cannot get factory preset info: " << err << endl;
414                 return;
415         }
416
417         if (!presets) {
418                 return;
419         }
420
421         CFIndex cnt = CFArrayGetCount (presets);
422
423         for (CFIndex i = 0; i < cnt; ++i) {
424                 AUPreset* preset = (AUPreset*) CFArrayGetValueAtIndex (presets, i);
425
426                 string name = CFStringRefToStdString (preset->presetName);
427                 factory_preset_map[name] = preset->presetNumber;
428         }
429
430         CFRelease (presets);
431 }
432
433 void
434 AUPlugin::init ()
435 {
436         OSErr err;
437
438         try {
439                 TRACE_API ("opening AudioUnit\n");
440                 err = CAAudioUnit::Open (*(comp.get()), *unit);
441         } catch (...) {
442                 error << _("Exception thrown during AudioUnit plugin loading - plugin ignored") << endmsg;
443                 throw failed_constructor();
444         }
445
446         if (err != noErr) {
447                 error << _("AudioUnit: Could not convert CAComponent to CAAudioUnit") << endmsg;
448                 throw failed_constructor ();
449         }
450
451         TRACE_API ("count global elements\n");
452         unit->GetElementCount (kAudioUnitScope_Global, global_elements);
453         TRACE_API ("count input elements\n");
454         unit->GetElementCount (kAudioUnitScope_Input, input_elements);
455         TRACE_API ("count output elements\n");
456         unit->GetElementCount (kAudioUnitScope_Output, output_elements);
457
458         if (input_elements > 0) {
459                 AURenderCallbackStruct renderCallbackInfo;
460
461                 renderCallbackInfo.inputProc = _render_callback;
462                 renderCallbackInfo.inputProcRefCon = this;
463
464                 TRACE_API ("set render callback in input scope\n");
465                 if ((err = unit->SetProperty (kAudioUnitProperty_SetRenderCallback, kAudioUnitScope_Input,
466                                               0, (void*) &renderCallbackInfo, sizeof(renderCallbackInfo))) != 0) {
467                         cerr << "cannot install render callback (err = " << err << ')' << endl;
468                         throw failed_constructor();
469                 }
470         }
471
472         /* tell the plugin about tempo/meter/transport callbacks in case it wants them */
473
474         HostCallbackInfo info;
475         memset (&info, 0, sizeof (HostCallbackInfo));
476         info.hostUserData = this;
477         info.beatAndTempoProc = _get_beat_and_tempo_callback;
478         info.musicalTimeLocationProc = _get_musical_time_location_callback;
479         info.transportStateProc = _get_transport_state_callback;
480
481         //ignore result of this - don't care if the property isn't supported
482         TRACE_API ("set host callbacks in global scope\n");
483         unit->SetProperty (kAudioUnitProperty_HostCallbacks,
484                            kAudioUnitScope_Global,
485                            0, //elementID
486                            &info,
487                            sizeof (HostCallbackInfo));
488
489         /* these keep track of *configured* channel set up,
490            not potential set ups.
491         */
492
493         input_channels = -1;
494         output_channels = -1;
495
496         if (set_block_size (_session.get_block_size())) {
497                 error << _("AUPlugin: cannot set processing block size") << endmsg;
498                 throw failed_constructor();
499         }
500
501         AUPluginInfoPtr pinfo = boost::dynamic_pointer_cast<AUPluginInfo>(get_info());
502         _has_midi_input = pinfo->needs_midi_input ();
503         _has_midi_output = false;
504
505         discover_parameters ();
506         discover_factory_presets ();
507
508         // Plugin::setup_controls ();
509 }
510
511 void
512 AUPlugin::discover_parameters ()
513 {
514         /* discover writable parameters */
515
516         AudioUnitScope scopes[] = {
517                 kAudioUnitScope_Global,
518                 kAudioUnitScope_Output,
519                 kAudioUnitScope_Input
520         };
521
522         descriptors.clear ();
523
524         for (uint32_t i = 0; i < sizeof (scopes) / sizeof (scopes[0]); ++i) {
525
526                 AUParamInfo param_info (unit->AU(), false, false, scopes[i]);
527
528                 for (uint32_t i = 0; i < param_info.NumParams(); ++i) {
529
530                         AUParameterDescriptor d;
531
532                         d.id = param_info.ParamID (i);
533
534                         const CAAUParameter* param = param_info.GetParamInfo (d.id);
535                         const AudioUnitParameterInfo& info (param->ParamInfo());
536
537                         const int len = CFStringGetLength (param->GetName());;
538                         char local_buffer[len*2];
539                         Boolean good = CFStringGetCString(param->GetName(),local_buffer,len*2,kCFStringEncodingMacRoman);
540                         if (!good) {
541                                 d.label = "???";
542                         } else {
543                                 d.label = local_buffer;
544                         }
545
546                         d.scope = param_info.GetScope ();
547                         d.element = param_info.GetElement ();
548
549                         /* info.units to consider */
550                         /*
551                           kAudioUnitParameterUnit_Generic             = 0
552                           kAudioUnitParameterUnit_Indexed             = 1
553                           kAudioUnitParameterUnit_Boolean             = 2
554                           kAudioUnitParameterUnit_Percent             = 3
555                           kAudioUnitParameterUnit_Seconds             = 4
556                           kAudioUnitParameterUnit_SampleFrames        = 5
557                           kAudioUnitParameterUnit_Phase               = 6
558                           kAudioUnitParameterUnit_Rate                = 7
559                           kAudioUnitParameterUnit_Hertz               = 8
560                           kAudioUnitParameterUnit_Cents               = 9
561                           kAudioUnitParameterUnit_RelativeSemiTones   = 10
562                           kAudioUnitParameterUnit_MIDINoteNumber      = 11
563                           kAudioUnitParameterUnit_MIDIController      = 12
564                           kAudioUnitParameterUnit_Decibels            = 13
565                           kAudioUnitParameterUnit_LinearGain          = 14
566                           kAudioUnitParameterUnit_Degrees             = 15
567                           kAudioUnitParameterUnit_EqualPowerCrossfade = 16
568                           kAudioUnitParameterUnit_MixerFaderCurve1    = 17
569                           kAudioUnitParameterUnit_Pan                 = 18
570                           kAudioUnitParameterUnit_Meters              = 19
571                           kAudioUnitParameterUnit_AbsoluteCents       = 20
572                           kAudioUnitParameterUnit_Octaves             = 21
573                           kAudioUnitParameterUnit_BPM                 = 22
574                           kAudioUnitParameterUnit_Beats               = 23
575                           kAudioUnitParameterUnit_Milliseconds        = 24
576                           kAudioUnitParameterUnit_Ratio               = 25
577                         */
578
579                         /* info.flags to consider */
580
581                         /*
582
583                           kAudioUnitParameterFlag_CFNameRelease       = (1L << 4)
584                           kAudioUnitParameterFlag_HasClump            = (1L << 20)
585                           kAudioUnitParameterFlag_HasName             = (1L << 21)
586                           kAudioUnitParameterFlag_DisplayLogarithmic  = (1L << 22)
587                           kAudioUnitParameterFlag_IsHighResolution    = (1L << 23)
588                           kAudioUnitParameterFlag_NonRealTime         = (1L << 24)
589                           kAudioUnitParameterFlag_CanRamp             = (1L << 25)
590                           kAudioUnitParameterFlag_ExpertMode          = (1L << 26)
591                           kAudioUnitParameterFlag_HasCFNameString     = (1L << 27)
592                           kAudioUnitParameterFlag_IsGlobalMeta        = (1L << 28)
593                           kAudioUnitParameterFlag_IsElementMeta       = (1L << 29)
594                           kAudioUnitParameterFlag_IsReadable          = (1L << 30)
595                           kAudioUnitParameterFlag_IsWritable          = (1L << 31)
596                         */
597
598                         d.lower = info.minValue;
599                         d.upper = info.maxValue;
600                         d.default_value = info.defaultValue;
601
602                         d.integer_step = (info.unit == kAudioUnitParameterUnit_Indexed);
603                         d.toggled = (info.unit == kAudioUnitParameterUnit_Boolean) ||
604                                 (d.integer_step && ((d.upper - d.lower) == 1.0));
605                         d.sr_dependent = (info.unit == kAudioUnitParameterUnit_SampleFrames);
606                         d.automatable = !d.toggled &&
607                                 !(info.flags & kAudioUnitParameterFlag_NonRealTime) &&
608                                 (info.flags & kAudioUnitParameterFlag_IsWritable);
609
610                         d.logarithmic = (info.flags & kAudioUnitParameterFlag_DisplayLogarithmic);
611                         d.unit = info.unit;
612
613                         d.step = 1.0;
614                         d.smallstep = 0.1;
615                         d.largestep = 10.0;
616                         d.min_unbound = 0; // lower is bound
617                         d.max_unbound = 0; // upper is bound
618
619                         descriptors.push_back (d);
620                 }
621         }
622 }
623
624
625 static unsigned int
626 four_ints_to_four_byte_literal (unsigned char n[4])
627 {
628         /* this is actually implementation dependent. sigh. this is what gcc
629            and quite a few others do.
630          */
631         return ((n[0] << 24) + (n[1] << 16) + (n[2] << 8) + n[3]);
632 }
633
634 std::string
635 AUPlugin::maybe_fix_broken_au_id (const std::string& id)
636 {
637         if (isdigit (id[0])) {
638                 return id;
639         }
640
641         /* ID format is xxxx-xxxx-xxxx
642            where x maybe \xNN or a printable character.
643
644            Split at the '-' and and process each part into an integer.
645            Then put it back together.
646         */
647
648
649         unsigned char nascent[4];
650         const char* cstr = id.c_str();
651         const char* estr = cstr + id.size();
652         uint32_t n[3];
653         int in;
654         int next_int;
655         char short_buf[3];
656         stringstream s;
657
658         in = 0;
659         next_int = 0;
660         short_buf[2] = '\0';
661
662         while (*cstr && next_int < 4) {
663
664                 if (*cstr == '\\') {
665
666                         if (estr - cstr < 3) {
667
668                                 /* too close to the end for \xNN parsing: treat as literal characters */
669
670                                 cerr << "Parse " << cstr << " as a literal \\" << endl;
671                                 nascent[in] = *cstr;
672                                 ++cstr;
673                                 ++in;
674
675                         } else {
676
677                                 if (cstr[1] == 'x' && isxdigit (cstr[2]) && isxdigit (cstr[3])) {
678
679                                         /* parse \xNN */
680
681                                         memcpy (short_buf, &cstr[2], 2);
682                                         nascent[in] = strtol (short_buf, NULL, 16);
683                                         cstr += 4;
684                                         ++in;
685
686                                 } else {
687
688                                         /* treat as literal characters */
689                                         cerr << "Parse " << cstr << " as a literal \\" << endl;
690                                         nascent[in] = *cstr;
691                                         ++cstr;
692                                         ++in;
693                                 }
694                         }
695
696                 } else {
697
698                         nascent[in] = *cstr;
699                         ++cstr;
700                         ++in;
701                 }
702
703                 if (in && (in % 4 == 0)) {
704                         /* nascent is ready */
705                         n[next_int] = four_ints_to_four_byte_literal (nascent);
706                         in = 0;
707                         next_int++;
708
709                         /* swallow space-hyphen-space */
710
711                         if (next_int < 3) {
712                                 ++cstr;
713                                 ++cstr;
714                                 ++cstr;
715                         }
716                 }
717         }
718
719         if (next_int != 3) {
720                 goto err;
721         }
722
723         s << n[0] << '-' << n[1] << '-' << n[2];
724
725         return s.str();
726
727   err:
728         return string();
729 }
730
731 string
732 AUPlugin::unique_id () const
733 {
734         return AUPluginInfo::stringify_descriptor (comp->Desc());
735 }
736
737 const char *
738 AUPlugin::label () const
739 {
740         return _info->name.c_str();
741 }
742
743 uint32_t
744 AUPlugin::parameter_count () const
745 {
746         return descriptors.size();
747 }
748
749 float
750 AUPlugin::default_value (uint32_t port)
751 {
752         if (port < descriptors.size()) {
753                 return descriptors[port].default_value;
754         }
755
756         return 0;
757 }
758
759 framecnt_t
760 AUPlugin::signal_latency () const
761 {
762         return unit->Latency() * _session.frame_rate();
763 }
764
765 void
766 AUPlugin::set_parameter (uint32_t which, float val)
767 {
768         if (which >= descriptors.size()) {
769                 return;
770         }
771
772         const AUParameterDescriptor& d (descriptors[which]);
773         TRACE_API ("set parameter %d in scope %d element %d to %f\n", d.id, d.scope, d.element, val);
774         unit->SetParameter (d.id, d.scope, d.element, val);
775
776         /* tell the world what we did */
777
778         AudioUnitEvent theEvent;
779
780         theEvent.mEventType = kAudioUnitEvent_ParameterValueChange;
781         theEvent.mArgument.mParameter.mAudioUnit = unit->AU();
782         theEvent.mArgument.mParameter.mParameterID = d.id;
783         theEvent.mArgument.mParameter.mScope = d.scope;
784         theEvent.mArgument.mParameter.mElement = d.element;
785
786         TRACE_API ("notify about parameter change\n");
787         AUEventListenerNotify (NULL, NULL, &theEvent);
788
789         Plugin::set_parameter (which, val);
790 }
791
792 float
793 AUPlugin::get_parameter (uint32_t which) const
794 {
795         float val = 0.0;
796         if (which < descriptors.size()) {
797                 const AUParameterDescriptor& d (descriptors[which]);
798                 TRACE_API ("get value of parameter %d in scope %d element %d\n", d.id, d.scope, d.element);
799                 unit->GetParameter(d.id, d.scope, d.element, val);
800         }
801         return val;
802 }
803
804 int
805 AUPlugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& pd) const
806 {
807         if (which < descriptors.size()) {
808                 pd = descriptors[which];
809                 return 0;
810         }
811         return -1;
812 }
813
814 uint32_t
815 AUPlugin::nth_parameter (uint32_t which, bool& ok) const
816 {
817         if (which < descriptors.size()) {
818                 ok = true;
819                 return which;
820         }
821         ok = false;
822         return 0;
823 }
824
825 void
826 AUPlugin::activate ()
827 {
828         if (!initialized) {
829                 OSErr err;
830                 TRACE_API ("call Initialize in activate()\n");
831                 if ((err = unit->Initialize()) != noErr) {
832                         error << string_compose (_("AUPlugin: %1 cannot initialize plugin (err = %2)"), name(), err) << endmsg;
833                 } else {
834                         frames_processed = 0;
835                         initialized = true;
836                 }
837         }
838 }
839
840 void
841 AUPlugin::deactivate ()
842 {
843         TRACE_API ("call Uninitialize in deactivate()\n");
844         unit->Uninitialize ();
845         initialized = false;
846 }
847
848 void
849 AUPlugin::flush ()
850 {
851         TRACE_API ("call Reset in flush()\n");
852         unit->GlobalReset ();
853 }
854
855 bool
856 AUPlugin::requires_fixed_size_buffers() const
857 {
858         return _requires_fixed_size_buffers;
859 }
860
861
862 int
863 AUPlugin::set_block_size (pframes_t nframes)
864 {
865         bool was_initialized = initialized;
866         UInt32 numFrames = nframes;
867         OSErr err;
868
869         if (initialized) {
870                 deactivate ();
871         }
872
873         TRACE_API ("set MaximumFramesPerSlice in global scope to %u\n", numFrames);
874         if ((err = unit->SetProperty (kAudioUnitProperty_MaximumFramesPerSlice, kAudioUnitScope_Global,
875                                       0, &numFrames, sizeof (numFrames))) != noErr) {
876                 cerr << "cannot set max frames (err = " << err << ')' << endl;
877                 return -1;
878         }
879
880         if (was_initialized) {
881                 activate ();
882         }
883
884         _current_block_size = nframes;
885
886         return 0;
887 }
888
889 bool
890 AUPlugin::configure_io (ChanCount in, ChanCount out)
891 {
892         AudioStreamBasicDescription streamFormat;
893         bool was_initialized = initialized;
894         int32_t audio_in = in.n_audio();
895         int32_t audio_out = out.n_audio();
896
897         if (initialized) {
898                 //if we are already running with the requested i/o config, bail out here
899                 if ( (audio_in==input_channels) && (audio_out==output_channels) ) {
900                         return 0;
901                 } else {
902                         deactivate ();
903                 }
904         }
905
906         streamFormat.mSampleRate = _session.frame_rate();
907         streamFormat.mFormatID = kAudioFormatLinearPCM;
908         streamFormat.mFormatFlags = kAudioFormatFlagIsFloat|kAudioFormatFlagIsPacked|kAudioFormatFlagIsNonInterleaved;
909
910 #ifdef __LITTLE_ENDIAN__
911         /* relax */
912 #else
913         streamFormat.mFormatFlags |= kAudioFormatFlagIsBigEndian;
914 #endif
915
916         streamFormat.mBitsPerChannel = 32;
917         streamFormat.mFramesPerPacket = 1;
918
919         /* apple says that for non-interleaved data, these
920            values always refer to a single channel.
921         */
922         streamFormat.mBytesPerPacket = 4;
923         streamFormat.mBytesPerFrame = 4;
924
925         streamFormat.mChannelsPerFrame = audio_in;
926
927         if (set_input_format (streamFormat) != 0) {
928                 return -1;
929         }
930
931         streamFormat.mChannelsPerFrame = audio_out;
932
933         if (set_output_format (streamFormat) != 0) {
934                 return -1;
935         }
936
937         if (was_initialized) {
938                 activate ();
939         }
940
941         return 0;
942 }
943
944 bool
945 AUPlugin::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
946 {
947         // XXX as of May 13th 2008, AU plugin support returns a count of either 1 or -1. We never
948         // attempt to multiply-instantiate plugins to meet io configurations.
949
950         int32_t audio_in = in.n_audio();
951         int32_t audio_out;
952         int32_t plugcnt = -1;
953         AUPluginInfoPtr pinfo = boost::dynamic_pointer_cast<AUPluginInfo>(get_info());
954
955         /* lets check MIDI first */
956
957         if (in.n_midi() > 0) {
958                 if (!_has_midi_input) {
959                         return false;
960                 }
961         }
962
963         vector<pair<int,int> >& io_configs = pinfo->cache.io_configs;
964
965         if (debug_io_config) {
966                 cerr << name() << " has " << io_configs.size() << " IO Configurations\n";
967         }
968
969         //Ardour expects the plugin to tell it the output configuration
970         //but AU plugins can have multiple I/O configurations
971         //in most cases (since we don't allow special routing like sidechains in A2, we want to preserve the number of streams
972         //so first lets see if there's a configuration that keeps out==in
973
974         audio_out = audio_in;
975
976         for (vector<pair<int,int> >::iterator i = io_configs.begin(); i != io_configs.end(); ++i) {
977                 int32_t possible_in = i->first;
978                 int32_t possible_out = i->second;
979
980                 if (possible_in == audio_in && possible_out== audio_out) {
981                         cerr << "\tCHOSEN: in " << in << " out " << out << endl;
982                         return 1;
983                 }
984         }
985
986         /* now allow potentially "imprecise" matches */
987         audio_out = -1;
988         for (vector<pair<int,int> >::iterator i = io_configs.begin(); i != io_configs.end(); ++i) {
989
990                 int32_t possible_in = i->first;
991                 int32_t possible_out = i->second;
992
993                 if (debug_io_config) {
994                         cerr << "\tin " << possible_in << " out " << possible_out << endl;
995                 }
996
997                 if (possible_out == 0) {
998                         warning << string_compose (_("AU %1 has zero outputs - configuration ignored"), name()) << endmsg;
999                         continue;
1000                 }
1001
1002                 if (possible_in == 0) {
1003
1004                         /* instrument plugin, always legal but throws away inputs ...
1005                         */
1006
1007                         if (possible_out == -1) {
1008                                 /* out much match in (UNLIKELY!!) */
1009                                 audio_out = audio_in;
1010                                 plugcnt = 1;
1011                         } else if (possible_out == -2) {
1012                                 /* any configuration possible, pick matching */
1013                                 audio_out = audio_in;
1014                                 plugcnt = 1;
1015                         } else if (possible_out < -2) {
1016                                 /* explicit variable number of outputs, pick maximum */
1017                                 audio_out = -possible_out;
1018                                 plugcnt = 1;
1019                         } else {
1020                                 /* exact number of outputs */
1021                                 audio_out = possible_out;
1022                                 plugcnt = 1;
1023                         }
1024                 }
1025
1026                 if (possible_in == -1) {
1027
1028                         /* wildcard for input */
1029
1030                         if (possible_out == -1) {
1031                                 /* out much match in */
1032                                 audio_out = audio_in;
1033                                 plugcnt = 1;
1034                         } else if (possible_out == -2) {
1035                                 /* any configuration possible, pick matching */
1036                                 audio_out = audio_in;
1037                                 plugcnt = 1;
1038                         } else if (possible_out < -2) {
1039                                 /* explicit variable number of outputs, pick maximum */
1040                                 audio_out = -possible_out;
1041                                 plugcnt = 1;
1042                         } else {
1043                                 /* exact number of outputs */
1044                                 audio_out = possible_out;
1045                                 plugcnt = 1;
1046                         }
1047                 }
1048
1049                 if (possible_in == -2) {
1050
1051                         if (possible_out == -1) {
1052                                 /* any configuration possible, pick matching */
1053                                 audio_out = audio_in;
1054                                 plugcnt = 1;
1055                         } else if (possible_out == -2) {
1056                                 error << string_compose (_("AU plugin %1 has illegal IO configuration (-2,-2)"), name())
1057                                       << endmsg;
1058                                 plugcnt = -1;
1059                         } else if (possible_out < -2) {
1060                                 /* explicit variable number of outputs, pick maximum */
1061                                 audio_out = -possible_out;
1062                                 plugcnt = 1;
1063                         } else {
1064                                 /* exact number of outputs */
1065                                 audio_out = possible_out;
1066                                 plugcnt = 1;
1067                         }
1068                 }
1069
1070                 if (possible_in < -2) {
1071
1072                         /* explicit variable number of inputs */
1073
1074                         if (audio_in > -possible_in) {
1075                                 /* request is too large */
1076                                 plugcnt = -1;
1077                         }
1078
1079                         if (possible_out == -1) {
1080                                 /* out must match in */
1081                                 audio_out = audio_in;
1082                                 plugcnt = 1;
1083                         } else if (possible_out == -2) {
1084                                 error << string_compose (_("AU plugin %1 has illegal IO configuration (-2,-2)"), name())
1085                                       << endmsg;
1086                                 plugcnt = -1;
1087                         } else if (possible_out < -2) {
1088                                 /* explicit variable number of outputs, pick maximum */
1089                                 audio_out = -possible_out;
1090                                 plugcnt = 1;
1091                         } else {
1092                                 /* exact number of outputs */
1093                                 audio_out = possible_out;
1094                                 plugcnt = 1;
1095                         }
1096                 }
1097
1098                 if (possible_in == audio_in) {
1099
1100                         /* exact number of inputs ... must match obviously */
1101
1102                         if (possible_out == -1) {
1103                                 /* out must match in */
1104                                 audio_out = audio_in;
1105                                 plugcnt = 1;
1106                         } else if (possible_out == -2) {
1107                                 /* any output configuration, pick matching */
1108                                 audio_out = audio_in;
1109                                 plugcnt = -1;
1110                         } else if (possible_out < -2) {
1111                                 /* explicit variable number of outputs, pick maximum */
1112                                 audio_out = -possible_out;
1113                                 plugcnt = 1;
1114                         } else {
1115                                 /* exact number of outputs */
1116                                 audio_out = possible_out;
1117                                 plugcnt = 1;
1118                         }
1119                 }
1120
1121                 if (plugcnt == 1) {
1122                         break;
1123                 }
1124
1125         }
1126
1127         if (debug_io_config) {
1128                 if (plugcnt > 0) {
1129                         cerr << "\tCHOSEN: in " << in << " out " << out << " plugcnt will be " << plugcnt << endl;
1130                 } else {
1131                         cerr << "\tFAIL: no configs match requested in " << in << endl;
1132                 }
1133         }
1134
1135         out.set (DataType::MIDI, 0);
1136         out.set (DataType::AUDIO, audio_out);
1137
1138         return plugcnt;
1139 }
1140
1141 int
1142 AUPlugin::set_input_format (AudioStreamBasicDescription& fmt)
1143 {
1144         return set_stream_format (kAudioUnitScope_Input, input_elements, fmt);
1145 }
1146
1147 int
1148 AUPlugin::set_output_format (AudioStreamBasicDescription& fmt)
1149 {
1150         if (set_stream_format (kAudioUnitScope_Output, output_elements, fmt) != 0) {
1151                 return -1;
1152         }
1153
1154         if (buffers) {
1155                 free (buffers);
1156                 buffers = 0;
1157         }
1158
1159         buffers = (AudioBufferList *) malloc (offsetof(AudioBufferList, mBuffers) +
1160                                               fmt.mChannelsPerFrame * sizeof(::AudioBuffer));
1161
1162         Glib::Mutex::Lock em (_session.engine().process_lock());
1163         IO::PortCountChanged (ChanCount(DataType::AUDIO, fmt.mChannelsPerFrame));
1164
1165         return 0;
1166 }
1167
1168 int
1169 AUPlugin::set_stream_format (int scope, uint32_t cnt, AudioStreamBasicDescription& fmt)
1170 {
1171         OSErr result;
1172
1173         for (uint32_t i = 0; i < cnt; ++i) {
1174                 TRACE_API ("set stream format for %s, scope = %d element %d\n",
1175                            (scope == kAudioUnitScope_Input ? "input" : "output"),
1176                            scope, cnt);
1177                 if ((result = unit->SetFormat (scope, i, fmt)) != 0) {
1178                         error << string_compose (_("AUPlugin: could not set stream format for %1/%2 (err = %3)"),
1179                                                  (scope == kAudioUnitScope_Input ? "input" : "output"), i, result) << endmsg;
1180                         return -1;
1181                 }
1182         }
1183
1184         if (scope == kAudioUnitScope_Input) {
1185                 input_channels = fmt.mChannelsPerFrame;
1186         } else {
1187                 output_channels = fmt.mChannelsPerFrame;
1188         }
1189
1190         return 0;
1191 }
1192
1193 OSStatus
1194 AUPlugin::render_callback(AudioUnitRenderActionFlags*,
1195                           const AudioTimeStamp*,
1196                           UInt32,
1197                           UInt32       inNumberFrames,
1198                           AudioBufferList*       ioData)
1199 {
1200         if (_has_midi_input) {
1201                 assert (current_buffers->count().n_midi() > 0);
1202
1203                 /* deliver the first (and assumed only) MIDI buffer's data
1204                    to the plugin
1205                 */
1206
1207                 MidiBuffer& mb (current_buffers->get_midi(0));
1208
1209                 for (MidiBuffer::iterator i = mb.begin(); i != mb.end(); ++i) {
1210                         Evoral::MIDIEvent<MidiBuffer::TimeType> ev = *i;
1211                         switch (ev.type()) {
1212                         case MIDI_CMD_NOTE_ON:
1213                         case MIDI_CMD_NOTE_OFF:
1214                         case MIDI_CMD_CONTROL:
1215                         case MIDI_CMD_BENDER:
1216                         case MIDI_CMD_PGM_CHANGE:
1217                         case MIDI_CMD_CHANNEL_PRESSURE:
1218                         {
1219                                 const uint8_t* b = ev.buffer();
1220                                 unit->MIDIEvent (b[0], b[1], b[2], ev.time());
1221                                 break;
1222                         }
1223
1224                         default:
1225                                 /* plugins do not get other stuff by default */
1226                                 break;
1227                         };
1228                 }
1229         }
1230
1231         /* not much to do with audio - the data is already in the buffers given to us in connect_and_run() */
1232
1233         if (current_maxbuf == 0) {
1234                 error << _("AUPlugin: render callback called illegally!") << endmsg;
1235                 return kAudioUnitErr_CannotDoInCurrentContext;
1236         }
1237         uint32_t limit = min ((uint32_t) ioData->mNumberBuffers, current_maxbuf);
1238
1239         for (uint32_t i = 0; i < limit; ++i) {
1240                 ioData->mBuffers[i].mNumberChannels = 1;
1241                 ioData->mBuffers[i].mDataByteSize = sizeof (Sample) * inNumberFrames;
1242
1243                 /* we don't use the channel mapping because audiounits are
1244                    never replicated. one plugin instance uses all channels/buffers
1245                    passed to PluginInsert::connect_and_run()
1246                 */
1247
1248                 ioData->mBuffers[i].mData = current_buffers->get_audio (i).data (cb_offset + current_offset);
1249         }
1250
1251         cb_offset += inNumberFrames;
1252
1253         return noErr;
1254 }
1255
1256 int
1257 AUPlugin::connect_and_run (BufferSet& bufs, ChanMapping in_map, ChanMapping out_map, pframes_t nframes, framecnt_t offset)
1258 {
1259         Plugin::connect_and_run (bufs, in_map, out_map, nframes, offset);
1260
1261         AudioUnitRenderActionFlags flags = 0;
1262         AudioTimeStamp ts;
1263         OSErr err;
1264         uint32_t maxbuf = bufs.count().n_audio();
1265
1266         if (requires_fixed_size_buffers() && (nframes != _last_nframes)) {
1267                 unit->GlobalReset();
1268                 _last_nframes = nframes;
1269         }
1270
1271         current_buffers = &bufs;
1272         current_maxbuf = maxbuf;
1273         current_offset = offset;
1274         cb_offset = 0;
1275
1276         buffers->mNumberBuffers = min ((uint32_t) output_channels, maxbuf);
1277
1278         for (uint32_t i = 0; i < buffers->mNumberBuffers; ++i) {
1279                 buffers->mBuffers[i].mNumberChannels = 1;
1280                 buffers->mBuffers[i].mDataByteSize = nframes * sizeof (Sample);
1281                 buffers->mBuffers[i].mData = 0;
1282         }
1283
1284         ts.mSampleTime = frames_processed;
1285         ts.mFlags = kAudioTimeStampSampleTimeValid;
1286
1287         if ((err = unit->Render (&flags, &ts, 0, nframes, buffers)) == noErr) {
1288
1289                 current_maxbuf = 0;
1290                 frames_processed += nframes;
1291
1292                 uint32_t limit = min ((uint32_t) buffers->mNumberBuffers, maxbuf);
1293                 uint32_t i;
1294
1295                 for (i = 0; i < limit; ++i) {
1296                         Sample* expected_buffer_address= bufs.get_audio (i).data (offset);
1297                         if (expected_buffer_address != buffers->mBuffers[i].mData) {
1298                                 // cerr << "chn " << i << " rendered into " << bufs[i]+offset << endl;
1299                                 memcpy (expected_buffer_address, buffers->mBuffers[i].mData, nframes * sizeof (Sample));
1300                         }
1301                 }
1302
1303                 /* now silence any buffers that were passed in but the that the plugin
1304                    did not fill/touch/use.
1305                 */
1306
1307                 for (;i < maxbuf; ++i) {
1308                         Sample* buffer_address= bufs.get_audio (i).data (offset);
1309                         memset (buffer_address, 0, nframes * sizeof (Sample));
1310                 }
1311
1312                 return 0;
1313         }
1314
1315         cerr << name() << " render status " << err << endl;
1316         return -1;
1317 }
1318
1319 OSStatus
1320 AUPlugin::get_beat_and_tempo_callback (Float64* outCurrentBeat,
1321                                        Float64* outCurrentTempo)
1322 {
1323         TempoMap& tmap (_session.tempo_map());
1324
1325         TRACE_API ("AU calls ardour beat&tempo callback\n");
1326
1327         /* more than 1 meter or more than 1 tempo means that a simplistic computation
1328            (and interpretation) of a beat position will be incorrect. So refuse to
1329            offer the value.
1330         */
1331
1332         if (tmap.n_tempos() > 1 || tmap.n_meters() > 1) {
1333                 return kAudioUnitErr_CannotDoInCurrentContext;
1334         }
1335
1336         Timecode::BBT_Time bbt;
1337         TempoMetric metric = tmap.metric_at (_session.transport_frame() + current_offset);
1338         tmap.bbt_time_with_metric (_session.transport_frame() + current_offset, bbt, metric);
1339
1340         if (outCurrentBeat) {
1341                 float beat;
1342                 beat = metric.meter().beats_per_bar() * bbt.bars;
1343                 beat += bbt.beats;
1344                 beat += bbt.ticks / Timecode::BBT_Time::ticks_per_beat;
1345                 *outCurrentBeat = beat;
1346         }
1347
1348         if (outCurrentTempo) {
1349                 *outCurrentTempo = floor (metric.tempo().beats_per_minute());
1350         }
1351
1352         return noErr;
1353
1354 }
1355
1356 OSStatus
1357 AUPlugin::get_musical_time_location_callback (UInt32*   outDeltaSampleOffsetToNextBeat,
1358                                               Float32*  outTimeSig_Numerator,
1359                                               UInt32*   outTimeSig_Denominator,
1360                                               Float64*  outCurrentMeasureDownBeat)
1361 {
1362         TempoMap& tmap (_session.tempo_map());
1363
1364         TRACE_API ("AU calls ardour music time location callback\n");
1365
1366         /* more than 1 meter or more than 1 tempo means that a simplistic computation
1367            (and interpretation) of a beat position will be incorrect. So refuse to
1368            offer the value.
1369         */
1370
1371         if (tmap.n_tempos() > 1 || tmap.n_meters() > 1) {
1372                 return kAudioUnitErr_CannotDoInCurrentContext;
1373         }
1374
1375         Timecode::BBT_Time bbt;
1376         TempoMetric metric = tmap.metric_at (_session.transport_frame() + current_offset);
1377         tmap.bbt_time_with_metric (_session.transport_frame() + current_offset, bbt, metric);
1378
1379         if (outDeltaSampleOffsetToNextBeat) {
1380                 if (bbt.ticks == 0) {
1381                         /* on the beat */
1382                         *outDeltaSampleOffsetToNextBeat = 0;
1383                 } else {
1384                         *outDeltaSampleOffsetToNextBeat = (UInt32) 
1385                                 floor (((Timecode::BBT_Time::ticks_per_beat - bbt.ticks)/Timecode::BBT_Time::ticks_per_beat) * // fraction of a beat to next beat
1386                                        metric.tempo().frames_per_beat(_session.frame_rate(), metric.meter())); // frames per beat
1387                 }
1388         }
1389
1390         if (outTimeSig_Numerator) {
1391                 *outTimeSig_Numerator = (UInt32) lrintf (metric.meter().beats_per_bar());
1392         }
1393         if (outTimeSig_Denominator) {
1394                 *outTimeSig_Denominator = (UInt32) lrintf (metric.meter().note_divisor());
1395         }
1396
1397         if (outCurrentMeasureDownBeat) {
1398
1399                 /* beat for the start of the bar.
1400                    1|1|0 -> 1
1401                    2|1|0 -> 1 + beats_per_bar
1402                    3|1|0 -> 1 + (2 * beats_per_bar)
1403                    etc.
1404                 */
1405
1406                 *outCurrentMeasureDownBeat = 1 + metric.meter().beats_per_bar() * (bbt.bars - 1);
1407         }
1408
1409         return noErr;
1410 }
1411
1412 OSStatus
1413 AUPlugin::get_transport_state_callback (Boolean*  outIsPlaying,
1414                                         Boolean*  outTransportStateChanged,
1415                                         Float64*  outCurrentSampleInTimeLine,
1416                                         Boolean*  outIsCycling,
1417                                         Float64*  outCycleStartBeat,
1418                                         Float64*  outCycleEndBeat)
1419 {
1420         bool rolling;
1421         float speed;
1422
1423         TRACE_API ("AU calls ardour transport state callback\n");
1424
1425         rolling = _session.transport_rolling();
1426         speed = _session.transport_speed ();
1427
1428         if (outIsPlaying) {
1429                 *outIsPlaying = _session.transport_rolling();
1430         }
1431
1432         if (outTransportStateChanged) {
1433                 if (rolling != last_transport_rolling) {
1434                         *outTransportStateChanged = true;
1435                 } else if (speed != last_transport_speed) {
1436                         *outTransportStateChanged = true;
1437                 } else {
1438                         *outTransportStateChanged = false;
1439                 }
1440         }
1441
1442         if (outCurrentSampleInTimeLine) {
1443                 /* this assumes that the AU can only call this host callback from render context,
1444                    where current_offset is valid.
1445                 */
1446                 *outCurrentSampleInTimeLine = _session.transport_frame() + current_offset;
1447         }
1448
1449         if (outIsCycling) {
1450                 Location* loc = _session.locations()->auto_loop_location();
1451
1452                 *outIsCycling = (loc && _session.transport_rolling() && _session.get_play_loop());
1453
1454                 if (*outIsCycling) {
1455
1456                         if (outCycleStartBeat || outCycleEndBeat) {
1457
1458                                 TempoMap& tmap (_session.tempo_map());
1459
1460                                 /* more than 1 meter means that a simplistic computation (and interpretation) of
1461                                    a beat position will be incorrect. so refuse to offer the value.
1462                                 */
1463
1464                                 if (tmap.n_meters() > 1) {
1465                                         return kAudioUnitErr_CannotDoInCurrentContext;
1466                                 }
1467
1468                                 Timecode::BBT_Time bbt;
1469
1470                                 if (outCycleStartBeat) {
1471                                         TempoMetric metric = tmap.metric_at (loc->start() + current_offset);
1472                                         _session.tempo_map().bbt_time_with_metric (loc->start(), bbt, metric);
1473
1474                                         float beat;
1475                                         beat = metric.meter().beats_per_bar() * bbt.bars;
1476                                         beat += bbt.beats;
1477                                         beat += bbt.ticks / Timecode::BBT_Time::ticks_per_beat;
1478
1479                                         *outCycleStartBeat = beat;
1480                                 }
1481
1482                                 if (outCycleEndBeat) {
1483                                         TempoMetric metric = tmap.metric_at (loc->end() + current_offset);
1484                                         _session.tempo_map().bbt_time_with_metric (loc->end(), bbt, metric);
1485
1486                                         float beat;
1487                                         beat = metric.meter().beats_per_bar() * bbt.bars;
1488                                         beat += bbt.beats;
1489                                         beat += bbt.ticks / Timecode::BBT_Time::ticks_per_beat;
1490
1491                                         *outCycleEndBeat = beat;
1492                                 }
1493                         }
1494                 }
1495         }
1496
1497         last_transport_rolling = rolling;
1498         last_transport_speed = speed;
1499
1500         return noErr;
1501 }
1502
1503 set<Evoral::Parameter>
1504 AUPlugin::automatable() const
1505 {
1506         set<Evoral::Parameter> automates;
1507
1508         for (uint32_t i = 0; i < descriptors.size(); ++i) {
1509                 if (descriptors[i].automatable) {
1510                         automates.insert (automates.end(), Evoral::Parameter (PluginAutomation, 0, i));
1511                 }
1512         }
1513
1514         return automates;
1515 }
1516
1517 string
1518 AUPlugin::describe_parameter (Evoral::Parameter param)
1519 {
1520         if (param.type() == PluginAutomation && param.id() < parameter_count()) {
1521                 return descriptors[param.id()].label;
1522         } else {
1523                 return "??";
1524         }
1525 }
1526
1527 void
1528 AUPlugin::print_parameter (uint32_t /*param*/, char* /*buf*/, uint32_t /*len*/) const
1529 {
1530         // NameValue stuff here
1531 }
1532
1533 bool
1534 AUPlugin::parameter_is_audio (uint32_t) const
1535 {
1536         return false;
1537 }
1538
1539 bool
1540 AUPlugin::parameter_is_control (uint32_t) const
1541 {
1542         return true;
1543 }
1544
1545 bool
1546 AUPlugin::parameter_is_input (uint32_t) const
1547 {
1548         return false;
1549 }
1550
1551 bool
1552 AUPlugin::parameter_is_output (uint32_t) const
1553 {
1554         return false;
1555 }
1556
1557 void
1558 AUPlugin::add_state (XMLNode* root) const
1559 {
1560         LocaleGuard lg (X_("POSIX"));
1561
1562 #ifdef AU_STATE_SUPPORT
1563         CFDataRef xmlData;
1564         CFPropertyListRef propertyList;
1565
1566         TRACE_API ("get preset state\n");
1567         if (unit->GetAUPreset (propertyList) != noErr) {
1568                 return;
1569         }
1570
1571         // Convert the property list into XML data.
1572
1573         xmlData = CFPropertyListCreateXMLData( kCFAllocatorDefault, propertyList);
1574
1575         if (!xmlData) {
1576                 error << _("Could not create XML version of property list") << endmsg;
1577                 return;
1578         }
1579
1580         /* re-parse XML bytes to create a libxml++ XMLTree that we can merge into
1581            our state node. GACK!
1582         */
1583
1584         XMLTree t;
1585
1586         if (t.read_buffer (string ((const char*) CFDataGetBytePtr (xmlData), CFDataGetLength (xmlData)))) {
1587                 if (t.root()) {
1588                         root->add_child_copy (*t.root());
1589                 }
1590         }
1591
1592         CFRelease (xmlData);
1593         CFRelease (propertyList);
1594 #else
1595         if (!seen_get_state_message) {
1596                 info << string_compose (_("Saving AudioUnit settings is not supported in this build of %1. Consider paying for a newer version"),
1597                                         PROGRAM_NAME)
1598                      << endmsg;
1599                 seen_get_state_message = true;
1600         }
1601 #endif
1602 }
1603
1604 int
1605 AUPlugin::set_state(const XMLNode& node, int version)
1606 {
1607 #ifdef AU_STATE_SUPPORT
1608         int ret = -1;
1609         CFPropertyListRef propertyList;
1610         LocaleGuard lg (X_("POSIX"));
1611
1612         if (node.name() != state_node_name()) {
1613                 error << _("Bad node sent to AUPlugin::set_state") << endmsg;
1614                 return -1;
1615         }
1616
1617         if (node.children().empty()) {
1618                 return -1;
1619         }
1620
1621         XMLNode* top = node.children().front();
1622         XMLNode* copy = new XMLNode (*top);
1623
1624         XMLTree t;
1625         t.set_root (copy);
1626
1627         const string& xml = t.write_buffer ();
1628         CFDataRef xmlData = CFDataCreateWithBytesNoCopy (kCFAllocatorDefault, (UInt8*) xml.data(), xml.length(), kCFAllocatorNull);
1629         CFStringRef errorString;
1630
1631         propertyList = CFPropertyListCreateFromXMLData( kCFAllocatorDefault,
1632                                                         xmlData,
1633                                                         kCFPropertyListImmutable,
1634                                                         &errorString);
1635
1636         CFRelease (xmlData);
1637
1638         if (propertyList) {
1639                 TRACE_API ("set preset\n");
1640                 if (unit->SetAUPreset (propertyList) == noErr) {
1641                         ret = 0;
1642
1643                         /* tell the world */
1644
1645                         AudioUnitParameter changedUnit;
1646                         changedUnit.mAudioUnit = unit->AU();
1647                         changedUnit.mParameterID = kAUParameterListener_AnyParameter;
1648                         AUParameterListenerNotify (NULL, NULL, &changedUnit);
1649                 }
1650                 CFRelease (propertyList);
1651         }
1652
1653         Plugin::set_state (node, version);
1654         return ret;
1655 #else
1656         if (!seen_set_state_message) {
1657                 info << string_compose (_("Restoring AudioUnit settings is not supported in this build of %1. Consider paying for a newer version"),
1658                                         PROGRAM_NAME)
1659                      << endmsg;
1660         }
1661         return Plugin::set_state (node, version);
1662 #endif
1663 }
1664
1665 bool
1666 AUPlugin::load_preset (PresetRecord r)
1667 {
1668         Plugin::load_preset (r);
1669
1670 #ifdef AU_STATE_SUPPORT
1671         bool ret = false;
1672         CFPropertyListRef propertyList;
1673         Glib::ustring path;
1674         UserPresetMap::iterator ux;
1675         FactoryPresetMap::iterator fx;
1676
1677         /* look first in "user" presets */
1678
1679         if ((ux = user_preset_map.find (r.label)) != user_preset_map.end()) {
1680
1681                 if ((propertyList = load_property_list (ux->second)) != 0) {
1682                         TRACE_API ("set preset from user presets\n");
1683                         if (unit->SetAUPreset (propertyList) == noErr) {
1684                                 ret = true;
1685
1686                                 /* tell the world */
1687
1688                                 AudioUnitParameter changedUnit;
1689                                 changedUnit.mAudioUnit = unit->AU();
1690                                 changedUnit.mParameterID = kAUParameterListener_AnyParameter;
1691                                 AUParameterListenerNotify (NULL, NULL, &changedUnit);
1692                         }
1693                         CFRelease(propertyList);
1694                 }
1695
1696         } else if ((fx = factory_preset_map.find (r.label)) != factory_preset_map.end()) {
1697
1698                 AUPreset preset;
1699
1700                 preset.presetNumber = fx->second;
1701                 preset.presetName = CFStringCreateWithCString (kCFAllocatorDefault, fx->first.c_str(), kCFStringEncodingUTF8);
1702
1703                 TRACE_API ("set preset from factory presets\n");
1704
1705                 if (unit->SetPresentPreset (preset) == 0) {
1706                         ret = true;
1707
1708                         /* tell the world */
1709
1710                         AudioUnitParameter changedUnit;
1711                         changedUnit.mAudioUnit = unit->AU();
1712                         changedUnit.mParameterID = kAUParameterListener_AnyParameter;
1713                         AUParameterListenerNotify (NULL, NULL, &changedUnit);
1714                 }
1715         }
1716
1717         return ret;
1718 #else
1719         if (!seen_loading_message) {
1720                 info << string_compose (_("Loading AudioUnit presets is not supported in this build of %1. Consider paying for a newer version"),
1721                                         PROGRAM_NAME)
1722                      << endmsg;
1723                 seen_loading_message = true;
1724         }
1725         return true;
1726 #endif
1727 }
1728
1729 void
1730 AUPlugin::do_remove_preset (std::string) 
1731 {
1732 }
1733
1734 string
1735 AUPlugin::do_save_preset (string preset_name)
1736 {
1737 #ifdef AU_STATE_SUPPORT
1738         CFPropertyListRef propertyList;
1739         vector<Glib::ustring> v;
1740         Glib::ustring user_preset_path;
1741         bool ret = true;
1742
1743         std::string m = maker();
1744         std::string n = name();
1745
1746         strip_whitespace_edges (m);
1747         strip_whitespace_edges (n);
1748
1749         v.push_back (Glib::get_home_dir());
1750         v.push_back ("Library");
1751         v.push_back ("Audio");
1752         v.push_back ("Presets");
1753         v.push_back (m);
1754         v.push_back (n);
1755
1756         user_preset_path = Glib::build_filename (v);
1757
1758         if (g_mkdir_with_parents (user_preset_path.c_str(), 0775) < 0) {
1759                 error << string_compose (_("Cannot create user plugin presets folder (%1)"), user_preset_path) << endmsg;
1760                 return false;
1761         }
1762
1763         TRACE_API ("get current preset\n");
1764         if (unit->GetAUPreset (propertyList) != noErr) {
1765                 return false;
1766         }
1767
1768         // add the actual preset name */
1769
1770         v.push_back (preset_name + preset_suffix);
1771
1772         // rebuild
1773
1774         user_preset_path = Glib::build_filename (v);
1775
1776         set_preset_name_in_plist (propertyList, preset_name);
1777
1778         if (save_property_list (propertyList, user_preset_path)) {
1779                 error << string_compose (_("Saving plugin state to %1 failed"), user_preset_path) << endmsg;
1780                 ret = false;
1781         }
1782
1783         CFRelease(propertyList);
1784
1785         return string ("file:///") + user_preset_path;
1786 #else
1787         if (!seen_saving_message) {
1788                 info << string_compose (_("Saving AudioUnit presets is not supported in this build of %1. Consider paying for a newer version"),
1789                                         PROGRAM_NAME)
1790                      << endmsg;
1791                 seen_saving_message = true;
1792         }
1793         return string();
1794 #endif
1795 }
1796
1797 //-----------------------------------------------------------------------------
1798 // this is just a little helper function used by GetAUComponentDescriptionFromPresetFile()
1799 static SInt32
1800 GetDictionarySInt32Value(CFDictionaryRef inAUStateDictionary, CFStringRef inDictionaryKey, Boolean * outSuccess)
1801 {
1802         CFNumberRef cfNumber;
1803         SInt32 numberValue = 0;
1804         Boolean dummySuccess;
1805
1806         if (outSuccess == NULL)
1807                 outSuccess = &dummySuccess;
1808         if ( (inAUStateDictionary == NULL) || (inDictionaryKey == NULL) )
1809         {
1810                 *outSuccess = FALSE;
1811                 return 0;
1812         }
1813
1814         cfNumber = (CFNumberRef) CFDictionaryGetValue(inAUStateDictionary, inDictionaryKey);
1815         if (cfNumber == NULL)
1816         {
1817                 *outSuccess = FALSE;
1818                 return 0;
1819         }
1820         *outSuccess = CFNumberGetValue(cfNumber, kCFNumberSInt32Type, &numberValue);
1821         if (*outSuccess)
1822                 return numberValue;
1823         else
1824                 return 0;
1825 }
1826
1827 static OSStatus
1828 GetAUComponentDescriptionFromStateData(CFPropertyListRef inAUStateData, ComponentDescription * outComponentDescription)
1829 {
1830         CFDictionaryRef auStateDictionary;
1831         ComponentDescription tempDesc = {0,0,0,0,0};
1832         SInt32 versionValue;
1833         Boolean gotValue;
1834
1835         if ( (inAUStateData == NULL) || (outComponentDescription == NULL) )
1836                 return paramErr;
1837
1838         // the property list for AU state data must be of the dictionary type
1839         if (CFGetTypeID(inAUStateData) != CFDictionaryGetTypeID()) {
1840                 return kAudioUnitErr_InvalidPropertyValue;
1841         }
1842
1843         auStateDictionary = (CFDictionaryRef)inAUStateData;
1844
1845         // first check to make sure that the version of the AU state data is one that we know understand
1846         // XXX should I really do this?  later versions would probably still hold these ID keys, right?
1847         versionValue = GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetVersionKey), &gotValue);
1848
1849         if (!gotValue) {
1850                 return kAudioUnitErr_InvalidPropertyValue;
1851         }
1852 #define kCurrentSavedStateVersion 0
1853         if (versionValue != kCurrentSavedStateVersion) {
1854                 return kAudioUnitErr_InvalidPropertyValue;
1855         }
1856
1857         // grab the ComponentDescription values from the AU state data
1858         tempDesc.componentType = (OSType) GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetTypeKey), NULL);
1859         tempDesc.componentSubType = (OSType) GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetSubtypeKey), NULL);
1860         tempDesc.componentManufacturer = (OSType) GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetManufacturerKey), NULL);
1861         // zero values are illegit for specific ComponentDescriptions, so zero for any value means that there was an error
1862         if ( (tempDesc.componentType == 0) || (tempDesc.componentSubType == 0) || (tempDesc.componentManufacturer == 0) )
1863                 return kAudioUnitErr_InvalidPropertyValue;
1864
1865         *outComponentDescription = tempDesc;
1866         return noErr;
1867 }
1868
1869
1870 static bool au_preset_filter (const string& str, void* arg)
1871 {
1872         /* Not a dotfile, has a prefix before a period, suffix is aupreset */
1873
1874         bool ret;
1875
1876         ret = (str[0] != '.' && str.length() > 9 && str.find (preset_suffix) == (str.length() - preset_suffix.length()));
1877
1878         if (ret && arg) {
1879
1880                 /* check the preset file path name against this plugin
1881                    ID. The idea is that all preset files for this plugin
1882                    include "<manufacturer>/<plugin-name>" in their path.
1883                 */
1884
1885                 Plugin* p = (Plugin *) arg;
1886                 string match = p->maker();
1887                 match += '/';
1888                 match += p->name();
1889
1890                 ret = str.find (match) != string::npos;
1891
1892                 if (ret == false) {
1893                         string m = p->maker ();
1894                         string n = p->name ();
1895                         strip_whitespace_edges (m);
1896                         strip_whitespace_edges (n);
1897                         match = m;
1898                         match += '/';
1899                         match += n;
1900
1901                         ret = str.find (match) != string::npos;
1902                 }
1903         }
1904
1905         return ret;
1906 }
1907
1908 bool
1909 check_and_get_preset_name (Component component, const string& pathstr, string& preset_name)
1910 {
1911         OSStatus status;
1912         CFPropertyListRef plist;
1913         ComponentDescription presetDesc;
1914         bool ret = false;
1915
1916         plist = load_property_list (pathstr);
1917
1918         if (!plist) {
1919                 return ret;
1920         }
1921
1922         // get the ComponentDescription from the AU preset file
1923
1924         status = GetAUComponentDescriptionFromStateData(plist, &presetDesc);
1925
1926         if (status == noErr) {
1927                 if (ComponentAndDescriptionMatch_Loosely(component, &presetDesc)) {
1928
1929                         /* try to get the preset name from the property list */
1930
1931                         if (CFGetTypeID(plist) == CFDictionaryGetTypeID()) {
1932
1933                                 const void* psk = CFDictionaryGetValue ((CFMutableDictionaryRef)plist, CFSTR(kAUPresetNameKey));
1934
1935                                 if (psk) {
1936
1937                                         const char* p = CFStringGetCStringPtr ((CFStringRef) psk, kCFStringEncodingUTF8);
1938
1939                                         if (!p) {
1940                                                 char buf[PATH_MAX+1];
1941
1942                                                 if (CFStringGetCString ((CFStringRef)psk, buf, sizeof (buf), kCFStringEncodingUTF8)) {
1943                                                         preset_name = buf;
1944                                                 }
1945                                         }
1946                                 }
1947                         }
1948                 }
1949         }
1950
1951         CFRelease (plist);
1952
1953         return true;
1954 }
1955
1956 std::string
1957 AUPlugin::current_preset() const
1958 {
1959         string preset_name;
1960
1961 #ifdef AU_STATE_SUPPORT
1962         CFPropertyListRef propertyList;
1963
1964         TRACE_API ("get current preset for current_preset()\n");
1965         if (unit->GetAUPreset (propertyList) == noErr) {
1966                 preset_name = get_preset_name_in_plist (propertyList);
1967                 CFRelease(propertyList);
1968         }
1969 #endif
1970         return preset_name;
1971 }
1972
1973 void
1974 AUPlugin::find_presets ()
1975 {
1976 #ifdef AU_STATE_SUPPORT
1977         vector<string*>* preset_files;
1978         PathScanner scanner;
1979
1980         user_preset_map.clear ();
1981
1982         preset_files = scanner (preset_search_path, au_preset_filter, this, true, true, -1, true);
1983
1984         if (!preset_files) {
1985                 return;
1986         }
1987
1988         for (vector<string*>::iterator x = preset_files->begin(); x != preset_files->end(); ++x) {
1989
1990                 string path = *(*x);
1991                 string preset_name;
1992
1993                 /* make an initial guess at the preset name using the path */
1994
1995                 preset_name = Glib::path_get_basename (path);
1996                 preset_name = preset_name.substr (0, preset_name.find_last_of ('.'));
1997
1998                 /* check that this preset file really matches this plugin
1999                    and potentially get the "real" preset name from
2000                    within the file.
2001                 */
2002
2003                 if (check_and_get_preset_name (get_comp()->Comp(), path, preset_name)) {
2004                         user_preset_map[preset_name] = path;
2005                 }
2006
2007                 delete *x;
2008         }
2009
2010         delete preset_files;
2011
2012         /* now fill the vector<string> with the names we have */
2013
2014         for (UserPresetMap::iterator i = user_preset_map.begin(); i != user_preset_map.end(); ++i) {
2015                 _presets.insert (make_pair (i->second, Plugin::PresetRecord (i->second, i->first)));
2016         }
2017
2018         /* add factory presets */
2019
2020         for (FactoryPresetMap::iterator i = factory_preset_map.begin(); i != factory_preset_map.end(); ++i) {
2021                 /* XXX: dubious */
2022                 string const uri = string_compose ("%1", _presets.size ());
2023                 _presets.insert (make_pair (uri, Plugin::PresetRecord (uri, i->first)));
2024         }
2025
2026 #endif
2027 }
2028
2029 bool
2030 AUPlugin::has_editor () const
2031 {
2032         // even if the plugin doesn't have its own editor, the AU API can be used
2033         // to create one that looks native.
2034         return true;
2035 }
2036
2037 AUPluginInfo::AUPluginInfo (boost::shared_ptr<CAComponentDescription> d)
2038         : descriptor (d)
2039 {
2040         type = ARDOUR::AudioUnit;
2041 }
2042
2043 AUPluginInfo::~AUPluginInfo ()
2044 {
2045         type = ARDOUR::AudioUnit;
2046 }
2047
2048 PluginPtr
2049 AUPluginInfo::load (Session& session)
2050 {
2051         try {
2052                 PluginPtr plugin;
2053
2054                 TRACE_API ("load AU as a component\n");
2055                 boost::shared_ptr<CAComponent> comp (new CAComponent(*descriptor));
2056
2057                 if (!comp->IsValid()) {
2058                         error << ("AudioUnit: not a valid Component") << endmsg;
2059                 } else {
2060                         plugin.reset (new AUPlugin (session.engine(), session, comp));
2061                 }
2062
2063                 AUPluginInfo *aup = new AUPluginInfo (*this);
2064                 plugin->set_info (PluginInfoPtr (aup));
2065                 boost::dynamic_pointer_cast<AUPlugin> (plugin)->set_fixed_size_buffers (aup->creator == "Universal Audio");
2066                 return plugin;
2067         }
2068
2069         catch (failed_constructor &err) {
2070                 return PluginPtr ();
2071         }
2072 }
2073
2074 Glib::ustring
2075 AUPluginInfo::au_cache_path ()
2076 {
2077         return Glib::build_filename (ARDOUR::user_config_directory().to_string(), "au_cache");
2078 }
2079
2080 PluginInfoList*
2081 AUPluginInfo::discover ()
2082 {
2083         XMLTree tree;
2084
2085         if (!Glib::file_test (au_cache_path(), Glib::FILE_TEST_EXISTS)) {
2086                 ARDOUR::BootMessage (_("Discovering AudioUnit plugins (could take some time ...)"));
2087         }
2088
2089         PluginInfoList* plugs = new PluginInfoList;
2090
2091 #if 0
2092         discover_fx (*plugs);
2093         discover_music (*plugs);
2094         discover_generators (*plugs);
2095         discover_instruments (*plugs);
2096 #endif
2097
2098         return plugs;
2099 }
2100
2101 void
2102 AUPluginInfo::discover_music (PluginInfoList& plugs)
2103 {
2104         CAComponentDescription desc;
2105         desc.componentFlags = 0;
2106         desc.componentFlagsMask = 0;
2107         desc.componentSubType = 0;
2108         desc.componentManufacturer = 0;
2109         desc.componentType = kAudioUnitType_MusicEffect;
2110
2111         discover_by_description (plugs, desc);
2112 }
2113
2114 void
2115 AUPluginInfo::discover_fx (PluginInfoList& plugs)
2116 {
2117         CAComponentDescription desc;
2118         desc.componentFlags = 0;
2119         desc.componentFlagsMask = 0;
2120         desc.componentSubType = 0;
2121         desc.componentManufacturer = 0;
2122         desc.componentType = kAudioUnitType_Effect;
2123
2124         discover_by_description (plugs, desc);
2125 }
2126
2127 void
2128 AUPluginInfo::discover_generators (PluginInfoList& plugs)
2129 {
2130         CAComponentDescription desc;
2131         desc.componentFlags = 0;
2132         desc.componentFlagsMask = 0;
2133         desc.componentSubType = 0;
2134         desc.componentManufacturer = 0;
2135         desc.componentType = kAudioUnitType_Generator;
2136
2137         discover_by_description (plugs, desc);
2138 }
2139
2140 void
2141 AUPluginInfo::discover_instruments (PluginInfoList& plugs)
2142 {
2143         CAComponentDescription desc;
2144         desc.componentFlags = 0;
2145         desc.componentFlagsMask = 0;
2146         desc.componentSubType = 0;
2147         desc.componentManufacturer = 0;
2148         desc.componentType = kAudioUnitType_MusicDevice;
2149
2150         discover_by_description (plugs, desc);
2151 }
2152
2153 void
2154 AUPluginInfo::discover_by_description (PluginInfoList& plugs, CAComponentDescription& desc)
2155 {
2156         Component comp = 0;
2157
2158         comp = FindNextComponent (NULL, &desc);
2159
2160         while (comp != NULL) {
2161                 CAComponentDescription temp;
2162                 GetComponentInfo (comp, &temp, NULL, NULL, NULL);
2163
2164                 AUPluginInfoPtr info (new AUPluginInfo
2165                                       (boost::shared_ptr<CAComponentDescription> (new CAComponentDescription(temp))));
2166
2167                 /* although apple designed the subtype field to be a "category" indicator,
2168                    its really turned into a plugin ID field for a given manufacturer. Hence
2169                    there are no categories for AudioUnits. However, to keep the plugins
2170                    showing up under "categories", we'll use the "type" as a high level
2171                    selector.
2172
2173                    NOTE: no panners, format converters or i/o AU's for our purposes
2174                  */
2175
2176                 switch (info->descriptor->Type()) {
2177                 case kAudioUnitType_Panner:
2178                 case kAudioUnitType_OfflineEffect:
2179                 case kAudioUnitType_FormatConverter:
2180                         continue;
2181
2182                 case kAudioUnitType_Output:
2183                         info->category = _("AudioUnit Outputs");
2184                         break;
2185                 case kAudioUnitType_MusicDevice:
2186                         info->category = _("AudioUnit Instruments");
2187                         break;
2188                 case kAudioUnitType_MusicEffect:
2189                         info->category = _("AudioUnit MusicEffects");
2190                         break;
2191                 case kAudioUnitType_Effect:
2192                         info->category = _("AudioUnit Effects");
2193                         break;
2194                 case kAudioUnitType_Mixer:
2195                         info->category = _("AudioUnit Mixers");
2196                         break;
2197                 case kAudioUnitType_Generator:
2198                         info->category = _("AudioUnit Generators");
2199                         break;
2200                 default:
2201                         info->category = _("AudioUnit (Unknown)");
2202                         break;
2203                 }
2204
2205                 AUPluginInfo::get_names (temp, info->name, info->creator);
2206
2207                 info->type = ARDOUR::AudioUnit;
2208                 info->unique_id = stringify_descriptor (*info->descriptor);
2209
2210                 /* XXX not sure of the best way to handle plugin versioning yet
2211                  */
2212
2213                 CAComponent cacomp (*info->descriptor);
2214
2215                 if (cacomp.GetResourceVersion (info->version) != noErr) {
2216                         info->version = 0;
2217                 }
2218
2219                 if (cached_io_configuration (info->unique_id, info->version, cacomp, info->cache, info->name)) {
2220
2221                         /* here we have to map apple's wildcard system to a simple pair
2222                            of values. in ::can_do() we use the whole system, but here
2223                            we need a single pair of values. XXX probably means we should
2224                            remove any use of these values.
2225                         */
2226
2227                         info->n_inputs.set (DataType::AUDIO, info->cache.io_configs.front().first);
2228                         info->n_outputs.set (DataType::AUDIO, info->cache.io_configs.front().second);
2229
2230                         cerr << "detected AU: " << info->name.c_str() << "  (" << info->cache.io_configs.size() << " i/o configurations) - " << info->unique_id << endl;
2231
2232                         plugs.push_back (info);
2233
2234                 } else {
2235                         error << string_compose (_("Cannot get I/O configuration info for AU %1"), info->name) << endmsg;
2236                 }
2237
2238                 comp = FindNextComponent (comp, &desc);
2239         }
2240 }
2241
2242 bool
2243 AUPluginInfo::cached_io_configuration (const std::string& unique_id,
2244                                        UInt32 version,
2245                                        CAComponent& comp,
2246                                        AUPluginCachedInfo& cinfo,
2247                                        const std::string& name)
2248 {
2249         std::string id;
2250         char buf[32];
2251
2252         /* concatenate unique ID with version to provide a key for cached info lookup.
2253            this ensures we don't get stale information, or should if plugin developers
2254            follow Apple "guidelines".
2255          */
2256
2257         snprintf (buf, sizeof (buf), "%u", (uint32_t) version);
2258         id = unique_id;
2259         id += '/';
2260         id += buf;
2261
2262         CachedInfoMap::iterator cim = cached_info.find (id);
2263
2264         if (cim != cached_info.end()) {
2265                 cinfo = cim->second;
2266                 return true;
2267         }
2268
2269         CAAudioUnit unit;
2270         AUChannelInfo* channel_info;
2271         UInt32 cnt;
2272         int ret;
2273
2274         ARDOUR::BootMessage (string_compose (_("Checking AudioUnit: %1"), name));
2275
2276         try {
2277
2278                 if (CAAudioUnit::Open (comp, unit) != noErr) {
2279                         return false;
2280                 }
2281
2282         } catch (...) {
2283
2284                 warning << string_compose (_("Could not load AU plugin %1 - ignored"), name) << endmsg;
2285                 cerr << string_compose (_("Could not load AU plugin %1 - ignored"), name) << endl;
2286                 return false;
2287
2288         }
2289
2290         TRACE_API ("get AU channel info\n");
2291         if ((ret = unit.GetChannelInfo (&channel_info, cnt)) < 0) {
2292                 return false;
2293         }
2294
2295         if (ret > 0) {
2296                 /* no explicit info available */
2297
2298                 cinfo.io_configs.push_back (pair<int,int> (-1, -1));
2299
2300         } else {
2301
2302                 /* store each configuration */
2303
2304                 for (uint32_t n = 0; n < cnt; ++n) {
2305                         cinfo.io_configs.push_back (pair<int,int> (channel_info[n].inChannels,
2306                                                                    channel_info[n].outChannels));
2307                 }
2308
2309                 free (channel_info);
2310         }
2311
2312         add_cached_info (id, cinfo);
2313         save_cached_info ();
2314
2315         return true;
2316 }
2317
2318 void
2319 AUPluginInfo::add_cached_info (const std::string& id, AUPluginCachedInfo& cinfo)
2320 {
2321         cached_info[id] = cinfo;
2322 }
2323
2324 #define AU_CACHE_VERSION "2.0"
2325
2326 void
2327 AUPluginInfo::save_cached_info ()
2328 {
2329         XMLNode* node;
2330
2331         node = new XMLNode (X_("AudioUnitPluginCache"));
2332         node->add_property( "version", AU_CACHE_VERSION );
2333
2334         for (map<string,AUPluginCachedInfo>::iterator i = cached_info.begin(); i != cached_info.end(); ++i) {
2335                 XMLNode* parent = new XMLNode (X_("plugin"));
2336                 parent->add_property ("id", i->first);
2337                 node->add_child_nocopy (*parent);
2338
2339                 for (vector<pair<int, int> >::iterator j = i->second.io_configs.begin(); j != i->second.io_configs.end(); ++j) {
2340
2341                         XMLNode* child = new XMLNode (X_("io"));
2342                         char buf[32];
2343
2344                         snprintf (buf, sizeof (buf), "%d", j->first);
2345                         child->add_property (X_("in"), buf);
2346                         snprintf (buf, sizeof (buf), "%d", j->second);
2347                         child->add_property (X_("out"), buf);
2348                         parent->add_child_nocopy (*child);
2349                 }
2350
2351         }
2352
2353         Glib::ustring path = au_cache_path ();
2354         XMLTree tree;
2355
2356         tree.set_root (node);
2357
2358         if (!tree.write (path)) {
2359                 error << string_compose (_("could not save AU cache to %1"), path) << endmsg;
2360                 unlink (path.c_str());
2361         }
2362 }
2363
2364 int
2365 AUPluginInfo::load_cached_info ()
2366 {
2367         Glib::ustring path = au_cache_path ();
2368         XMLTree tree;
2369
2370         if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
2371                 return 0;
2372         }
2373
2374         if ( !tree.read (path) ) {
2375                 error << "au_cache is not a valid XML file.  AU plugins will be re-scanned" << endmsg;
2376                 return -1;
2377         }
2378
2379         const XMLNode* root (tree.root());
2380
2381         if (root->name() != X_("AudioUnitPluginCache")) {
2382                 return -1;
2383         }
2384
2385         //initial version has incorrectly stored i/o info, and/or garbage chars.
2386         const XMLProperty* version = root->property(X_("version"));
2387         if (! ((version != NULL) && (version->value() == X_(AU_CACHE_VERSION)))) {
2388                 error << "au_cache is not correct version.  AU plugins will be re-scanned" << endmsg;
2389                 return -1;
2390         }
2391
2392         cached_info.clear ();
2393
2394         const XMLNodeList children = root->children();
2395
2396         for (XMLNodeConstIterator iter = children.begin(); iter != children.end(); ++iter) {
2397
2398                 const XMLNode* child = *iter;
2399
2400                 if (child->name() == X_("plugin")) {
2401
2402                         const XMLNode* gchild;
2403                         const XMLNodeList gchildren = child->children();
2404                         const XMLProperty* prop = child->property (X_("id"));
2405
2406                         if (!prop) {
2407                                 continue;
2408                         }
2409
2410                         string id = prop->value();
2411                         string fixed;
2412                         string version;
2413
2414                         string::size_type slash = id.find_last_of ('/');
2415
2416                         if (slash == string::npos) {
2417                                 continue;
2418                         }
2419
2420                         version = id.substr (slash);
2421                         id = id.substr (0, slash);
2422                         fixed = AUPlugin::maybe_fix_broken_au_id (id);
2423
2424                         if (fixed.empty()) {
2425                                 error << string_compose (_("Your AudioUnit configuration cache contains an AU plugin whose ID cannot be understood - ignored (%1)"), id) << endmsg;
2426                                 continue;
2427                         }
2428
2429                         id = fixed;
2430                         id += version;
2431
2432                         AUPluginCachedInfo cinfo;
2433
2434                         for (XMLNodeConstIterator giter = gchildren.begin(); giter != gchildren.end(); giter++) {
2435
2436                                 gchild = *giter;
2437
2438                                 if (gchild->name() == X_("io")) {
2439
2440                                         int in;
2441                                         int out;
2442                                         const XMLProperty* iprop;
2443                                         const XMLProperty* oprop;
2444
2445                                         if (((iprop = gchild->property (X_("in"))) != 0) &&
2446                                             ((oprop = gchild->property (X_("out"))) != 0)) {
2447                                                 in = atoi (iprop->value());
2448                                                 out = atoi (oprop->value());
2449
2450                                                 cinfo.io_configs.push_back (pair<int,int> (in, out));
2451                                         }
2452                                 }
2453                         }
2454
2455                         if (cinfo.io_configs.size()) {
2456                                 add_cached_info (id, cinfo);
2457                         }
2458                 }
2459         }
2460
2461         return 0;
2462 }
2463
2464 void
2465 AUPluginInfo::get_names (CAComponentDescription& comp_desc, std::string& name, std::string& maker)
2466 {
2467         CFStringRef itemName = NULL;
2468
2469         // Marc Poirier-style item name
2470         CAComponent auComponent (comp_desc);
2471         if (auComponent.IsValid()) {
2472                 CAComponentDescription dummydesc;
2473                 Handle nameHandle = NewHandle(sizeof(void*));
2474                 if (nameHandle != NULL) {
2475                         OSErr err = GetComponentInfo(auComponent.Comp(), &dummydesc, nameHandle, NULL, NULL);
2476                         if (err == noErr) {
2477                                 ConstStr255Param nameString = (ConstStr255Param) (*nameHandle);
2478                                 if (nameString != NULL) {
2479                                         itemName = CFStringCreateWithPascalString(kCFAllocatorDefault, nameString, CFStringGetSystemEncoding());
2480                                 }
2481                         }
2482                         DisposeHandle(nameHandle);
2483                 }
2484         }
2485
2486         // if Marc-style fails, do the original way
2487         if (itemName == NULL) {
2488                 CFStringRef compTypeString = UTCreateStringForOSType(comp_desc.componentType);
2489                 CFStringRef compSubTypeString = UTCreateStringForOSType(comp_desc.componentSubType);
2490                 CFStringRef compManufacturerString = UTCreateStringForOSType(comp_desc.componentManufacturer);
2491
2492                 itemName = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%@ - %@ - %@"),
2493                         compTypeString, compManufacturerString, compSubTypeString);
2494
2495                 if (compTypeString != NULL)
2496                         CFRelease(compTypeString);
2497                 if (compSubTypeString != NULL)
2498                         CFRelease(compSubTypeString);
2499                 if (compManufacturerString != NULL)
2500                         CFRelease(compManufacturerString);
2501         }
2502
2503         string str = CFStringRefToStdString(itemName);
2504         string::size_type colon = str.find (':');
2505
2506         if (colon) {
2507                 name = str.substr (colon+1);
2508                 maker = str.substr (0, colon);
2509                 strip_whitespace_edges (maker);
2510                 strip_whitespace_edges (name);
2511         } else {
2512                 name = str;
2513                 maker = "unknown";
2514                 strip_whitespace_edges (name);
2515         }
2516 }
2517
2518 std::string
2519 AUPluginInfo::stringify_descriptor (const CAComponentDescription& desc)
2520 {
2521         stringstream s;
2522
2523         /* note: OSType is a compiler-implemenation-defined value,
2524            historically a 32 bit integer created with a multi-character
2525            constant such as 'abcd'. It is, fundamentally, an abomination.
2526         */
2527
2528         s << desc.Type();
2529         s << '-';
2530         s << desc.SubType();
2531         s << '-';
2532         s << desc.Manu();
2533
2534         return s.str();
2535 }
2536
2537 bool
2538 AUPluginInfo::needs_midi_input ()
2539 {
2540         return is_effect_with_midi_input () || is_instrument ();
2541 }
2542
2543 bool
2544 AUPluginInfo::is_effect () const
2545 {
2546         return is_effect_without_midi_input() || is_effect_with_midi_input();
2547 }
2548
2549 bool
2550 AUPluginInfo::is_effect_without_midi_input () const
2551 {
2552         return descriptor->IsAUFX();
2553 }
2554
2555 bool
2556 AUPluginInfo::is_effect_with_midi_input () const
2557 {
2558         return descriptor->IsAUFM();
2559 }
2560
2561 bool
2562 AUPluginInfo::is_instrument () const
2563 {
2564         return descriptor->IsMusicDevice();
2565 }