5d6204a22716f30022410a3d698a6f3a2b5ed243
[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 <fstream>
23 #include <errno.h>
24 #include <string.h>
25 #include <math.h>
26 #include <ctype.h>
27
28 #include "pbd/gstdio_compat.h"
29 #include "pbd/transmitter.h"
30 #include "pbd/xml++.h"
31 #include "pbd/convert.h"
32 #include "pbd/whitespace.h"
33 #include "pbd/file_utils.h"
34 #include "pbd/locale_guard.h"
35
36 #include <glibmm/threads.h>
37 #include <glibmm/fileutils.h>
38 #include <glibmm/miscutils.h>
39
40 #include "ardour/ardour.h"
41 #include "ardour/audioengine.h"
42 #include "ardour/audio_buffer.h"
43 #include "ardour/debug.h"
44 #include "ardour/midi_buffer.h"
45 #include "ardour/filesystem_paths.h"
46 #include "ardour/io.h"
47 #include "ardour/audio_unit.h"
48 #include "ardour/route.h"
49 #include "ardour/session.h"
50 #include "ardour/tempo.h"
51 #include "ardour/utils.h"
52
53 #include "CAAudioUnit.h"
54 #include "CAAUParameter.h"
55
56 #include <CoreFoundation/CoreFoundation.h>
57 #include <CoreServices/CoreServices.h>
58 #include <AudioUnit/AudioUnit.h>
59 #include <AudioToolbox/AudioUnitUtilities.h>
60 #ifdef WITH_CARBON
61 #include <Carbon/Carbon.h>
62 #endif
63
64 #ifdef COREAUDIO105
65 #define ArdourComponent Component
66 #define ArdourDescription ComponentDescription
67 #define ArdourFindNext FindNextComponent
68 #else
69 #define ArdourComponent AudioComponent
70 #define ArdourDescription AudioComponentDescription
71 #define ArdourFindNext AudioComponentFindNext
72 #endif
73
74 #include "pbd/i18n.h"
75
76 using namespace std;
77 using namespace PBD;
78 using namespace ARDOUR;
79
80 AUPluginInfo::CachedInfoMap AUPluginInfo::cached_info;
81
82 static string preset_search_path = "/Library/Audio/Presets:/Network/Library/Audio/Presets";
83 static string preset_suffix = ".aupreset";
84 static bool preset_search_path_initialized = false;
85 FILE * AUPluginInfo::_crashlog_fd = NULL;
86 bool AUPluginInfo::_scan_only = true;
87
88
89 static void au_blacklist (std::string id)
90 {
91         string fn = Glib::build_filename (ARDOUR::user_cache_directory(), "au_blacklist.txt");
92         FILE * blacklist_fd = NULL;
93         if (! (blacklist_fd = fopen(fn.c_str(), "a"))) {
94                 PBD::error << "Cannot append to AU blacklist for '"<< id <<"'\n";
95                 return;
96         }
97         assert(id.find("\n") == string::npos);
98         fprintf(blacklist_fd, "%s\n", id.c_str());
99         ::fclose(blacklist_fd);
100 }
101
102 static void au_unblacklist (std::string id)
103 {
104         string fn = Glib::build_filename (ARDOUR::user_cache_directory(), "au_blacklist.txt");
105         if (!Glib::file_test (fn, Glib::FILE_TEST_EXISTS)) {
106                 PBD::warning << "Expected Blacklist file does not exist.\n";
107                 return;
108         }
109
110         std::string bl;
111         {
112                 std::ifstream ifs(fn.c_str());
113                 bl.assign ((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
114         }
115
116         ::g_unlink (fn.c_str());
117
118         assert (!Glib::file_test (fn, Glib::FILE_TEST_EXISTS));
119         assert(id.find("\n") == string::npos);
120
121         id += "\n"; // add separator
122         const size_t rpl = bl.find(id);
123         if (rpl != string::npos) {
124                 bl.replace(rpl, id.size(), "");
125         }
126         if (bl.empty()) {
127                 return;
128         }
129
130         FILE * blacklist_fd = NULL;
131         if (! (blacklist_fd = fopen(fn.c_str(), "w"))) {
132                 PBD::error << "Cannot open AU blacklist.\n";
133                 return;
134         }
135         fprintf(blacklist_fd, "%s", bl.c_str());
136         ::fclose(blacklist_fd);
137 }
138
139 static bool is_blacklisted (std::string id)
140 {
141         string fn = Glib::build_filename (ARDOUR::user_cache_directory(), "au_blacklist.txt");
142         if (!Glib::file_test (fn, Glib::FILE_TEST_EXISTS)) {
143                 return false;
144         }
145         std::string bl;
146         std::ifstream ifs(fn.c_str());
147         bl.assign ((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
148
149         assert(id.find("\n") == string::npos);
150
151         id += "\n"; // add separator
152         const size_t rpl = bl.find(id);
153         if (rpl != string::npos) {
154                 return true;
155         }
156         return false;
157 }
158
159
160
161 static OSStatus
162 _render_callback(void *userData,
163                  AudioUnitRenderActionFlags *ioActionFlags,
164                  const AudioTimeStamp    *inTimeStamp,
165                  UInt32       inBusNumber,
166                  UInt32       inNumberFrames,
167                  AudioBufferList*       ioData)
168 {
169         if (userData) {
170                 return ((AUPlugin*)userData)->render_callback (ioActionFlags, inTimeStamp, inBusNumber, inNumberFrames, ioData);
171         }
172         return paramErr;
173 }
174
175 static OSStatus
176 _get_beat_and_tempo_callback (void*    userData,
177                               Float64* outCurrentBeat,
178                               Float64* outCurrentTempo)
179 {
180         if (userData) {
181                 return ((AUPlugin*)userData)->get_beat_and_tempo_callback (outCurrentBeat, outCurrentTempo);
182         }
183
184         return paramErr;
185 }
186
187 static OSStatus
188 _get_musical_time_location_callback (void *     userData,
189                                      UInt32 *   outDeltaSampleOffsetToNextBeat,
190                                      Float32 *  outTimeSig_Numerator,
191                                      UInt32 *   outTimeSig_Denominator,
192                                      Float64 *  outCurrentMeasureDownBeat)
193 {
194         if (userData) {
195                 return ((AUPlugin*)userData)->get_musical_time_location_callback (outDeltaSampleOffsetToNextBeat,
196                                                                                   outTimeSig_Numerator,
197                                                                                   outTimeSig_Denominator,
198                                                                                   outCurrentMeasureDownBeat);
199         }
200         return paramErr;
201 }
202
203 static OSStatus
204 _get_transport_state_callback (void*     userData,
205                                Boolean*  outIsPlaying,
206                                Boolean*  outTransportStateChanged,
207                                Float64*  outCurrentSampleInTimeLine,
208                                Boolean*  outIsCycling,
209                                Float64*  outCycleStartBeat,
210                                Float64*  outCycleEndBeat)
211 {
212         if (userData) {
213                 return ((AUPlugin*)userData)->get_transport_state_callback (
214                         outIsPlaying, outTransportStateChanged,
215                         outCurrentSampleInTimeLine, outIsCycling,
216                         outCycleStartBeat, outCycleEndBeat);
217         }
218         return paramErr;
219 }
220
221
222 static int
223 save_property_list (CFPropertyListRef propertyList, Glib::ustring path)
224
225 {
226         CFDataRef xmlData;
227         int fd;
228
229         // Convert the property list into XML data.
230
231         xmlData = CFPropertyListCreateXMLData( kCFAllocatorDefault, propertyList);
232
233         if (!xmlData) {
234                 error << _("Could not create XML version of property list") << endmsg;
235                 return -1;
236         }
237
238         // Write the XML data to the file.
239
240         fd = open (path.c_str(), O_WRONLY|O_CREAT|O_EXCL, 0664);
241         while (fd < 0) {
242                 if (errno == EEXIST) {
243                         error << string_compose (_("Preset file %1 exists; not overwriting"),
244                                                  path) << endmsg;
245                 } else {
246                         error << string_compose (_("Cannot open preset file %1 (%2)"),
247                                                  path, strerror (errno)) << endmsg;
248                 }
249                 CFRelease (xmlData);
250                 return -1;
251         }
252
253         size_t cnt = CFDataGetLength (xmlData);
254
255         if (write (fd, CFDataGetBytePtr (xmlData), cnt) != (ssize_t) cnt) {
256                 CFRelease (xmlData);
257                 close (fd);
258                 return -1;
259         }
260
261         close (fd);
262         return 0;
263 }
264
265
266 static CFPropertyListRef
267 load_property_list (Glib::ustring path)
268 {
269         int fd;
270         CFPropertyListRef propertyList = 0;
271         CFDataRef         xmlData;
272         CFStringRef       errorString;
273
274         // Read the XML file.
275
276         if ((fd = open (path.c_str(), O_RDONLY)) < 0) {
277                 return propertyList;
278
279         }
280
281         off_t len = lseek (fd, 0, SEEK_END);
282         char* buf = new char[len];
283         lseek (fd, 0, SEEK_SET);
284
285         if (read (fd, buf, len) != len) {
286                 delete [] buf;
287                 close (fd);
288                 return propertyList;
289         }
290
291         close (fd);
292
293         xmlData = CFDataCreateWithBytesNoCopy (kCFAllocatorDefault, (UInt8*) buf, len, kCFAllocatorNull);
294
295         // Reconstitute the dictionary using the XML data.
296
297         propertyList = CFPropertyListCreateFromXMLData( kCFAllocatorDefault,
298                                                         xmlData,
299                                                         kCFPropertyListImmutable,
300                                                         &errorString);
301
302         CFRelease (xmlData);
303         delete [] buf;
304
305         return propertyList;
306 }
307
308 //-----------------------------------------------------------------------------
309 static void
310 set_preset_name_in_plist (CFPropertyListRef plist, string preset_name)
311 {
312         if (!plist) {
313                 return;
314         }
315         CFStringRef pn = CFStringCreateWithCString (kCFAllocatorDefault, preset_name.c_str(), kCFStringEncodingUTF8);
316
317         if (CFGetTypeID (plist) == CFDictionaryGetTypeID()) {
318                 CFDictionarySetValue ((CFMutableDictionaryRef)plist, CFSTR(kAUPresetNameKey), pn);
319         }
320
321         CFRelease (pn);
322 }
323
324 //-----------------------------------------------------------------------------
325 static std::string
326 get_preset_name_in_plist (CFPropertyListRef plist)
327 {
328         std::string ret;
329
330         if (!plist) {
331                 return ret;
332         }
333
334         if (CFGetTypeID (plist) == CFDictionaryGetTypeID()) {
335                 const void *p = CFDictionaryGetValue ((CFMutableDictionaryRef)plist, CFSTR(kAUPresetNameKey));
336                 if (p) {
337                         CFStringRef str = (CFStringRef) p;
338                         int len = CFStringGetLength(str);
339                         len =  (len * 2) + 1;
340                         char local_buffer[len];
341                         if (CFStringGetCString (str, local_buffer, len, kCFStringEncodingUTF8)) {
342                                 ret = local_buffer;
343                         }
344                 }
345         }
346         return ret;
347 }
348
349 //--------------------------------------------------------------------------
350 // general implementation for ComponentDescriptionsMatch() and ComponentDescriptionsMatch_Loosely()
351 // if inIgnoreType is true, then the type code is ignored in the ComponentDescriptions
352 Boolean ComponentDescriptionsMatch_General(const ArdourDescription * inComponentDescription1, const ArdourDescription * inComponentDescription2, Boolean inIgnoreType);
353 Boolean ComponentDescriptionsMatch_General(const ArdourDescription * inComponentDescription1, const ArdourDescription * inComponentDescription2, Boolean inIgnoreType)
354 {
355         if ( (inComponentDescription1 == NULL) || (inComponentDescription2 == NULL) )
356                 return FALSE;
357
358         if ( (inComponentDescription1->componentSubType == inComponentDescription2->componentSubType)
359                         && (inComponentDescription1->componentManufacturer == inComponentDescription2->componentManufacturer) )
360         {
361                 // only sub-type and manufacturer IDs need to be equal
362                 if (inIgnoreType)
363                         return TRUE;
364                 // type, sub-type, and manufacturer IDs all need to be equal in order to call this a match
365                 else if (inComponentDescription1->componentType == inComponentDescription2->componentType)
366                         return TRUE;
367         }
368
369         return FALSE;
370 }
371
372 //--------------------------------------------------------------------------
373 // general implementation for ComponentAndDescriptionMatch() and ComponentAndDescriptionMatch_Loosely()
374 // if inIgnoreType is true, then the type code is ignored in the ComponentDescriptions
375 Boolean ComponentAndDescriptionMatch_General(ArdourComponent inComponent, const ArdourDescription * inComponentDescription, Boolean inIgnoreType);
376 Boolean ComponentAndDescriptionMatch_General(ArdourComponent inComponent, const ArdourDescription * inComponentDescription, Boolean inIgnoreType)
377 {
378         OSErr status;
379         ArdourDescription desc;
380
381         if ( (inComponent == NULL) || (inComponentDescription == NULL) )
382                 return FALSE;
383
384         // get the ComponentDescription of the input Component
385 #ifdef COREAUDIO105
386         status = GetComponentInfo(inComponent, &desc, NULL, NULL, NULL);
387 #else
388         status = AudioComponentGetDescription (inComponent, &desc);
389 #endif
390         if (status != noErr)
391                 return FALSE;
392
393         // check if the Component's ComponentDescription matches the input ComponentDescription
394         return ComponentDescriptionsMatch_General(&desc, inComponentDescription, inIgnoreType);
395 }
396
397 //--------------------------------------------------------------------------
398 // determine if 2 ComponentDescriptions are basically equal
399 // (by that, I mean that the important identifying values are compared,
400 // but not the ComponentDescription flags)
401 Boolean ComponentDescriptionsMatch(const ArdourDescription * inComponentDescription1, const ArdourDescription * inComponentDescription2)
402 {
403         return ComponentDescriptionsMatch_General(inComponentDescription1, inComponentDescription2, FALSE);
404 }
405
406 //--------------------------------------------------------------------------
407 // determine if 2 ComponentDescriptions have matching sub-type and manufacturer codes
408 Boolean ComponentDescriptionsMatch_Loose(const ArdourDescription * inComponentDescription1, const ArdourDescription * inComponentDescription2)
409 {
410         return ComponentDescriptionsMatch_General(inComponentDescription1, inComponentDescription2, TRUE);
411 }
412
413 //--------------------------------------------------------------------------
414 // determine if a ComponentDescription basically matches that of a particular Component
415 Boolean ComponentAndDescriptionMatch(ArdourComponent inComponent, const ArdourDescription * inComponentDescription)
416 {
417         return ComponentAndDescriptionMatch_General(inComponent, inComponentDescription, FALSE);
418 }
419
420 //--------------------------------------------------------------------------
421 // determine if a ComponentDescription matches only the sub-type and manufacturer codes of a particular Component
422 Boolean ComponentAndDescriptionMatch_Loosely(ArdourComponent inComponent, const ArdourDescription * inComponentDescription)
423 {
424         return ComponentAndDescriptionMatch_General(inComponent, inComponentDescription, TRUE);
425 }
426
427
428 AUPlugin::AUPlugin (AudioEngine& engine, Session& session, boost::shared_ptr<CAComponent> _comp)
429         : Plugin (engine, session)
430         , comp (_comp)
431         , unit (new CAAudioUnit)
432         , initialized (false)
433         , _last_nframes (0)
434         , _current_latency (UINT_MAX)
435         , _requires_fixed_size_buffers (false)
436         , buffers (0)
437         , variable_inputs (false)
438         , variable_outputs (false)
439         , configured_input_busses (0)
440         , configured_output_busses (0)
441         , bus_inputs (0)
442         , bus_outputs (0)
443         , input_maxbuf (0)
444         , input_offset (0)
445         , cb_offsets (0)
446         , input_buffers (0)
447         , input_map (0)
448         , frames_processed (0)
449         , audio_input_cnt (0)
450         , _parameter_listener (0)
451         , _parameter_listener_arg (0)
452         , transport_frame (0)
453         , transport_speed (0)
454         , last_transport_speed (0.0)
455 {
456         if (!preset_search_path_initialized) {
457                 Glib::ustring p = Glib::get_home_dir();
458                 p += "/Library/Audio/Presets:";
459                 p += preset_search_path;
460                 preset_search_path = p;
461                 preset_search_path_initialized = true;
462                 DEBUG_TRACE (DEBUG::AudioUnits, string_compose("AU Preset Path: %1\n", preset_search_path));
463         }
464
465         init ();
466 }
467
468
469 AUPlugin::AUPlugin (const AUPlugin& other)
470         : Plugin (other)
471         , comp (other.get_comp())
472         , unit (new CAAudioUnit)
473         , initialized (false)
474         , _last_nframes (0)
475         , _current_latency (UINT_MAX)
476         , _requires_fixed_size_buffers (false)
477         , buffers (0)
478         , variable_inputs (false)
479         , variable_outputs (false)
480         , configured_input_busses (0)
481         , configured_output_busses (0)
482         , bus_inputs (0)
483         , bus_outputs (0)
484         , input_maxbuf (0)
485         , input_offset (0)
486         , cb_offsets (0)
487         , input_buffers (0)
488         , input_map (0)
489         , frames_processed (0)
490         , _parameter_listener (0)
491         , _parameter_listener_arg (0)
492         , transport_frame (0)
493         , transport_speed (0)
494         , last_transport_speed (0.0)
495
496 {
497         init ();
498         for (size_t i = 0; i < descriptors.size(); ++i) {
499                 set_parameter (i, other.get_parameter (i));
500         }
501 }
502
503 AUPlugin::~AUPlugin ()
504 {
505         if (_parameter_listener) {
506                 AUListenerDispose (_parameter_listener);
507                 _parameter_listener = 0;
508         }
509
510         if (unit) {
511                 DEBUG_TRACE (DEBUG::AudioUnits, "about to call uninitialize in plugin destructor\n");
512                 unit->Uninitialize ();
513         }
514
515         free (buffers);
516         free (bus_inputs);
517         free (bus_outputs);
518         free (cb_offsets);
519 }
520
521 void
522 AUPlugin::discover_factory_presets ()
523 {
524         CFArrayRef presets;
525         UInt32 dataSize;
526         Boolean isWritable;
527         OSStatus err;
528
529         if ((err = unit->GetPropertyInfo (kAudioUnitProperty_FactoryPresets, kAudioUnitScope_Global, 0, &dataSize, &isWritable)) != 0) {
530                 DEBUG_TRACE (DEBUG::AudioUnits, "no factory presets for AU\n");
531                 return;
532         }
533
534         assert (dataSize == sizeof (presets));
535
536         if ((err = unit->GetProperty (kAudioUnitProperty_FactoryPresets, kAudioUnitScope_Global, 0, (void*) &presets, &dataSize)) != 0) {
537                 error << string_compose (_("cannot get factory preset info: errcode %1"), err) << endmsg;
538                 return;
539         }
540
541         if (!presets) {
542                 return;
543         }
544
545         CFIndex cnt = CFArrayGetCount (presets);
546
547         for (CFIndex i = 0; i < cnt; ++i) {
548                 AUPreset* preset = (AUPreset*) CFArrayGetValueAtIndex (presets, i);
549
550                 string name = CFStringRefToStdString (preset->presetName);
551                 factory_preset_map[name] = preset->presetNumber;
552                 DEBUG_TRACE (DEBUG::AudioUnits, string_compose("AU Factory Preset: %1 > %2\n", name, preset->presetNumber));
553         }
554
555         CFRelease (presets);
556 }
557
558 void
559 AUPlugin::init ()
560 {
561         OSErr err;
562         CFStringRef itemName;
563
564         /* these keep track of *configured* channel set up,
565            not potential set ups.
566         */
567
568         input_channels = -1;
569         output_channels = -1;
570         {
571                 CAComponentDescription temp;
572 #ifdef COREAUDIO105
573                 GetComponentInfo (comp.get()->Comp(), &temp, NULL, NULL, NULL);
574 #else
575                 AudioComponentGetDescription (comp.get()->Comp(), &temp);
576 #endif
577                 CFStringRef compTypeString = UTCreateStringForOSType(temp.componentType);
578                 CFStringRef compSubTypeString = UTCreateStringForOSType(temp.componentSubType);
579                 CFStringRef compManufacturerString = UTCreateStringForOSType(temp.componentManufacturer);
580                 itemName = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%@ - %@ - %@"),
581                                 compTypeString, compManufacturerString, compSubTypeString);
582                 if (compTypeString != NULL) CFRelease(compTypeString);
583                 if (compSubTypeString != NULL) CFRelease(compSubTypeString);
584                 if (compManufacturerString != NULL) CFRelease(compManufacturerString);
585         }
586
587         au_blacklist(CFStringRefToStdString(itemName));
588
589         try {
590                 DEBUG_TRACE (DEBUG::AudioUnits, "opening AudioUnit\n");
591                 err = CAAudioUnit::Open (*(comp.get()), *unit);
592         } catch (...) {
593                 error << _("Exception thrown during AudioUnit plugin loading - plugin ignored") << endmsg;
594                 throw failed_constructor();
595         }
596
597         if (err != noErr) {
598                 error << _("AudioUnit: Could not convert CAComponent to CAAudioUnit") << endmsg;
599                 throw failed_constructor ();
600         }
601
602         DEBUG_TRACE (DEBUG::AudioUnits, "count global elements\n");
603         unit->GetElementCount (kAudioUnitScope_Global, global_elements);
604         DEBUG_TRACE (DEBUG::AudioUnits, "count input elements\n");
605         unit->GetElementCount (kAudioUnitScope_Input, input_elements);
606         DEBUG_TRACE (DEBUG::AudioUnits, "count output elements\n");
607         unit->GetElementCount (kAudioUnitScope_Output, output_elements);
608
609         cb_offsets = (framecnt_t*) calloc (input_elements, sizeof(framecnt_t));
610         bus_inputs = (uint32_t*) calloc (input_elements, sizeof(uint32_t));
611         bus_outputs = (uint32_t*) calloc (output_elements, sizeof(uint32_t));
612
613         for (size_t i = 0; i < output_elements; ++i) {
614                 unit->Reset (kAudioUnitScope_Output, i);
615                 AudioStreamBasicDescription fmt;
616                 err = unit->GetFormat (kAudioUnitScope_Output, i, fmt);
617                 if (err == noErr) {
618                         bus_outputs[i] = fmt.mChannelsPerFrame;
619                 }
620                 CFStringRef name;
621                 UInt32 sz = sizeof (CFStringRef);
622                 if (AudioUnitGetProperty (unit->AU(), kAudioUnitProperty_ElementName, kAudioUnitScope_Output,
623                                         i, &name, &sz) == noErr
624                                 && sz > 0) {
625                         _bus_name_out.push_back (CFStringRefToStdString (name));
626                         CFRelease(name);
627                 } else {
628                         _bus_name_out.push_back (string_compose ("Audio-Bus %1", i));
629                 }
630         }
631
632         for (size_t i = 0; i < input_elements; ++i) {
633                 unit->Reset (kAudioUnitScope_Input, i);
634                 AudioStreamBasicDescription fmt;
635                 err = unit->GetFormat (kAudioUnitScope_Input, i, fmt);
636                 if (err == noErr) {
637                         bus_inputs[i] = fmt.mChannelsPerFrame;
638                 }
639                 CFStringRef name;
640                 UInt32 sz = sizeof (CFStringRef);
641                 if (AudioUnitGetProperty (unit->AU(), kAudioUnitProperty_ElementName, kAudioUnitScope_Input,
642                                         i, &name, &sz) == noErr
643                                 && sz > 0) {
644                         _bus_name_in.push_back (CFStringRefToStdString (name));
645                         CFRelease(name);
646                 } else {
647                         _bus_name_in.push_back (string_compose ("Audio-Bus %1", i));
648                 }
649         }
650
651         for (size_t i = 0; i < input_elements; ++i) {
652                 /* setup render callback: the plugin calls this to get input data */
653                 AURenderCallbackStruct renderCallbackInfo;
654                 renderCallbackInfo.inputProc = _render_callback;
655                 renderCallbackInfo.inputProcRefCon = this;
656                 DEBUG_TRACE (DEBUG::AudioUnits, "set render callback in input scope\n");
657                 if ((err = unit->SetProperty (kAudioUnitProperty_SetRenderCallback, kAudioUnitScope_Input,
658                                               i, (void*) &renderCallbackInfo, sizeof(renderCallbackInfo))) != 0) {
659                         error << string_compose (_("cannot install render callback (err = %1)"), err) << endmsg;
660                         throw failed_constructor();
661                 }
662         }
663
664         /* tell the plugin about tempo/meter/transport callbacks in case it wants them */
665
666         HostCallbackInfo info;
667         memset (&info, 0, sizeof (HostCallbackInfo));
668         info.hostUserData = this;
669         info.beatAndTempoProc = _get_beat_and_tempo_callback;
670         info.musicalTimeLocationProc = _get_musical_time_location_callback;
671         info.transportStateProc = _get_transport_state_callback;
672
673         //ignore result of this - don't care if the property isn't supported
674         DEBUG_TRACE (DEBUG::AudioUnits, "set host callbacks in global scope\n");
675         unit->SetProperty (kAudioUnitProperty_HostCallbacks,
676                            kAudioUnitScope_Global,
677                            0, //elementID
678                            &info,
679                            sizeof (HostCallbackInfo));
680
681         if (set_block_size (_session.get_block_size())) {
682                 error << _("AUPlugin: cannot set processing block size") << endmsg;
683                 throw failed_constructor();
684         }
685
686         create_parameter_listener (AUPlugin::_parameter_change_listener, this, 0.05);
687         discover_parameters ();
688         discover_factory_presets ();
689
690         // Plugin::setup_controls ();
691
692         au_unblacklist(CFStringRefToStdString(itemName));
693         if (itemName != NULL) CFRelease(itemName);
694 }
695
696 void
697 AUPlugin::discover_parameters ()
698 {
699         /* discover writable parameters */
700
701         AudioUnitScope scopes[] = {
702                 kAudioUnitScope_Global,
703                 kAudioUnitScope_Output,
704                 kAudioUnitScope_Input
705         };
706
707         descriptors.clear ();
708
709         for (uint32_t i = 0; i < sizeof (scopes) / sizeof (scopes[0]); ++i) {
710
711                 AUParamInfo param_info (unit->AU(), false, /* include read only */ true, scopes[i]);
712
713                 for (uint32_t i = 0; i < param_info.NumParams(); ++i) {
714
715                         AUParameterDescriptor d;
716
717                         d.id = param_info.ParamID (i);
718
719                         const CAAUParameter* param = param_info.GetParamInfo (d.id);
720                         const AudioUnitParameterInfo& info (param->ParamInfo());
721
722                         const int len = CFStringGetLength (param->GetName());
723                         char local_buffer[len*2];
724                         Boolean good = CFStringGetCString (param->GetName(), local_buffer ,len*2 , kCFStringEncodingUTF8);
725                         if (!good) {
726                                 d.label = "???";
727                         } else {
728                                 d.label = local_buffer;
729                         }
730
731                         d.scope = param_info.GetScope ();
732                         d.element = param_info.GetElement ();
733
734                         /* info.units to consider */
735                         /*
736                           kAudioUnitParameterUnit_Generic             = 0
737                           kAudioUnitParameterUnit_Indexed             = 1
738                           kAudioUnitParameterUnit_Boolean             = 2
739                           kAudioUnitParameterUnit_Percent             = 3
740                           kAudioUnitParameterUnit_Seconds             = 4
741                           kAudioUnitParameterUnit_SampleFrames        = 5
742                           kAudioUnitParameterUnit_Phase               = 6
743                           kAudioUnitParameterUnit_Rate                = 7
744                           kAudioUnitParameterUnit_Hertz               = 8
745                           kAudioUnitParameterUnit_Cents               = 9
746                           kAudioUnitParameterUnit_RelativeSemiTones   = 10
747                           kAudioUnitParameterUnit_MIDINoteNumber      = 11
748                           kAudioUnitParameterUnit_MIDIController      = 12
749                           kAudioUnitParameterUnit_Decibels            = 13
750                           kAudioUnitParameterUnit_LinearGain          = 14
751                           kAudioUnitParameterUnit_Degrees             = 15
752                           kAudioUnitParameterUnit_EqualPowerCrossfade = 16
753                           kAudioUnitParameterUnit_MixerFaderCurve1    = 17
754                           kAudioUnitParameterUnit_Pan                 = 18
755                           kAudioUnitParameterUnit_Meters              = 19
756                           kAudioUnitParameterUnit_AbsoluteCents       = 20
757                           kAudioUnitParameterUnit_Octaves             = 21
758                           kAudioUnitParameterUnit_BPM                 = 22
759                           kAudioUnitParameterUnit_Beats               = 23
760                           kAudioUnitParameterUnit_Milliseconds        = 24
761                           kAudioUnitParameterUnit_Ratio               = 25
762                         */
763
764                         /* info.flags to consider */
765
766                         /*
767
768                           kAudioUnitParameterFlag_CFNameRelease       = (1L << 4)
769                           kAudioUnitParameterFlag_HasClump            = (1L << 20)
770                           kAudioUnitParameterFlag_HasName             = (1L << 21)
771                           kAudioUnitParameterFlag_DisplayLogarithmic  = (1L << 22)
772                           kAudioUnitParameterFlag_IsHighResolution    = (1L << 23)
773                           kAudioUnitParameterFlag_NonRealTime         = (1L << 24)
774                           kAudioUnitParameterFlag_CanRamp             = (1L << 25)
775                           kAudioUnitParameterFlag_ExpertMode          = (1L << 26)
776                           kAudioUnitParameterFlag_HasCFNameString     = (1L << 27)
777                           kAudioUnitParameterFlag_IsGlobalMeta        = (1L << 28)
778                           kAudioUnitParameterFlag_IsElementMeta       = (1L << 29)
779                           kAudioUnitParameterFlag_IsReadable          = (1L << 30)
780                           kAudioUnitParameterFlag_IsWritable          = (1L << 31)
781                         */
782
783                         d.lower = info.minValue;
784                         d.upper = info.maxValue;
785                         d.normal = info.defaultValue;
786
787                         d.integer_step = (info.unit == kAudioUnitParameterUnit_Indexed);
788                         d.toggled = (info.unit == kAudioUnitParameterUnit_Boolean) ||
789                                 (d.integer_step && ((d.upper - d.lower) == 1.0));
790                         d.sr_dependent = (info.unit == kAudioUnitParameterUnit_SampleFrames);
791                         d.automatable = /* !d.toggled && -- ardour can automate toggles, can AU ? */
792                                 !(info.flags & kAudioUnitParameterFlag_NonRealTime) &&
793                                 (info.flags & kAudioUnitParameterFlag_IsWritable);
794
795                         d.logarithmic = (info.flags & kAudioUnitParameterFlag_DisplayLogarithmic);
796                         d.au_unit = info.unit;
797                         switch (info.unit) {
798                         case kAudioUnitParameterUnit_Decibels:
799                                 d.unit = ParameterDescriptor::DB;
800                                 break;
801                         case kAudioUnitParameterUnit_MIDINoteNumber:
802                                 d.unit = ParameterDescriptor::MIDI_NOTE;
803                                 break;
804                         case kAudioUnitParameterUnit_Hertz:
805                                 d.unit = ParameterDescriptor::HZ;
806                                 break;
807                         }
808
809                         d.min_unbound = 0; // lower is bound
810                         d.max_unbound = 0; // upper is bound
811                         d.update_steps();
812
813                         descriptors.push_back (d);
814
815                         uint32_t last_param = descriptors.size() - 1;
816                         parameter_map.insert (pair<uint32_t,uint32_t> (d.id, last_param));
817                         listen_to_parameter (last_param);
818                 }
819         }
820 }
821
822
823 static unsigned int
824 four_ints_to_four_byte_literal (unsigned char n[4])
825 {
826         /* this is actually implementation dependent. sigh. this is what gcc
827            and quite a few others do.
828          */
829         return ((n[0] << 24) + (n[1] << 16) + (n[2] << 8) + n[3]);
830 }
831
832 std::string
833 AUPlugin::maybe_fix_broken_au_id (const std::string& id)
834 {
835         if (isdigit (id[0])) {
836                 return id;
837         }
838
839         /* ID format is xxxx-xxxx-xxxx
840            where x maybe \xNN or a printable character.
841
842            Split at the '-' and and process each part into an integer.
843            Then put it back together.
844         */
845
846
847         unsigned char nascent[4];
848         const char* cstr = id.c_str();
849         const char* estr = cstr + id.size();
850         uint32_t n[3];
851         int in;
852         int next_int;
853         char short_buf[3];
854         stringstream s;
855
856         in = 0;
857         next_int = 0;
858         short_buf[2] = '\0';
859
860         while (*cstr && next_int < 4) {
861
862                 if (*cstr == '\\') {
863
864                         if (estr - cstr < 3) {
865
866                                 /* too close to the end for \xNN parsing: treat as literal characters */
867
868                                 nascent[in] = *cstr;
869                                 ++cstr;
870                                 ++in;
871
872                         } else {
873
874                                 if (cstr[1] == 'x' && isxdigit (cstr[2]) && isxdigit (cstr[3])) {
875
876                                         /* parse \xNN */
877
878                                         memcpy (short_buf, &cstr[2], 2);
879                                         nascent[in] = strtol (short_buf, NULL, 16);
880                                         cstr += 4;
881                                         ++in;
882
883                                 } else {
884
885                                         /* treat as literal characters */
886                                         nascent[in] = *cstr;
887                                         ++cstr;
888                                         ++in;
889                                 }
890                         }
891
892                 } else {
893
894                         nascent[in] = *cstr;
895                         ++cstr;
896                         ++in;
897                 }
898
899                 if (in && (in % 4 == 0)) {
900                         /* nascent is ready */
901                         n[next_int] = four_ints_to_four_byte_literal (nascent);
902                         in = 0;
903                         next_int++;
904
905                         /* swallow space-hyphen-space */
906
907                         if (next_int < 3) {
908                                 ++cstr;
909                                 ++cstr;
910                                 ++cstr;
911                         }
912                 }
913         }
914
915         if (next_int != 3) {
916                 goto err;
917         }
918
919         s << n[0] << '-' << n[1] << '-' << n[2];
920
921         return s.str();
922
923 err:
924         return string();
925 }
926
927 string
928 AUPlugin::unique_id () const
929 {
930         return AUPluginInfo::stringify_descriptor (comp->Desc());
931 }
932
933 const char *
934 AUPlugin::label () const
935 {
936         return _info->name.c_str();
937 }
938
939 uint32_t
940 AUPlugin::parameter_count () const
941 {
942         return descriptors.size();
943 }
944
945 float
946 AUPlugin::default_value (uint32_t port)
947 {
948         if (port < descriptors.size()) {
949                 return descriptors[port].normal;
950         }
951
952         return 0;
953 }
954
955 framecnt_t
956 AUPlugin::signal_latency () const
957 {
958         guint lat = g_atomic_int_get (&_current_latency);;
959         if (lat == UINT_MAX) {
960                 lat = unit->Latency() * _session.frame_rate();
961                 g_atomic_int_set (&_current_latency, lat);
962         }
963         return lat;
964 }
965
966 void
967 AUPlugin::set_parameter (uint32_t which, float val)
968 {
969         if (which >= descriptors.size()) {
970                 return;
971         }
972
973         if (get_parameter(which) == val) {
974                 return;
975         }
976
977         const AUParameterDescriptor& d (descriptors[which]);
978         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("set parameter %1 in scope %2 element %3 to %4\n", d.id, d.scope, d.element, val));
979         unit->SetParameter (d.id, d.scope, d.element, val);
980
981         /* tell the world what we did */
982
983         AudioUnitEvent theEvent;
984
985         theEvent.mEventType = kAudioUnitEvent_ParameterValueChange;
986         theEvent.mArgument.mParameter.mAudioUnit = unit->AU();
987         theEvent.mArgument.mParameter.mParameterID = d.id;
988         theEvent.mArgument.mParameter.mScope = d.scope;
989         theEvent.mArgument.mParameter.mElement = d.element;
990
991         DEBUG_TRACE (DEBUG::AudioUnits, "notify about parameter change\n");
992         /* Note the 1st argument, which means "Don't notify us about a change we made ourselves" */
993         AUEventListenerNotify (_parameter_listener, NULL, &theEvent);
994
995         Plugin::set_parameter (which, val);
996 }
997
998 float
999 AUPlugin::get_parameter (uint32_t which) const
1000 {
1001         float val = 0.0;
1002         if (which < descriptors.size()) {
1003                 const AUParameterDescriptor& d (descriptors[which]);
1004                 // DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("get value of parameter %1 in scope %2 element %3\n", d.id, d.scope, d.element));
1005                 unit->GetParameter(d.id, d.scope, d.element, val);
1006         }
1007         return val;
1008 }
1009
1010 int
1011 AUPlugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& pd) const
1012 {
1013         if (which < descriptors.size()) {
1014                 pd = descriptors[which];
1015                 return 0;
1016         }
1017         return -1;
1018 }
1019
1020 uint32_t
1021 AUPlugin::nth_parameter (uint32_t which, bool& ok) const
1022 {
1023         if (which < descriptors.size()) {
1024                 ok = true;
1025                 return which;
1026         }
1027         ok = false;
1028         return 0;
1029 }
1030
1031 void
1032 AUPlugin::activate ()
1033 {
1034         if (!initialized) {
1035                 OSErr err;
1036                 DEBUG_TRACE (DEBUG::AudioUnits, "call Initialize in activate()\n");
1037                 if ((err = unit->Initialize()) != noErr) {
1038                         error << string_compose (_("AUPlugin: %1 cannot initialize plugin (err = %2)"), name(), err) << endmsg;
1039                 } else {
1040                         frames_processed = 0;
1041                         initialized = true;
1042                 }
1043         }
1044 }
1045
1046 void
1047 AUPlugin::deactivate ()
1048 {
1049         DEBUG_TRACE (DEBUG::AudioUnits, "call Uninitialize in deactivate()\n");
1050         unit->Uninitialize ();
1051         initialized = false;
1052 }
1053
1054 void
1055 AUPlugin::flush ()
1056 {
1057         DEBUG_TRACE (DEBUG::AudioUnits, "call Reset in flush()\n");
1058         unit->GlobalReset ();
1059 }
1060
1061 bool
1062 AUPlugin::requires_fixed_size_buffers() const
1063 {
1064         return _requires_fixed_size_buffers;
1065 }
1066
1067
1068 int
1069 AUPlugin::set_block_size (pframes_t nframes)
1070 {
1071         bool was_initialized = initialized;
1072         UInt32 numFrames = nframes;
1073         OSErr err;
1074
1075         if (initialized) {
1076                 deactivate ();
1077         }
1078
1079         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("set MaximumFramesPerSlice in global scope to %1\n", numFrames));
1080         if ((err = unit->SetProperty (kAudioUnitProperty_MaximumFramesPerSlice, kAudioUnitScope_Global,
1081                                       0, &numFrames, sizeof (numFrames))) != noErr) {
1082                 error << string_compose (_("AU: cannot set max frames (err = %1)"), err) << endmsg;
1083                 return -1;
1084         }
1085
1086         if (was_initialized) {
1087                 activate ();
1088         }
1089
1090         return 0;
1091 }
1092
1093 bool
1094 AUPlugin::configure_io (ChanCount in, ChanCount out)
1095 {
1096         AudioStreamBasicDescription streamFormat;
1097         bool was_initialized = initialized;
1098         int32_t audio_out = out.n_audio();
1099         if (audio_input_cnt > 0) {
1100                 in.set (DataType::AUDIO, audio_input_cnt);
1101         }
1102         const int32_t audio_in = in.n_audio();
1103
1104         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("configure %1 for %2 in %3 out\n", name(), in, out));
1105
1106         if (initialized) {
1107                 //if we are already running with the requested i/o config, bail out here
1108                 if ( (audio_in==input_channels) && (audio_out==output_channels) ) {
1109                         return true;
1110                 } else {
1111                         deactivate ();
1112                 }
1113         }
1114
1115         streamFormat.mSampleRate = _session.frame_rate();
1116         streamFormat.mFormatID = kAudioFormatLinearPCM;
1117         streamFormat.mFormatFlags = kAudioFormatFlagIsFloat|kAudioFormatFlagIsPacked|kAudioFormatFlagIsNonInterleaved;
1118
1119 #ifdef __LITTLE_ENDIAN__
1120         /* relax */
1121 #else
1122         streamFormat.mFormatFlags |= kAudioFormatFlagIsBigEndian;
1123 #endif
1124
1125         streamFormat.mBitsPerChannel = 32;
1126         streamFormat.mFramesPerPacket = 1;
1127
1128         /* apple says that for non-interleaved data, these
1129          * values always refer to a single channel.
1130          */
1131         streamFormat.mBytesPerPacket = 4;
1132         streamFormat.mBytesPerFrame = 4;
1133
1134         configured_input_busses = 0;
1135         configured_output_busses = 0;
1136         /* reset busses */
1137         for (size_t i = 0; i < output_elements; ++i) {
1138                 unit->Reset (kAudioUnitScope_Output, i);
1139         }
1140         for (size_t i = 0; i < input_elements; ++i) {
1141                 unit->Reset (kAudioUnitScope_Input, i);
1142         }
1143
1144         /* now assign the channels to available busses */
1145         uint32_t used_in = 0;
1146         uint32_t used_out = 0;
1147
1148         if (variable_inputs || input_elements == 1) {
1149                 // we only ever use the first bus
1150                 if (input_elements > 1) {
1151                         warning << string_compose (_("AU %1 has multiple input busses and variable port count."), name()) << endmsg;
1152                 }
1153                 streamFormat.mChannelsPerFrame = audio_in;
1154                 if (set_stream_format (kAudioUnitScope_Input, 0, streamFormat) != 0) {
1155                         return false;
1156                 }
1157                 configured_input_busses = 1;
1158                 used_in = audio_in;
1159         } else {
1160                 configured_input_busses = 0;
1161                 uint32_t remain = audio_in;
1162                 for (uint32_t bus = 0; remain > 0 && bus < input_elements; ++bus) {
1163                         uint32_t cnt = std::min (remain, bus_inputs[bus]);
1164                         if (cnt == 0) { continue; }
1165                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("%1 configure input bus: %2 chn: %3", name(), bus, cnt));
1166
1167                         streamFormat.mChannelsPerFrame = cnt;
1168                         if (set_stream_format (kAudioUnitScope_Input, bus, streamFormat) != 0) {
1169                                 return false;
1170                         }
1171                         used_in += cnt;
1172                         ++configured_input_busses;
1173                         remain -= cnt;
1174                 }
1175         }
1176
1177         if (variable_outputs || output_elements == 1) {
1178                 if (output_elements > 1) {
1179                         warning << string_compose (_("AU %1 has multiple output busses and variable port count."), name()) << endmsg;
1180                 }
1181
1182                 streamFormat.mChannelsPerFrame = audio_out;
1183                 if (set_stream_format (kAudioUnitScope_Output, 0, streamFormat) != 0) {
1184                         return false;
1185                 }
1186                 configured_output_busses = 1;
1187                 used_out = audio_out;
1188         } else {
1189                 uint32_t remain = audio_out;
1190                 configured_output_busses = 0;
1191                 for (uint32_t bus = 0; remain > 0 && bus < output_elements; ++bus) {
1192                         uint32_t cnt = std::min (remain, bus_outputs[bus]);
1193                         if (cnt == 0) { continue; }
1194                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("%1 configure output bus: %2 chn: %3", name(), bus, cnt));
1195                         streamFormat.mChannelsPerFrame = cnt;
1196                         if (set_stream_format (kAudioUnitScope_Output, bus, streamFormat) != 0) {
1197                                 return false;
1198                         }
1199                         used_out += cnt;
1200                         remain -= cnt;
1201                         ++configured_output_busses;
1202                 }
1203         }
1204
1205         free (buffers);
1206         buffers = (AudioBufferList *) malloc (offsetof(AudioBufferList, mBuffers) +
1207                                               used_out * sizeof(::AudioBuffer));
1208
1209         input_channels = used_in;
1210         output_channels = used_out;
1211         /* reset plugin info to show currently configured state */
1212
1213         _info->n_inputs = ChanCount (DataType::AUDIO, used_in) + ChanCount (DataType::MIDI, _has_midi_input ? 1 : 0);
1214         _info->n_outputs = ChanCount (DataType::AUDIO, used_out);
1215
1216         if (was_initialized) {
1217                 activate ();
1218         }
1219
1220         return true;
1221 }
1222
1223 ChanCount
1224 AUPlugin::input_streams() const
1225 {
1226         ChanCount c;
1227         if (input_channels < 0) {
1228                 // force PluginIoReConfigure -- see also commit msg e38eb06
1229                 c.set (DataType::AUDIO, 0);
1230                 c.set (DataType::MIDI, 0);
1231         } else {
1232                 c.set (DataType::AUDIO, input_channels);
1233                 c.set (DataType::MIDI, _has_midi_input ? 1 : 0);
1234         }
1235         return c;
1236 }
1237
1238
1239 ChanCount
1240 AUPlugin::output_streams() const
1241 {
1242         ChanCount c;
1243         if (output_channels < 0) {
1244                 // force PluginIoReConfigure - see also commit msg e38eb06
1245                 c.set (DataType::AUDIO, 0);
1246                 c.set (DataType::MIDI, 0);
1247         } else {
1248                 c.set (DataType::AUDIO, output_channels);
1249                 c.set (DataType::MIDI, _has_midi_output ? 1 : 0);
1250         }
1251         return c;
1252 }
1253
1254 bool
1255 AUPlugin::can_support_io_configuration (const ChanCount& in, ChanCount& out, ChanCount* imprecise)
1256 {
1257         _output_configs.clear ();
1258         const int32_t audio_in = in.n_audio();
1259         AUPluginInfoPtr pinfo = boost::dynamic_pointer_cast<AUPluginInfo>(get_info());
1260
1261         /* lets check MIDI first */
1262
1263         if (in.n_midi() > 0 && !_has_midi_input && !imprecise) {
1264                 return false;
1265         }
1266
1267         vector<pair<int,int> > io_configs = pinfo->cache.io_configs;
1268
1269         if (input_elements > 1) {
1270                 const vector<pair<int,int> >& ioc (pinfo->cache.io_configs);
1271                 for (vector<pair<int,int> >::const_iterator i = ioc.begin(); i != ioc.end(); ++i) {
1272                         int32_t possible_in = i->first;
1273                         int32_t possible_out = i->second;
1274                         if (possible_in < 1 || possible_out < 1) {
1275                                 continue;
1276                         }
1277                         for (uint32_t i = 1; i < input_elements; ++i) {
1278                                 // can't use up-to bus_inputs[]
1279                                 // waves' SC-C6(s) for example fails to configure with only 1 input
1280                                 // on the 2nd bus.
1281                                 io_configs.push_back (pair<int,int> (possible_in + bus_inputs[i], possible_out));
1282                         }
1283                 }
1284         }
1285
1286         if (output_elements > 1) {
1287                 const vector<pair<int,int> >& ioc (pinfo->cache.io_configs);
1288                 for (vector<pair<int,int> >::const_iterator i = ioc.begin(); i != ioc.end(); ++i) {
1289                         int32_t possible_in = i->first;
1290                         int32_t possible_out = i->second;
1291                         if (possible_in < 1 || possible_out < 1) {
1292                                 continue;
1293                         }
1294                         for (uint32_t i = 1; i < output_elements; ++i) {
1295                                 int32_t c = bus_outputs[i];
1296                                 for (uint32_t j = 1; j < i; ++j) {
1297                                         c += bus_outputs [j];
1298                                 }
1299                                 io_configs.push_back (pair<int,int> (possible_in, possible_out + c));
1300                         }
1301                 }
1302         }
1303
1304         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("%1 has %2 IO configurations, looking for %3 in, %4 out\n",
1305                                                         name(), io_configs.size(), in, out));
1306
1307 #if 0
1308         printf ("AU I/O Configs %s %d\n", name(), io_configs.size());
1309         for (vector<pair<int,int> >::iterator i = io_configs.begin(); i != io_configs.end(); ++i) {
1310                 printf ("- I/O  %d / %d\n", i->first, i->second);
1311         }
1312 #endif
1313
1314         // preferred setting (provided by plugin_insert)
1315         const int preferred_out = out.n_audio ();
1316         bool found = false;
1317         bool exact_match = false;
1318
1319         /* kAudioUnitProperty_SupportedNumChannels
1320          * https://developer.apple.com/library/mac/documentation/MusicAudio/Conceptual/AudioUnitProgrammingGuide/TheAudioUnit/TheAudioUnit.html#//apple_ref/doc/uid/TP40003278-CH12-SW20
1321          *
1322          * - both fields are -1
1323          *   e.g. inChannels = -1 outChannels = -1
1324          *    This is the default case. Any number of input and output channels, as long as the numbers match
1325          *
1326          * - one field is -1, the other field is positive
1327          *   e.g. inChannels = -1 outChannels = 2
1328          *    Any number of input channels, exactly two output channels
1329          *
1330          * - one field is -1, the other field is -2
1331          *   e.g. inChannels = -1 outChannels = -2
1332          *    Any number of input channels, any number of output channels
1333          *
1334          * - both fields have non-negative values
1335          *   e.g. inChannels = 2 outChannels = 6
1336          *    Exactly two input channels, exactly six output channels
1337          *   e.g. inChannels = 0 outChannels = 2
1338          *    No input channels, exactly two output channels (such as for an instrument unit with stereo output)
1339          *
1340          * - both fields have negative values, neither of which is â€“1 or â€“2
1341          *   e.g. inChannels = -4 outChannels = -8
1342          *    Up to four input channels and up to eight output channels
1343          */
1344
1345         for (vector<pair<int,int> >::iterator i = io_configs.begin(); i != io_configs.end(); ++i) {
1346
1347                 int32_t possible_in = i->first;
1348                 int32_t possible_out = i->second;
1349
1350                 if ((possible_in == audio_in) && (possible_out == preferred_out)) {
1351                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("\tCHOSEN: %1 in %2 out to match in %3 out %4\n",
1352                                                 possible_in, possible_out,
1353                                                 in, out));
1354
1355                         // exact match
1356                         _output_configs.insert (preferred_out);
1357                         exact_match = true;
1358                         found = true;
1359                         break;
1360                 }
1361         }
1362
1363         /* now allow potentially "imprecise" matches */
1364         int32_t audio_out = -1;
1365         float penalty = 9999;
1366         int used_possible_in = 0;
1367 #if defined (__clang__)
1368 #       pragma clang diagnostic push
1369 #       pragma clang diagnostic ignored "-Wtautological-compare"
1370 #endif
1371
1372 #define FOUNDCFG(nch) {                            \
1373   float p = fabsf ((float)(nch) - preferred_out);  \
1374   _output_configs.insert (nch);                    \
1375   if ((nch) > preferred_out) { p *= 1.1; }         \
1376   if (p < penalty) {                               \
1377     used_possible_in = possible_in;                \
1378     audio_out = (nch);                             \
1379     penalty = p;                                   \
1380     found = true;                                  \
1381     variable_inputs = possible_in < 0;             \
1382     variable_outputs = possible_out < 0;           \
1383   }                                                \
1384 }
1385
1386 #define ANYTHINGGOES                               \
1387   _output_configs.insert (0);
1388
1389 #define UPTO(nch) {                                \
1390   for (int n = 1; n <= nch; ++n) {                 \
1391     _output_configs.insert (n);                    \
1392   }                                                \
1393 }
1394
1395         for (vector<pair<int,int> >::iterator i = io_configs.begin(); i != io_configs.end(); ++i) {
1396
1397                 int32_t possible_in = i->first;
1398                 int32_t possible_out = i->second;
1399
1400                 DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("\tpossible in %1 possible out %2\n", possible_in, possible_out));
1401
1402                 if (possible_out == 0) {
1403                         warning << string_compose (_("AU %1 has zero outputs - configuration ignored"), name()) << endmsg;
1404                         /* XXX surely this is just a send? (e.g. AUNetSend) */
1405                         continue;
1406                 }
1407
1408                 if (possible_in == 0) {
1409                         /* no inputs, generators & instruments */
1410                         if (possible_out == -1) {
1411                                 /* any configuration possible, provide stereo output */
1412                                 FOUNDCFG (preferred_out);
1413                                 ANYTHINGGOES;
1414                         } else if (possible_out == -2) {
1415                                 /* invalid, should be (0, -1) */
1416                                 FOUNDCFG (preferred_out);
1417                                 ANYTHINGGOES;
1418                         } else if (possible_out < -2) {
1419                                 /* variable number of outputs up to -N, */
1420                                 FOUNDCFG (min (-possible_out, preferred_out));
1421                                 UPTO (-possible_out);
1422                         } else {
1423                                 /* exact number of outputs */
1424                                 FOUNDCFG (possible_out);
1425                         }
1426                 }
1427
1428                 if (possible_in == -1) {
1429                         /* wildcard for input */
1430                         if (possible_out == -1) {
1431                                 /* out must match in */
1432                                 FOUNDCFG (audio_in);
1433                         } else if (possible_out == -2) {
1434                                 /* any configuration possible, pick matching */
1435                                 FOUNDCFG (preferred_out);
1436                                 ANYTHINGGOES;
1437                         } else if (possible_out < -2) {
1438                                 /* explicitly variable number of outputs, pick maximum */
1439                                 FOUNDCFG (max (-possible_out, preferred_out));
1440                                 /* and try min, too, in case the penalty is lower */
1441                                 FOUNDCFG (min (-possible_out, preferred_out));
1442                                 UPTO (-possible_out)
1443                         } else {
1444                                 /* exact number of outputs */
1445                                 FOUNDCFG (possible_out);
1446                         }
1447                 }
1448
1449                 if (possible_in == -2) {
1450                         if (possible_out == -1) {
1451                                 /* any configuration possible, pick matching */
1452                                 FOUNDCFG (preferred_out);
1453                                 ANYTHINGGOES;
1454                         } else if (possible_out == -2) {
1455                                 /* invalid. interpret as (-1, -1) */
1456                                 FOUNDCFG (preferred_out);
1457                                 ANYTHINGGOES;
1458                         } else if (possible_out < -2) {
1459                                 /* invalid,  interpret as (<-2, <-2)
1460                                  * variable number of outputs up to -N, */
1461                                 FOUNDCFG (min (-possible_out, preferred_out));
1462                                 UPTO (-possible_out)
1463                         } else {
1464                                 /* exact number of outputs */
1465                                 FOUNDCFG (possible_out);
1466                         }
1467                 }
1468
1469                 if (possible_in < -2) {
1470                         /* explicit variable number of inputs */
1471                         if (audio_in > -possible_in && imprecise != NULL) {
1472                                 // hide inputs ports
1473                                 imprecise->set (DataType::AUDIO, -possible_in);
1474                         }
1475
1476                         if (audio_in > -possible_in && imprecise == NULL) {
1477                                 /* request is too large */
1478                         } else if (possible_out == -1) {
1479                                 /* any output configuration possible */
1480                                 FOUNDCFG (preferred_out);
1481                                 ANYTHINGGOES;
1482                         } else if (possible_out == -2) {
1483                                 /* invalid. interpret as (<-2, -1) */
1484                                 FOUNDCFG (preferred_out);
1485                                 ANYTHINGGOES;
1486                         } else if (possible_out < -2) {
1487                                 /* variable number of outputs up to -N, */
1488                                 FOUNDCFG (min (-possible_out, preferred_out));
1489                                 UPTO (-possible_out)
1490                         } else {
1491                                 /* exact number of outputs */
1492                                 FOUNDCFG (possible_out);
1493                         }
1494                 }
1495
1496                 if (possible_in && (possible_in == audio_in)) {
1497                         /* exact number of inputs ... must match obviously */
1498                         if (possible_out == -1) {
1499                                 /* any output configuration possible */
1500                                 FOUNDCFG (preferred_out);
1501                                 ANYTHINGGOES;
1502                         } else if (possible_out == -2) {
1503                                 /* plugins shouldn't really use (>0,-2), interpret as (>0,-1) */
1504                                 FOUNDCFG (preferred_out);
1505                                 ANYTHINGGOES;
1506                         } else if (possible_out < -2) {
1507                                 /* > 0, < -2 is not specified
1508                                  * interpret as up to -N */
1509                                 FOUNDCFG (min (-possible_out, preferred_out));
1510                                 UPTO (-possible_out)
1511                         } else {
1512                                 /* exact number of outputs */
1513                                 FOUNDCFG (possible_out);
1514                         }
1515                 }
1516         }
1517
1518         if (!found && imprecise) {
1519                 /* try harder */
1520                 for (vector<pair<int,int> >::iterator i = io_configs.begin(); i != io_configs.end(); ++i) {
1521                         int32_t possible_in = i->first;
1522                         int32_t possible_out = i->second;
1523
1524                         assert (possible_in > 0); // all other cases will have been matched above
1525                         assert (possible_out !=0 || possible_in !=0); // already handled above
1526
1527                         imprecise->set (DataType::AUDIO, possible_in);
1528                         if (possible_out == -1 || possible_out == -2) {
1529                                 FOUNDCFG (2);
1530                         } else if (possible_out < -2) {
1531                                 /* explicitly variable number of outputs, pick maximum */
1532                                 FOUNDCFG (min (-possible_out, preferred_out));
1533                         } else {
1534                                 /* exact number of outputs */
1535                                 FOUNDCFG (possible_out);
1536                         }
1537                         // ideally we'll also find the closest, best matching
1538                         // input configuration with minimal output penalty...
1539                 }
1540         }
1541
1542         if (!found) {
1543                 DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("\tFAIL: no io configs match %1\n", in));
1544                 return false;
1545         }
1546
1547         if (exact_match) {
1548                 out.set (DataType::MIDI, 0); // currently always zero
1549                 out.set (DataType::AUDIO, preferred_out);
1550         } else {
1551                 if (used_possible_in < -2 && audio_in == 0) {
1552                         // input-port count cannot be zero, use as many ports
1553                         // as outputs, but at most abs(possible_in)
1554                         audio_input_cnt = max (1, min (audio_out, -used_possible_in));
1555                 }
1556                 out.set (DataType::MIDI, 0); /// XXX
1557                 out.set (DataType::AUDIO, audio_out);
1558         }
1559         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("\tCHOSEN: in %1 out %2\n", in, out));
1560
1561 #if defined (__clang__)
1562 #       pragma clang diagnostic pop
1563 #endif
1564         return true;
1565 }
1566
1567 int
1568 AUPlugin::set_stream_format (int scope, uint32_t bus, AudioStreamBasicDescription& fmt)
1569 {
1570         OSErr result;
1571
1572         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("set stream format for %1, scope = %2 element %3\n",
1573                                 (scope == kAudioUnitScope_Input ? "input" : "output"),
1574                                 scope, bus));
1575         if ((result = unit->SetFormat (scope, bus, fmt)) != 0) {
1576                 error << string_compose (_("AUPlugin: could not set stream format for %1/%2 (err = %3)"),
1577                                 (scope == kAudioUnitScope_Input ? "input" : "output"), bus, result) << endmsg;
1578                 return -1;
1579         }
1580         return 0;
1581 }
1582
1583 OSStatus
1584 AUPlugin::render_callback(AudioUnitRenderActionFlags*,
1585                           const AudioTimeStamp*,
1586                           UInt32 bus,
1587                           UInt32 inNumberFrames,
1588                           AudioBufferList* ioData)
1589 {
1590         /* not much to do with audio - the data is already in the buffers given to us in connect_and_run() */
1591
1592         // DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("%1: render callback, frames %2 bus %3 bufs %4\n",
1593         // name(), inNumberFrames, bus, ioData->mNumberBuffers));
1594
1595         if (input_maxbuf == 0) {
1596                 DEBUG_TRACE (DEBUG::AudioUnits, "AUPlugin: render callback called illegally!");
1597                 error << _("AUPlugin: render callback called illegally!") << endmsg;
1598                 return kAudioUnitErr_CannotDoInCurrentContext;
1599         }
1600
1601         assert (bus < input_elements);
1602         uint32_t busoff = 0;
1603         for (uint32_t i = 0; i < bus; ++i) {
1604                 busoff += bus_inputs[i];
1605         }
1606
1607         uint32_t limit = min ((uint32_t) ioData->mNumberBuffers, input_maxbuf);
1608
1609         ChanCount bufs_count (DataType::AUDIO, 1);
1610         BufferSet& silent_bufs = _session.get_silent_buffers(bufs_count);
1611
1612         /* apply bus offsets */
1613
1614         for (uint32_t i = 0; i < limit; ++i) {
1615                 ioData->mBuffers[i].mNumberChannels = 1;
1616                 ioData->mBuffers[i].mDataByteSize = sizeof (Sample) * inNumberFrames;
1617
1618                 bool valid = false;
1619                 uint32_t idx = input_map->get (DataType::AUDIO, i + busoff, &valid);
1620                 if (valid) {
1621                         ioData->mBuffers[i].mData = input_buffers->get_audio (idx).data (cb_offsets[bus] + input_offset);
1622                 } else {
1623                         ioData->mBuffers[i].mData = silent_bufs.get_audio(0).data (cb_offsets[bus] + input_offset);
1624                 }
1625         }
1626         cb_offsets[bus] += inNumberFrames;
1627         return noErr;
1628 }
1629
1630 int
1631 AUPlugin::connect_and_run (BufferSet& bufs,
1632                 framepos_t start, framepos_t end, double speed,
1633                 ChanMapping in_map, ChanMapping out_map,
1634                 pframes_t nframes, framecnt_t offset)
1635 {
1636         Plugin::connect_and_run(bufs, start, end, speed, in_map, out_map, nframes, offset);
1637
1638         transport_frame = start;
1639         transport_speed = speed;
1640
1641         AudioUnitRenderActionFlags flags = 0;
1642         AudioTimeStamp ts;
1643         OSErr err;
1644
1645         if (requires_fixed_size_buffers() && (nframes != _last_nframes)) {
1646                 unit->GlobalReset();
1647                 _last_nframes = nframes;
1648         }
1649
1650         /* test if we can run in-place; only compare audio buffers */
1651         bool inplace = true; // TODO check plugin-insert in-place ?
1652         ChanMapping::Mappings inmap (in_map.mappings ());
1653         ChanMapping::Mappings outmap (out_map.mappings ());
1654         if (outmap[DataType::AUDIO].size () == 0) {
1655                 inplace = false;
1656         }
1657         if (inmap[DataType::AUDIO].size() > 0 && inmap != outmap) {
1658                 inplace = false;
1659         }
1660
1661         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("%1 in %2 out %3 MIDI %4 bufs %5 (available %6) InBus %7 OutBus %8 Inplace: %9 var-i/o %10 %11\n",
1662                                 name(), input_channels, output_channels, _has_midi_input,
1663                                 bufs.count(), bufs.available(),
1664                                 configured_input_busses, configured_output_busses, inplace, variable_inputs, variable_outputs));
1665
1666         /* the apparent number of buffers matches our input configuration, but we know that the bufferset
1667          * has the capacity to handle our outputs.
1668          */
1669
1670         assert (bufs.available() >= ChanCount (DataType::AUDIO, output_channels));
1671
1672         input_buffers = &bufs;
1673         input_map = &in_map;
1674         input_maxbuf = bufs.count().n_audio(); // number of input audio buffers
1675         input_offset = offset;
1676         for (size_t i = 0; i < input_elements; ++i) {
1677                 cb_offsets[i] = 0;
1678         }
1679
1680         ChanCount bufs_count (DataType::AUDIO, 1);
1681         BufferSet& scratch_bufs = _session.get_scratch_buffers(bufs_count);
1682
1683         if (_has_midi_input) {
1684                 uint32_t nmidi = bufs.count().n_midi();
1685                 for (uint32_t i = 0; i < nmidi; ++i) {
1686                         /* one MIDI port/buffer only */
1687                         MidiBuffer& m = bufs.get_midi (i);
1688                         for (MidiBuffer::iterator i = m.begin(); i != m.end(); ++i) {
1689                                 Evoral::Event<framepos_t> ev (*i);
1690                                 if (ev.is_channel_event()) {
1691                                         const uint8_t* b = ev.buffer();
1692                                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("%1: MIDI event %2\n", name(), ev));
1693                                         unit->MIDIEvent (b[0], b[1], b[2], ev.time());
1694                                 }
1695                                 /* XXX need to handle sysex and other message types */
1696                         }
1697                 }
1698         }
1699
1700         assert (input_maxbuf < 512);
1701         std::bitset<512> used_outputs;
1702
1703         bool ok = true;
1704         uint32_t busoff = 0;
1705         uint32_t remain = output_channels;
1706         for (uint32_t bus = 0; remain > 0 && bus < configured_output_busses; ++bus) {
1707                 uint32_t cnt;
1708                 if (variable_outputs || (output_elements == configured_output_busses && configured_output_busses == 1)) {
1709                         cnt = output_channels;
1710                 } else {
1711                         cnt = std::min (remain, bus_outputs[bus]);
1712                 }
1713                 assert (cnt > 0);
1714
1715                 buffers->mNumberBuffers = cnt;
1716
1717                 for (uint32_t i = 0; i < cnt; ++i) {
1718                         buffers->mBuffers[i].mNumberChannels = 1;
1719                         buffers->mBuffers[i].mDataByteSize = nframes * sizeof (Sample);
1720                         /* setting this to 0 indicates to the AU that it can provide buffers here
1721                          * if necessary. if it can process in-place, it will use the buffers provided
1722                          * as input by ::render_callback() above.
1723                          *
1724                          * a non-null values tells the plugin to render into the buffer pointed
1725                          * at by the value.
1726                          */
1727                         if (inplace) {
1728                                 buffers->mBuffers[i].mData = 0;
1729                         } else {
1730                                 bool valid = false;
1731                                 uint32_t idx = out_map.get (DataType::AUDIO, i + busoff, &valid);
1732                                 if (valid) {
1733                                         buffers->mBuffers[i].mData = bufs.get_audio (idx).data (offset);
1734                                 } else {
1735                                         buffers->mBuffers[i].mData = scratch_bufs.get_audio(0).data(offset);
1736                                 }
1737                         }
1738                 }
1739
1740                 /* does this really mean anything ?  */
1741                 ts.mSampleTime = frames_processed;
1742                 ts.mFlags = kAudioTimeStampSampleTimeValid;
1743
1744                 DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("%1 render flags=%2 time=%3 nframes=%4 bus=%5 buffers=%6\n",
1745                                         name(), flags, frames_processed, nframes, bus, buffers->mNumberBuffers));
1746
1747                 if ((err = unit->Render (&flags, &ts, bus, nframes, buffers)) == noErr) {
1748
1749                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("%1 rendered %2 buffers of %3\n",
1750                                                 name(), buffers->mNumberBuffers, output_channels));
1751
1752                         uint32_t limit = std::min ((uint32_t) buffers->mNumberBuffers, cnt);
1753                         for (uint32_t i = 0; i < limit; ++i) {
1754                                 bool valid = false;
1755                                 uint32_t idx = out_map.get (DataType::AUDIO, i + busoff, &valid);
1756                                 if (!valid) continue;
1757                                 used_outputs.set (i + busoff);
1758                                 Sample* expected_buffer_address = bufs.get_audio (idx).data (offset);
1759                                 if (expected_buffer_address != buffers->mBuffers[i].mData) {
1760                                         /* plugin provided its own buffer for output so copy it back to where we want it */
1761                                         memcpy (expected_buffer_address, buffers->mBuffers[i].mData, nframes * sizeof (Sample));
1762                                 }
1763                         }
1764                 } else {
1765                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose (_("AU: render error for %1, bus %2 status = %3\n"), name(), bus, err));
1766                         error << string_compose (_("AU: render error for %1, bus %2 status = %3"), name(), bus, err) << endmsg;
1767                         ok = false;
1768                         break;
1769                 }
1770
1771                 remain -= cnt;
1772                 busoff += bus_outputs[bus];
1773         }
1774
1775         /* now silence any buffers that were passed in but the that the plugin
1776          * did not fill/touch/use.
1777          *
1778          * TODO: optimize, when plugin-insert is processing in-place
1779          * unconnected buffers are (also) cleared there.
1780          */
1781         for (uint32_t i = 0; i < input_maxbuf; ++i) {
1782                 if (used_outputs.test (i)) { continue; }
1783                 bool valid = false;
1784                 uint32_t idx = out_map.get (DataType::AUDIO, i, &valid);
1785                 if (!valid) continue;
1786                 memset (bufs.get_audio (idx).data (offset), 0, nframes * sizeof (Sample));
1787         }
1788
1789         input_maxbuf = 0;
1790
1791         if (ok) {
1792                 frames_processed += nframes;
1793                 return 0;
1794         }
1795         return -1;
1796 }
1797
1798 OSStatus
1799 AUPlugin::get_beat_and_tempo_callback (Float64* outCurrentBeat,
1800                                        Float64* outCurrentTempo)
1801 {
1802         TempoMap& tmap (_session.tempo_map());
1803
1804         DEBUG_TRACE (DEBUG::AudioUnits, "AU calls ardour beat&tempo callback\n");
1805
1806         if (outCurrentBeat) {
1807                 *outCurrentBeat = tmap.quarter_note_at_frame (transport_frame + input_offset);
1808         }
1809
1810         if (outCurrentTempo) {
1811                 *outCurrentTempo = tmap.tempo_at_frame (transport_frame + input_offset).quarter_notes_per_minute();
1812         }
1813
1814         return noErr;
1815
1816 }
1817
1818 OSStatus
1819 AUPlugin::get_musical_time_location_callback (UInt32*   outDeltaSampleOffsetToNextBeat,
1820                                               Float32*  outTimeSig_Numerator,
1821                                               UInt32*   outTimeSig_Denominator,
1822                                               Float64*  outCurrentMeasureDownBeat)
1823 {
1824         TempoMap& tmap (_session.tempo_map());
1825
1826         DEBUG_TRACE (DEBUG::AudioUnits, "AU calls ardour music time location callback\n");
1827
1828         TempoMetric metric = tmap.metric_at (transport_frame + input_offset);
1829         Timecode::BBT_Time bbt = _session.tempo_map().bbt_at_frame (transport_frame + input_offset);
1830
1831         if (outDeltaSampleOffsetToNextBeat) {
1832                 if (bbt.ticks == 0) {
1833                         /* on the beat */
1834                         *outDeltaSampleOffsetToNextBeat = 0;
1835                 } else {
1836                         double const next_beat = ceil (tmap.quarter_note_at_frame (transport_frame + input_offset));
1837                         framepos_t const next_beat_frame = tmap.frame_at_quarter_note (next_beat);
1838
1839                         *outDeltaSampleOffsetToNextBeat = next_beat_frame - (transport_frame + input_offset);
1840                 }
1841         }
1842
1843         if (outTimeSig_Numerator) {
1844                 *outTimeSig_Numerator = (UInt32) lrintf (metric.meter().divisions_per_bar());
1845         }
1846         if (outTimeSig_Denominator) {
1847                 *outTimeSig_Denominator = (UInt32) lrintf (metric.meter().note_divisor());
1848         }
1849
1850         if (outCurrentMeasureDownBeat) {
1851
1852                 /* beat for the start of the bar.
1853                    1|1|0 -> 1
1854                    2|1|0 -> 1 + divisions_per_bar
1855                    3|1|0 -> 1 + (2 * divisions_per_bar)
1856                    etc.
1857                 */
1858                 bbt.beats = 1;
1859                 bbt.ticks = 0;
1860
1861                 *outCurrentMeasureDownBeat = tmap.quarter_note_at_bbt (bbt);
1862         }
1863
1864         return noErr;
1865 }
1866
1867 OSStatus
1868 AUPlugin::get_transport_state_callback (Boolean*  outIsPlaying,
1869                                         Boolean*  outTransportStateChanged,
1870                                         Float64*  outCurrentSampleInTimeLine,
1871                                         Boolean*  outIsCycling,
1872                                         Float64*  outCycleStartBeat,
1873                                         Float64*  outCycleEndBeat)
1874 {
1875         const bool rolling = (transport_speed != 0);
1876         const bool last_transport_rolling = (last_transport_speed != 0);
1877
1878         DEBUG_TRACE (DEBUG::AudioUnits, "AU calls ardour transport state callback\n");
1879
1880
1881         if (outIsPlaying) {
1882                 *outIsPlaying = rolling;
1883         }
1884
1885         if (outTransportStateChanged) {
1886                 if (rolling != last_transport_rolling) {
1887                         *outTransportStateChanged = true;
1888                 } else if (transport_speed != last_transport_speed) {
1889                         *outTransportStateChanged = true;
1890                 } else {
1891                         *outTransportStateChanged = false;
1892                 }
1893         }
1894
1895         if (outCurrentSampleInTimeLine) {
1896                 /* this assumes that the AU can only call this host callback from render context,
1897                    where input_offset is valid.
1898                 */
1899                 *outCurrentSampleInTimeLine = transport_frame + input_offset;
1900         }
1901
1902         if (outIsCycling) {
1903                 // TODO check bounce-processing
1904                 Location* loc = _session.locations()->auto_loop_location();
1905
1906                 *outIsCycling = (loc && rolling && _session.get_play_loop());
1907
1908                 if (*outIsCycling) {
1909
1910                         if (outCycleStartBeat || outCycleEndBeat) {
1911
1912                                 TempoMap& tmap (_session.tempo_map());
1913
1914                                 Timecode::BBT_Time bbt;
1915
1916                                 if (outCycleStartBeat) {
1917                                         *outCycleStartBeat = tmap.quarter_note_at_frame (loc->start() + input_offset);
1918                                 }
1919
1920                                 if (outCycleEndBeat) {
1921                                         *outCycleEndBeat = tmap.quarter_note_at_frame (loc->end() + input_offset);
1922                                 }
1923                         }
1924                 }
1925         }
1926
1927         last_transport_speed = transport_speed;
1928
1929         return noErr;
1930 }
1931
1932 set<Evoral::Parameter>
1933 AUPlugin::automatable() const
1934 {
1935         set<Evoral::Parameter> automates;
1936
1937         for (uint32_t i = 0; i < descriptors.size(); ++i) {
1938                 if (descriptors[i].automatable) {
1939                         automates.insert (automates.end(), Evoral::Parameter (PluginAutomation, 0, i));
1940                 }
1941         }
1942
1943         return automates;
1944 }
1945
1946 Plugin::IOPortDescription
1947 AUPlugin::describe_io_port (ARDOUR::DataType dt, bool input, uint32_t id) const
1948 {
1949         std::stringstream ss;
1950         switch (dt) {
1951                 case DataType::AUDIO:
1952                         break;
1953                 case DataType::MIDI:
1954                         ss << _("Midi");
1955                         break;
1956                 default:
1957                         ss << _("?");
1958                         break;
1959         }
1960
1961         std::string busname;
1962
1963         if (dt == DataType::AUDIO) {
1964                 if (input) {
1965                         uint32_t pid = id;
1966                         for (uint32_t bus = 0; bus < input_elements; ++bus) {
1967                                 if (pid < bus_inputs[bus]) {
1968                                         id = pid;
1969                                         ss << _bus_name_in[bus];
1970                                         ss << " / Bus " << (1 + bus);
1971                                         busname = _bus_name_in[bus];
1972                                         break;
1973                                 }
1974                                 pid -= bus_inputs[bus];
1975                         }
1976                 }
1977                 else {
1978                         uint32_t pid = id;
1979                         for (uint32_t bus = 0; bus < output_elements; ++bus) {
1980                                 if (pid < bus_outputs[bus]) {
1981                                         id = pid;
1982                                         ss << _bus_name_out[bus];
1983                                         ss << " / Bus " << (1 + bus);
1984                                         busname = _bus_name_out[bus];
1985                                         break;
1986                                 }
1987                                 pid -= bus_outputs[bus];
1988                         }
1989                 }
1990         }
1991
1992         if (input) {
1993                 ss << " " << _("In") << " ";
1994         } else {
1995                 ss << " " << _("Out") << " ";
1996         }
1997
1998         ss << (id + 1);
1999
2000         Plugin::IOPortDescription iod (ss.str());
2001         if (!busname.empty()) {
2002                 iod.group_name = busname;
2003                 iod.group_channel = id;
2004         }
2005         return iod;
2006 }
2007
2008 string
2009 AUPlugin::describe_parameter (Evoral::Parameter param)
2010 {
2011         if (param.type() == PluginAutomation && param.id() < parameter_count()) {
2012                 return descriptors[param.id()].label;
2013         } else {
2014                 return "??";
2015         }
2016 }
2017
2018 void
2019 AUPlugin::print_parameter (uint32_t param, char* buf, uint32_t len) const
2020 {
2021         // NameValue stuff here
2022         if (buf && len) {
2023                 if (param < parameter_count()) {
2024                         snprintf (buf, len, "%.3f", get_parameter (param));
2025                 } else {
2026                         strcat (buf, "0");
2027                 }
2028         }
2029 }
2030
2031 bool
2032 AUPlugin::parameter_is_audio (uint32_t) const
2033 {
2034         return false;
2035 }
2036
2037 bool
2038 AUPlugin::parameter_is_control (uint32_t param) const
2039 {
2040         assert(param < descriptors.size());
2041         if (descriptors[param].automatable) {
2042                 /* corrently ardour expects all controls to be automatable
2043                  * IOW ardour GUI elements mandate an Evoral::Parameter
2044                  * for all input+control ports.
2045                  */
2046                 return true;
2047         }
2048         return false;
2049 }
2050
2051 bool
2052 AUPlugin::parameter_is_input (uint32_t param) const
2053 {
2054         /* AU params that are both readable and writeable,
2055          * are listed in kAudioUnitScope_Global
2056          */
2057         return (descriptors[param].scope == kAudioUnitScope_Input || descriptors[param].scope == kAudioUnitScope_Global);
2058 }
2059
2060 bool
2061 AUPlugin::parameter_is_output (uint32_t param) const
2062 {
2063         assert(param < descriptors.size());
2064         // TODO check if ardour properly handles ports
2065         // that report is_input + is_output == true
2066         // -> add || descriptors[param].scope == kAudioUnitScope_Global
2067         return (descriptors[param].scope == kAudioUnitScope_Output);
2068 }
2069
2070 void
2071 AUPlugin::add_state (XMLNode* root) const
2072 {
2073         LocaleGuard lg;
2074         CFDataRef xmlData;
2075         CFPropertyListRef propertyList;
2076
2077         DEBUG_TRACE (DEBUG::AudioUnits, "get preset state\n");
2078         if (unit->GetAUPreset (propertyList) != noErr) {
2079                 return;
2080         }
2081
2082         // Convert the property list into XML data.
2083
2084         xmlData = CFPropertyListCreateXMLData( kCFAllocatorDefault, propertyList);
2085
2086         if (!xmlData) {
2087                 error << _("Could not create XML version of property list") << endmsg;
2088                 return;
2089         }
2090
2091         /* re-parse XML bytes to create a libxml++ XMLTree that we can merge into
2092            our state node. GACK!
2093         */
2094
2095         XMLTree t;
2096
2097         if (t.read_buffer (string ((const char*) CFDataGetBytePtr (xmlData), CFDataGetLength (xmlData)))) {
2098                 if (t.root()) {
2099                         root->add_child_copy (*t.root());
2100                 }
2101         }
2102
2103         CFRelease (xmlData);
2104         CFRelease (propertyList);
2105 }
2106
2107 int
2108 AUPlugin::set_state(const XMLNode& node, int version)
2109 {
2110         int ret = -1;
2111         CFPropertyListRef propertyList;
2112         LocaleGuard lg;
2113
2114         if (node.name() != state_node_name()) {
2115                 error << _("Bad node sent to AUPlugin::set_state") << endmsg;
2116                 return -1;
2117         }
2118
2119 #ifndef NO_PLUGIN_STATE
2120         if (node.children().empty()) {
2121                 return -1;
2122         }
2123
2124         XMLNode* top = node.children().front();
2125         XMLNode* copy = new XMLNode (*top);
2126
2127         XMLTree t;
2128         t.set_root (copy);
2129
2130         const string& xml = t.write_buffer ();
2131         CFDataRef xmlData = CFDataCreateWithBytesNoCopy (kCFAllocatorDefault, (UInt8*) xml.data(), xml.length(), kCFAllocatorNull);
2132         CFStringRef errorString;
2133
2134         propertyList = CFPropertyListCreateFromXMLData( kCFAllocatorDefault,
2135                                                         xmlData,
2136                                                         kCFPropertyListImmutable,
2137                                                         &errorString);
2138
2139         CFRelease (xmlData);
2140
2141         if (propertyList) {
2142                 DEBUG_TRACE (DEBUG::AudioUnits, "set preset\n");
2143                 if (unit->SetAUPreset (propertyList) == noErr) {
2144                         ret = 0;
2145
2146                         /* tell the world */
2147
2148                         AudioUnitParameter changedUnit;
2149                         changedUnit.mAudioUnit = unit->AU();
2150                         changedUnit.mParameterID = kAUParameterListener_AnyParameter;
2151                         AUParameterListenerNotify (NULL, NULL, &changedUnit);
2152                 }
2153                 CFRelease (propertyList);
2154         }
2155 #endif
2156
2157         Plugin::set_state (node, version);
2158         return ret;
2159 }
2160
2161 bool
2162 AUPlugin::load_preset (PresetRecord r)
2163 {
2164         Plugin::load_preset (r);
2165
2166         bool ret = false;
2167         CFPropertyListRef propertyList;
2168         Glib::ustring path;
2169         UserPresetMap::iterator ux;
2170         FactoryPresetMap::iterator fx;
2171
2172         /* look first in "user" presets */
2173
2174         if ((ux = user_preset_map.find (r.label)) != user_preset_map.end()) {
2175
2176                 if ((propertyList = load_property_list (ux->second)) != 0) {
2177                         DEBUG_TRACE (DEBUG::AudioUnits, "set preset from user presets\n");
2178                         if (unit->SetAUPreset (propertyList) == noErr) {
2179                                 ret = true;
2180
2181                                 /* tell the world */
2182
2183                                 AudioUnitParameter changedUnit;
2184                                 changedUnit.mAudioUnit = unit->AU();
2185                                 changedUnit.mParameterID = kAUParameterListener_AnyParameter;
2186                                 AUParameterListenerNotify (NULL, NULL, &changedUnit);
2187                         }
2188                         CFRelease(propertyList);
2189                 }
2190
2191         } else if ((fx = factory_preset_map.find (r.label)) != factory_preset_map.end()) {
2192
2193                 AUPreset preset;
2194
2195                 preset.presetNumber = fx->second;
2196                 preset.presetName = CFStringCreateWithCString (kCFAllocatorDefault, fx->first.c_str(), kCFStringEncodingUTF8);
2197
2198                 DEBUG_TRACE (DEBUG::AudioUnits, "set preset from factory presets\n");
2199
2200                 if (unit->SetPresentPreset (preset) == 0) {
2201                         ret = true;
2202
2203                         /* tell the world */
2204
2205                         AudioUnitParameter changedUnit;
2206                         changedUnit.mAudioUnit = unit->AU();
2207                         changedUnit.mParameterID = kAUParameterListener_AnyParameter;
2208                         AUParameterListenerNotify (NULL, NULL, &changedUnit);
2209                 }
2210         }
2211
2212         return ret;
2213 }
2214
2215 void
2216 AUPlugin::do_remove_preset (std::string)
2217 {
2218 }
2219
2220 string
2221 AUPlugin::do_save_preset (string preset_name)
2222 {
2223         CFPropertyListRef propertyList;
2224         vector<Glib::ustring> v;
2225         Glib::ustring user_preset_path;
2226
2227         std::string m = maker();
2228         std::string n = name();
2229
2230         strip_whitespace_edges (m);
2231         strip_whitespace_edges (n);
2232
2233         v.push_back (Glib::get_home_dir());
2234         v.push_back ("Library");
2235         v.push_back ("Audio");
2236         v.push_back ("Presets");
2237         v.push_back (m);
2238         v.push_back (n);
2239
2240         user_preset_path = Glib::build_filename (v);
2241
2242         if (g_mkdir_with_parents (user_preset_path.c_str(), 0775) < 0) {
2243                 error << string_compose (_("Cannot create user plugin presets folder (%1)"), user_preset_path) << endmsg;
2244                 return string();
2245         }
2246
2247         DEBUG_TRACE (DEBUG::AudioUnits, "get current preset\n");
2248         if (unit->GetAUPreset (propertyList) != noErr) {
2249                 return string();
2250         }
2251
2252         // add the actual preset name */
2253
2254         v.push_back (preset_name + preset_suffix);
2255
2256         // rebuild
2257
2258         user_preset_path = Glib::build_filename (v);
2259
2260         set_preset_name_in_plist (propertyList, preset_name);
2261
2262         if (save_property_list (propertyList, user_preset_path)) {
2263                 error << string_compose (_("Saving plugin state to %1 failed"), user_preset_path) << endmsg;
2264                 return string();
2265         }
2266
2267         CFRelease(propertyList);
2268
2269         user_preset_map[preset_name] = user_preset_path;;
2270
2271         DEBUG_TRACE (DEBUG::AudioUnits, string_compose("AU Saving Preset to %1\n", user_preset_path));
2272
2273         return string ("file:///") + user_preset_path;
2274 }
2275
2276 //-----------------------------------------------------------------------------
2277 // this is just a little helper function used by GetAUComponentDescriptionFromPresetFile()
2278 static SInt32
2279 GetDictionarySInt32Value(CFDictionaryRef inAUStateDictionary, CFStringRef inDictionaryKey, Boolean * outSuccess)
2280 {
2281         CFNumberRef cfNumber;
2282         SInt32 numberValue = 0;
2283         Boolean dummySuccess;
2284
2285         if (outSuccess == NULL)
2286                 outSuccess = &dummySuccess;
2287         if ( (inAUStateDictionary == NULL) || (inDictionaryKey == NULL) )
2288         {
2289                 *outSuccess = FALSE;
2290                 return 0;
2291         }
2292
2293         cfNumber = (CFNumberRef) CFDictionaryGetValue(inAUStateDictionary, inDictionaryKey);
2294         if (cfNumber == NULL)
2295         {
2296                 *outSuccess = FALSE;
2297                 return 0;
2298         }
2299         *outSuccess = CFNumberGetValue(cfNumber, kCFNumberSInt32Type, &numberValue);
2300         if (*outSuccess)
2301                 return numberValue;
2302         else
2303                 return 0;
2304 }
2305
2306 static OSStatus
2307 GetAUComponentDescriptionFromStateData(CFPropertyListRef inAUStateData, ArdourDescription * outComponentDescription)
2308 {
2309         CFDictionaryRef auStateDictionary;
2310         ArdourDescription tempDesc = {0,0,0,0,0};
2311         SInt32 versionValue;
2312         Boolean gotValue;
2313
2314         if ( (inAUStateData == NULL) || (outComponentDescription == NULL) )
2315                 return paramErr;
2316
2317         // the property list for AU state data must be of the dictionary type
2318         if (CFGetTypeID(inAUStateData) != CFDictionaryGetTypeID()) {
2319                 return kAudioUnitErr_InvalidPropertyValue;
2320         }
2321
2322         auStateDictionary = (CFDictionaryRef)inAUStateData;
2323
2324         // first check to make sure that the version of the AU state data is one that we know understand
2325         // XXX should I really do this?  later versions would probably still hold these ID keys, right?
2326         versionValue = GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetVersionKey), &gotValue);
2327
2328         if (!gotValue) {
2329                 return kAudioUnitErr_InvalidPropertyValue;
2330         }
2331 #define kCurrentSavedStateVersion 0
2332         if (versionValue != kCurrentSavedStateVersion) {
2333                 return kAudioUnitErr_InvalidPropertyValue;
2334         }
2335
2336         // grab the ComponentDescription values from the AU state data
2337         tempDesc.componentType = (OSType) GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetTypeKey), NULL);
2338         tempDesc.componentSubType = (OSType) GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetSubtypeKey), NULL);
2339         tempDesc.componentManufacturer = (OSType) GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetManufacturerKey), NULL);
2340         // zero values are illegit for specific ComponentDescriptions, so zero for any value means that there was an error
2341         if ( (tempDesc.componentType == 0) || (tempDesc.componentSubType == 0) || (tempDesc.componentManufacturer == 0) )
2342                 return kAudioUnitErr_InvalidPropertyValue;
2343
2344         *outComponentDescription = tempDesc;
2345         return noErr;
2346 }
2347
2348
2349 static bool au_preset_filter (const string& str, void* arg)
2350 {
2351         /* Not a dotfile, has a prefix before a period, suffix is aupreset */
2352
2353         bool ret;
2354
2355         ret = (str[0] != '.' && str.length() > 9 && str.find (preset_suffix) == (str.length() - preset_suffix.length()));
2356
2357         if (ret && arg) {
2358
2359                 /* check the preset file path name against this plugin
2360                    ID. The idea is that all preset files for this plugin
2361                    include "<manufacturer>/<plugin-name>" in their path.
2362                 */
2363
2364                 AUPluginInfo* p = (AUPluginInfo *) arg;
2365                 string match = p->creator;
2366                 match += '/';
2367                 match += p->name;
2368
2369                 ret = str.find (match) != string::npos;
2370
2371                 if (ret == false) {
2372                         string m = p->creator;
2373                         string n = p->name;
2374                         strip_whitespace_edges (m);
2375                         strip_whitespace_edges (n);
2376                         match = m;
2377                         match += '/';
2378                         match += n;
2379
2380                         ret = str.find (match) != string::npos;
2381                 }
2382         }
2383
2384         return ret;
2385 }
2386
2387 static bool
2388 check_and_get_preset_name (ArdourComponent component, const string& pathstr, string& preset_name)
2389 {
2390         OSStatus status;
2391         CFPropertyListRef plist;
2392         ArdourDescription presetDesc;
2393         bool ret = false;
2394
2395         plist = load_property_list (pathstr);
2396
2397         if (!plist) {
2398                 return ret;
2399         }
2400
2401         // get the ComponentDescription from the AU preset file
2402
2403         status = GetAUComponentDescriptionFromStateData(plist, &presetDesc);
2404
2405         if (status == noErr) {
2406                 if (ComponentAndDescriptionMatch_Loosely(component, &presetDesc)) {
2407
2408                         /* try to get the preset name from the property list */
2409
2410                         if (CFGetTypeID(plist) == CFDictionaryGetTypeID()) {
2411
2412                                 const void* psk = CFDictionaryGetValue ((CFMutableDictionaryRef)plist, CFSTR(kAUPresetNameKey));
2413
2414                                 if (psk) {
2415
2416                                         const char* p = CFStringGetCStringPtr ((CFStringRef) psk, kCFStringEncodingUTF8);
2417
2418                                         if (!p) {
2419                                                 char buf[PATH_MAX+1];
2420
2421                                                 if (CFStringGetCString ((CFStringRef)psk, buf, sizeof (buf), kCFStringEncodingUTF8)) {
2422                                                         preset_name = buf;
2423                                                 }
2424                                         }
2425                                 }
2426                         }
2427                 }
2428         }
2429
2430         CFRelease (plist);
2431
2432         return true;
2433 }
2434
2435
2436 static void
2437 #ifdef COREAUDIO105
2438 get_names (CAComponentDescription& comp_desc, std::string& name, std::string& maker)
2439 #else
2440 get_names (ArdourComponent& comp, std::string& name, std::string& maker)
2441 #endif
2442 {
2443         CFStringRef itemName = NULL;
2444         // Marc Poirier-style item name
2445 #ifdef COREAUDIO105
2446         CAComponent auComponent (comp_desc);
2447         if (auComponent.IsValid()) {
2448                 CAComponentDescription dummydesc;
2449                 Handle nameHandle = NewHandle(sizeof(void*));
2450                 if (nameHandle != NULL) {
2451                         OSErr err = GetComponentInfo(auComponent.Comp(), &dummydesc, nameHandle, NULL, NULL);
2452                         if (err == noErr) {
2453                                 ConstStr255Param nameString = (ConstStr255Param) (*nameHandle);
2454                                 if (nameString != NULL) {
2455                                         itemName = CFStringCreateWithPascalString(kCFAllocatorDefault, nameString, CFStringGetSystemEncoding());
2456                                 }
2457                         }
2458                         DisposeHandle(nameHandle);
2459                 }
2460         }
2461 #else
2462         assert (comp);
2463         AudioComponentCopyName (comp, &itemName);
2464 #endif
2465
2466         // if Marc-style fails, do the original way
2467         if (itemName == NULL) {
2468 #ifndef COREAUDIO105
2469                 CAComponentDescription comp_desc;
2470                 AudioComponentGetDescription (comp, &comp_desc);
2471 #endif
2472                 CFStringRef compTypeString = UTCreateStringForOSType(comp_desc.componentType);
2473                 CFStringRef compSubTypeString = UTCreateStringForOSType(comp_desc.componentSubType);
2474                 CFStringRef compManufacturerString = UTCreateStringForOSType(comp_desc.componentManufacturer);
2475
2476                 itemName = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%@ - %@ - %@"),
2477                                 compTypeString, compManufacturerString, compSubTypeString);
2478
2479                 if (compTypeString != NULL)
2480                         CFRelease(compTypeString);
2481                 if (compSubTypeString != NULL)
2482                         CFRelease(compSubTypeString);
2483                 if (compManufacturerString != NULL)
2484                         CFRelease(compManufacturerString);
2485         }
2486
2487         string str = CFStringRefToStdString(itemName);
2488         string::size_type colon = str.find (':');
2489
2490         if (colon) {
2491                 name = str.substr (colon+1);
2492                 maker = str.substr (0, colon);
2493                 strip_whitespace_edges (maker);
2494                 strip_whitespace_edges (name);
2495         } else {
2496                 name = str;
2497                 maker = "unknown";
2498                 strip_whitespace_edges (name);
2499         }
2500 }
2501
2502 std::string
2503 AUPlugin::current_preset() const
2504 {
2505         string preset_name;
2506
2507         CFPropertyListRef propertyList;
2508
2509         DEBUG_TRACE (DEBUG::AudioUnits, "get current preset for current_preset()\n");
2510         if (unit->GetAUPreset (propertyList) == noErr) {
2511                 preset_name = get_preset_name_in_plist (propertyList);
2512                 CFRelease(propertyList);
2513         }
2514
2515         return preset_name;
2516 }
2517
2518 void
2519 AUPlugin::find_presets ()
2520 {
2521         vector<string> preset_files;
2522
2523         user_preset_map.clear ();
2524
2525         PluginInfoPtr nfo = get_info();
2526         find_files_matching_filter (preset_files, preset_search_path, au_preset_filter,
2527                         boost::dynamic_pointer_cast<AUPluginInfo> (nfo).get(),
2528                         true, true, true);
2529
2530         if (preset_files.empty()) {
2531                 DEBUG_TRACE (DEBUG::AudioUnits, "AU No Preset Files found for given plugin.\n");
2532         }
2533
2534         for (vector<string>::iterator x = preset_files.begin(); x != preset_files.end(); ++x) {
2535
2536                 string path = *x;
2537                 string preset_name;
2538
2539                 /* make an initial guess at the preset name using the path */
2540
2541                 preset_name = Glib::path_get_basename (path);
2542                 preset_name = preset_name.substr (0, preset_name.find_last_of ('.'));
2543
2544                 /* check that this preset file really matches this plugin
2545                    and potentially get the "real" preset name from
2546                    within the file.
2547                 */
2548
2549                 if (check_and_get_preset_name (get_comp()->Comp(), path, preset_name)) {
2550                         user_preset_map[preset_name] = path;
2551                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose("AU Preset File: %1 > %2\n", preset_name, path));
2552                 } else {
2553                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose("AU INVALID Preset: %1 > %2\n", preset_name, path));
2554                 }
2555
2556         }
2557
2558         /* now fill the vector<string> with the names we have */
2559
2560         for (UserPresetMap::iterator i = user_preset_map.begin(); i != user_preset_map.end(); ++i) {
2561                 _presets.insert (make_pair (i->second, Plugin::PresetRecord (i->second, i->first)));
2562                 DEBUG_TRACE (DEBUG::AudioUnits, string_compose("AU Adding User Preset: %1 > %2\n", i->first, i->second));
2563         }
2564
2565         /* add factory presets */
2566
2567         for (FactoryPresetMap::iterator i = factory_preset_map.begin(); i != factory_preset_map.end(); ++i) {
2568                 /* XXX: dubious -- deleting & re-adding a preset -> same URI
2569                  * good that we don't support deleting AU presets :)
2570                  */
2571                 string const uri = PBD::to_string<uint32_t> (_presets.size ());
2572                 _presets.insert (make_pair (uri, Plugin::PresetRecord (uri, i->first, false)));
2573                 DEBUG_TRACE (DEBUG::AudioUnits, string_compose("AU Adding Factory Preset: %1 > %2\n", i->first, i->second));
2574         }
2575 }
2576
2577 bool
2578 AUPlugin::has_editor () const
2579 {
2580         // even if the plugin doesn't have its own editor, the AU API can be used
2581         // to create one that looks native.
2582         return true;
2583 }
2584
2585 AUPluginInfo::AUPluginInfo (boost::shared_ptr<CAComponentDescription> d)
2586         : descriptor (d)
2587         , version (0)
2588 {
2589         type = ARDOUR::AudioUnit;
2590 }
2591
2592 AUPluginInfo::~AUPluginInfo ()
2593 {
2594         type = ARDOUR::AudioUnit;
2595 }
2596
2597 PluginPtr
2598 AUPluginInfo::load (Session& session)
2599 {
2600         try {
2601                 PluginPtr plugin;
2602
2603                 DEBUG_TRACE (DEBUG::AudioUnits, "load AU as a component\n");
2604                 boost::shared_ptr<CAComponent> comp (new CAComponent(*descriptor));
2605
2606                 if (!comp->IsValid()) {
2607                         error << ("AudioUnit: not a valid Component") << endmsg;
2608                 } else {
2609                         plugin.reset (new AUPlugin (session.engine(), session, comp));
2610                 }
2611
2612                 AUPluginInfo *aup = new AUPluginInfo (*this);
2613                 DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("plugin info for %1 = %2\n", this, aup));
2614                 plugin->set_info (PluginInfoPtr (aup));
2615                 boost::dynamic_pointer_cast<AUPlugin> (plugin)->set_fixed_size_buffers (aup->creator == "Universal Audio");
2616                 return plugin;
2617         }
2618
2619         catch (failed_constructor &err) {
2620                 DEBUG_TRACE (DEBUG::AudioUnits, "failed to load component/plugin\n");
2621                 return PluginPtr ();
2622         }
2623 }
2624
2625 std::vector<Plugin::PresetRecord>
2626 AUPluginInfo::get_presets (bool user_only) const
2627 {
2628         std::vector<Plugin::PresetRecord> p;
2629         boost::shared_ptr<CAComponent> comp;
2630 #ifndef NO_PLUGIN_STATE
2631         try {
2632                 comp = boost::shared_ptr<CAComponent>(new CAComponent(*descriptor));
2633                 if (!comp->IsValid()) {
2634                         throw failed_constructor();
2635                 }
2636         } catch (failed_constructor& err) {
2637                 return p;
2638         }
2639
2640         // user presets
2641
2642         if (!preset_search_path_initialized) {
2643                 Glib::ustring p = Glib::get_home_dir();
2644                 p += "/Library/Audio/Presets:";
2645                 p += preset_search_path;
2646                 preset_search_path = p;
2647                 preset_search_path_initialized = true;
2648                 DEBUG_TRACE (DEBUG::AudioUnits, string_compose("AU Preset Path: %1\n", preset_search_path));
2649         }
2650
2651         vector<string> preset_files;
2652         find_files_matching_filter (preset_files, preset_search_path, au_preset_filter, const_cast<AUPluginInfo*>(this), true, true, true);
2653
2654         for (vector<string>::iterator x = preset_files.begin(); x != preset_files.end(); ++x) {
2655                 string path = *x;
2656                 string preset_name;
2657                 preset_name = Glib::path_get_basename (path);
2658                 preset_name = preset_name.substr (0, preset_name.find_last_of ('.'));
2659                 if (check_and_get_preset_name (comp.get()->Comp(), path, preset_name)) {
2660                         p.push_back (Plugin::PresetRecord (path, preset_name));
2661                 }
2662         }
2663
2664         if (user_only) {
2665                 return p;
2666         }
2667
2668         // factory presets
2669
2670         CFArrayRef presets;
2671         UInt32 dataSize;
2672         Boolean isWritable;
2673
2674         boost::shared_ptr<CAAudioUnit> unit (new CAAudioUnit);
2675         if (noErr != CAAudioUnit::Open (*(comp.get()), *unit)) {
2676                 return p;
2677         }
2678         if (noErr != unit->GetPropertyInfo (kAudioUnitProperty_FactoryPresets, kAudioUnitScope_Global, 0, &dataSize, &isWritable)) {
2679                 unit->Uninitialize ();
2680                 return p;
2681         }
2682         if (noErr != unit->GetProperty (kAudioUnitProperty_FactoryPresets, kAudioUnitScope_Global, 0, (void*) &presets, &dataSize)) {
2683                 unit->Uninitialize ();
2684                 return p;
2685         }
2686         if (!presets) {
2687                 unit->Uninitialize ();
2688                 return p;
2689         }
2690
2691         CFIndex cnt = CFArrayGetCount (presets);
2692         for (CFIndex i = 0; i < cnt; ++i) {
2693                 AUPreset* preset = (AUPreset*) CFArrayGetValueAtIndex (presets, i);
2694                 string const uri = string_compose ("%1", i);
2695                 string name = CFStringRefToStdString (preset->presetName);
2696                 p.push_back (Plugin::PresetRecord (uri, name, false));
2697         }
2698         CFRelease (presets);
2699         unit->Uninitialize ();
2700
2701 #endif // NO_PLUGIN_STATE
2702         return p;
2703 }
2704
2705 Glib::ustring
2706 AUPluginInfo::au_cache_path ()
2707 {
2708         return Glib::build_filename (ARDOUR::user_cache_directory(), "au_cache");
2709 }
2710
2711 PluginInfoList*
2712 AUPluginInfo::discover (bool scan_only)
2713 {
2714         XMLTree tree;
2715
2716         /* AU require a CAComponentDescription pointer provided by the OS.
2717          * Ardour only caches port and i/o config. It can't just 'scan' without
2718          * 'discovering' (like we do for VST).
2719          *
2720          * "Scan Only" means
2721          * "Iterate over all plugins. skip the ones where there's no io-cache".
2722          */
2723         _scan_only = scan_only;
2724
2725         if (!Glib::file_test (au_cache_path(), Glib::FILE_TEST_EXISTS)) {
2726                 ARDOUR::BootMessage (_("Discovering AudioUnit plugins (could take some time ...)"));
2727                 // flush RAM cache -- after clear_cache()
2728                 cached_info.clear();
2729         }
2730         // create crash log file
2731         au_start_crashlog ();
2732
2733         PluginInfoList* plugs = new PluginInfoList;
2734
2735         discover_fx (*plugs);
2736         discover_music (*plugs);
2737         discover_generators (*plugs);
2738         discover_instruments (*plugs);
2739
2740         // all fine if we get here
2741         au_remove_crashlog ();
2742
2743         DEBUG_TRACE (DEBUG::PluginManager, string_compose ("AU: discovered %1 plugins\n", plugs->size()));
2744
2745         return plugs;
2746 }
2747
2748 void
2749 AUPluginInfo::discover_music (PluginInfoList& plugs)
2750 {
2751         CAComponentDescription desc;
2752         desc.componentFlags = 0;
2753         desc.componentFlagsMask = 0;
2754         desc.componentSubType = 0;
2755         desc.componentManufacturer = 0;
2756         desc.componentType = kAudioUnitType_MusicEffect;
2757
2758         discover_by_description (plugs, desc);
2759 }
2760
2761 void
2762 AUPluginInfo::discover_fx (PluginInfoList& plugs)
2763 {
2764         CAComponentDescription desc;
2765         desc.componentFlags = 0;
2766         desc.componentFlagsMask = 0;
2767         desc.componentSubType = 0;
2768         desc.componentManufacturer = 0;
2769         desc.componentType = kAudioUnitType_Effect;
2770
2771         discover_by_description (plugs, desc);
2772 }
2773
2774 void
2775 AUPluginInfo::discover_generators (PluginInfoList& plugs)
2776 {
2777         CAComponentDescription desc;
2778         desc.componentFlags = 0;
2779         desc.componentFlagsMask = 0;
2780         desc.componentSubType = 0;
2781         desc.componentManufacturer = 0;
2782         desc.componentType = kAudioUnitType_Generator;
2783
2784         discover_by_description (plugs, desc);
2785 }
2786
2787 void
2788 AUPluginInfo::discover_instruments (PluginInfoList& plugs)
2789 {
2790         CAComponentDescription desc;
2791         desc.componentFlags = 0;
2792         desc.componentFlagsMask = 0;
2793         desc.componentSubType = 0;
2794         desc.componentManufacturer = 0;
2795         desc.componentType = kAudioUnitType_MusicDevice;
2796
2797         discover_by_description (plugs, desc);
2798 }
2799
2800
2801 bool
2802 AUPluginInfo::au_get_crashlog (std::string &msg)
2803 {
2804         string fn = Glib::build_filename (ARDOUR::user_cache_directory(), "au_crashlog.txt");
2805         if (!Glib::file_test (fn, Glib::FILE_TEST_EXISTS)) {
2806                 return false;
2807         }
2808         std::ifstream ifs(fn.c_str());
2809         msg.assign ((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
2810         au_remove_crashlog ();
2811         return true;
2812 }
2813
2814 void
2815 AUPluginInfo::au_start_crashlog ()
2816 {
2817         string fn = Glib::build_filename (ARDOUR::user_cache_directory(), "au_crashlog.txt");
2818         assert(!_crashlog_fd);
2819         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("Creating AU Log: %1\n", fn));
2820         if (!(_crashlog_fd = fopen(fn.c_str(), "w"))) {
2821                 PBD::error << "Cannot create AU error-log" << fn << "\n";
2822                 cerr << "Cannot create AU error-log" << fn << "\n";
2823         }
2824 }
2825
2826 void
2827 AUPluginInfo::au_remove_crashlog ()
2828 {
2829         if (_crashlog_fd) {
2830                 ::fclose(_crashlog_fd);
2831                 _crashlog_fd = NULL;
2832         }
2833         string fn = Glib::build_filename (ARDOUR::user_cache_directory(), "au_crashlog.txt");
2834         ::g_unlink(fn.c_str());
2835         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("Remove AU Log: %1\n", fn));
2836 }
2837
2838
2839 void
2840 AUPluginInfo::au_crashlog (std::string msg)
2841 {
2842         if (!_crashlog_fd) {
2843                 fprintf(stderr, "AU: %s\n", msg.c_str());
2844         } else {
2845                 fprintf(_crashlog_fd, "AU: %s\n", msg.c_str());
2846                 ::fflush(_crashlog_fd);
2847         }
2848 }
2849
2850 void
2851 AUPluginInfo::discover_by_description (PluginInfoList& plugs, CAComponentDescription& desc)
2852 {
2853         ArdourComponent comp = 0;
2854         au_crashlog(string_compose("Start AU discovery for Type: %1", (int)desc.componentType));
2855
2856         comp = ArdourFindNext (NULL, &desc);
2857
2858         while (comp != NULL) {
2859                 CAComponentDescription temp;
2860 #ifdef COREAUDIO105
2861                 GetComponentInfo (comp, &temp, NULL, NULL, NULL);
2862 #else
2863                 AudioComponentGetDescription (comp, &temp);
2864 #endif
2865                 CFStringRef itemName = NULL;
2866
2867                 {
2868                         if (itemName != NULL) CFRelease(itemName);
2869                         CFStringRef compTypeString = UTCreateStringForOSType(temp.componentType);
2870                         CFStringRef compSubTypeString = UTCreateStringForOSType(temp.componentSubType);
2871                         CFStringRef compManufacturerString = UTCreateStringForOSType(temp.componentManufacturer);
2872                         itemName = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%@ - %@ - %@"),
2873                                         compTypeString, compManufacturerString, compSubTypeString);
2874                         au_crashlog(string_compose("Scanning ID: %1", CFStringRefToStdString(itemName)));
2875                         if (compTypeString != NULL)
2876                                 CFRelease(compTypeString);
2877                         if (compSubTypeString != NULL)
2878                                 CFRelease(compSubTypeString);
2879                         if (compManufacturerString != NULL)
2880                                 CFRelease(compManufacturerString);
2881                 }
2882
2883                 if (is_blacklisted(CFStringRefToStdString(itemName))) {
2884                         info << string_compose (_("Skipped blacklisted AU plugin %1 "), CFStringRefToStdString(itemName)) << endmsg;
2885                         comp = ArdourFindNext (comp, &desc);
2886                         continue;
2887                 }
2888
2889                 bool has_midi_in = false;
2890
2891                 AUPluginInfoPtr info (new AUPluginInfo
2892                                       (boost::shared_ptr<CAComponentDescription> (new CAComponentDescription(temp))));
2893
2894                 /* although apple designed the subtype field to be a "category" indicator,
2895                    its really turned into a plugin ID field for a given manufacturer. Hence
2896                    there are no categories for AudioUnits. However, to keep the plugins
2897                    showing up under "categories", we'll use the "type" as a high level
2898                    selector.
2899
2900                    NOTE: no panners, format converters or i/o AU's for our purposes
2901                  */
2902
2903                 switch (info->descriptor->Type()) {
2904                 case kAudioUnitType_Panner:
2905                 case kAudioUnitType_OfflineEffect:
2906                 case kAudioUnitType_FormatConverter:
2907                         comp = ArdourFindNext (comp, &desc);
2908                         continue;
2909
2910                 case kAudioUnitType_Output:
2911                         info->category = _("AudioUnit Output");
2912                         break;
2913                 case kAudioUnitType_MusicDevice:
2914                         info->category = _("Instrument");
2915                         has_midi_in = true;
2916                         break;
2917                 case kAudioUnitType_MusicEffect:
2918                         info->category = _("Music Effect");
2919                         has_midi_in = true;
2920                         break;
2921                 case kAudioUnitType_Effect:
2922                         info->category = _("Effect");
2923                         break;
2924                 case kAudioUnitType_Mixer:
2925                         info->category = _("Mixer");
2926                         break;
2927                 case kAudioUnitType_Generator:
2928                         info->category = _("Generator");
2929                         break;
2930                 default:
2931                         info->category = _("AudioUnit (Unknown)");
2932                         break;
2933                 }
2934
2935                 au_blacklist(CFStringRefToStdString(itemName));
2936 #ifdef COREAUDIO105
2937                 get_names (temp, info->name, info->creator);
2938 #else
2939                 get_names (comp, info->name, info->creator);
2940 #endif
2941                 ARDOUR::PluginScanMessage(_("AU"), info->name, false);
2942                 au_crashlog(string_compose("Plugin: %1", info->name));
2943
2944                 info->type = ARDOUR::AudioUnit;
2945                 info->unique_id = stringify_descriptor (*info->descriptor);
2946
2947                 /* XXX not sure of the best way to handle plugin versioning yet */
2948
2949                 CAComponent cacomp (*info->descriptor);
2950
2951 #ifdef COREAUDIO105
2952                 if (cacomp.GetResourceVersion (info->version) != noErr)
2953 #else
2954                 if (cacomp.GetVersion (info->version) != noErr)
2955 #endif
2956                 {
2957                         info->version = 0;
2958                 }
2959
2960                 const int rv = cached_io_configuration (info->unique_id, info->version, cacomp, info->cache, info->name);
2961
2962                 if (rv == 0) {
2963                         /* here we have to map apple's wildcard system to a simple pair
2964                            of values. in ::can_do() we use the whole system, but here
2965                            we need a single pair of values. XXX probably means we should
2966                            remove any use of these values.
2967
2968                            for now, if the plugin provides a wildcard, treat it as 1. we really
2969                            don't care much, because whether we can handle an i/o configuration
2970                            depends upon ::can_support_io_configuration(), not these counts.
2971
2972                            they exist because other parts of ardour try to present i/o configuration
2973                            info to the user, which should perhaps be revisited.
2974                         */
2975
2976                         int32_t possible_in = info->cache.io_configs.front().first;
2977                         int32_t possible_out = info->cache.io_configs.front().second;
2978
2979                         if (possible_in > 0) {
2980                                 info->n_inputs.set (DataType::AUDIO, possible_in);
2981                         } else {
2982                                 info->n_inputs.set (DataType::AUDIO, 1);
2983                         }
2984
2985                         info->n_inputs.set (DataType::MIDI, has_midi_in ? 1 : 0);
2986
2987                         if (possible_out > 0) {
2988                                 info->n_outputs.set (DataType::AUDIO, possible_out);
2989                         } else {
2990                                 info->n_outputs.set (DataType::AUDIO, 1);
2991                         }
2992
2993                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose ("detected AU %1 with %2 i/o configurations - %3\n",
2994                                                                         info->name.c_str(), info->cache.io_configs.size(), info->unique_id));
2995
2996                         plugs.push_back (info);
2997
2998                 }
2999                 else if (rv == -1) {
3000                         error << string_compose (_("Cannot get I/O configuration info for AU %1"), info->name) << endmsg;
3001                 }
3002
3003                 au_unblacklist(CFStringRefToStdString(itemName));
3004                 au_crashlog("Success.");
3005                 comp = ArdourFindNext (comp, &desc);
3006                 if (itemName != NULL) CFRelease(itemName); itemName = NULL;
3007         }
3008         au_crashlog(string_compose("End AU discovery for Type: %1", (int)desc.componentType));
3009 }
3010
3011 int
3012 AUPluginInfo::cached_io_configuration (const std::string& unique_id,
3013                                        UInt32 version,
3014                                        CAComponent& comp,
3015                                        AUPluginCachedInfo& cinfo,
3016                                        const std::string& name)
3017 {
3018         std::string id;
3019         char buf[32];
3020
3021         /* concatenate unique ID with version to provide a key for cached info lookup.
3022            this ensures we don't get stale information, or should if plugin developers
3023            follow Apple "guidelines".
3024          */
3025
3026         snprintf (buf, sizeof (buf), "%u", (uint32_t) version);
3027         id = unique_id;
3028         id += '/';
3029         id += buf;
3030
3031         CachedInfoMap::iterator cim = cached_info.find (id);
3032
3033         if (cim != cached_info.end()) {
3034                 cinfo = cim->second;
3035                 return 0;
3036         }
3037
3038         if (_scan_only) {
3039                 PBD::info << string_compose (_("Skipping AU %1 (not indexed. Discover new plugins to add)"), name) << endmsg;
3040                 return 1;
3041         }
3042
3043         CAAudioUnit unit;
3044         AUChannelInfo* channel_info;
3045         UInt32 cnt;
3046         int ret;
3047
3048         ARDOUR::BootMessage (string_compose (_("Checking AudioUnit: %1"), name));
3049
3050         try {
3051
3052                 if (CAAudioUnit::Open (comp, unit) != noErr) {
3053                         return -1;
3054                 }
3055
3056         } catch (...) {
3057
3058                 warning << string_compose (_("Could not load AU plugin %1 - ignored"), name) << endmsg;
3059                 return -1;
3060
3061         }
3062
3063         DEBUG_TRACE (DEBUG::AudioUnits, "get AU channel info\n");
3064         if ((ret = unit.GetChannelInfo (&channel_info, cnt)) < 0) {
3065                 return -1;
3066         }
3067
3068         if (ret > 0) {
3069                 /* AU is expected to deal with same channel valance in and out */
3070                 cinfo.io_configs.push_back (pair<int,int> (-1, -1));
3071         } else {
3072                 /* CAAudioUnit::GetChannelInfo silently merges bus formats
3073                  * check if this was the case and if so, add
3074                  * bus configs as incremental options.
3075                  */
3076                 Boolean* isWritable = 0;
3077                 UInt32  dataSize = 0;
3078                 OSStatus result = AudioUnitGetPropertyInfo (unit.AU(),
3079                                 kAudioUnitProperty_SupportedNumChannels,
3080                                 kAudioUnitScope_Global, 0,
3081                                 &dataSize, isWritable);
3082                 if (result != noErr && (comp.Desc().IsGenerator() || comp.Desc().IsMusicDevice())) {
3083                         /* incrementally add busses */
3084                         int in = 0;
3085                         int out = 0;
3086                         for (uint32_t n = 0; n < cnt; ++n) {
3087                                 in += channel_info[n].inChannels;
3088                                 out += channel_info[n].outChannels;
3089                                 cinfo.io_configs.push_back (pair<int,int> (in, out));
3090                         }
3091                 } else {
3092                         /* store each configuration */
3093                         for (uint32_t n = 0; n < cnt; ++n) {
3094                                 cinfo.io_configs.push_back (pair<int,int> (channel_info[n].inChannels,
3095                                                         channel_info[n].outChannels));
3096                         }
3097                 }
3098
3099                 free (channel_info);
3100         }
3101
3102         add_cached_info (id, cinfo);
3103         save_cached_info ();
3104
3105         return 0;
3106 }
3107
3108 void
3109 AUPluginInfo::clear_cache ()
3110 {
3111         const string& fn = au_cache_path();
3112         if (Glib::file_test (fn, Glib::FILE_TEST_EXISTS)) {
3113                 ::g_unlink(fn.c_str());
3114         }
3115         // keep cached_info in RAM until restart or re-scan
3116         cached_info.clear();
3117 }
3118
3119 void
3120 AUPluginInfo::add_cached_info (const std::string& id, AUPluginCachedInfo& cinfo)
3121 {
3122         cached_info[id] = cinfo;
3123 }
3124
3125 #define AU_CACHE_VERSION "2.0"
3126
3127 void
3128 AUPluginInfo::save_cached_info ()
3129 {
3130         XMLNode* node;
3131
3132         node = new XMLNode (X_("AudioUnitPluginCache"));
3133         node->set_property( "version", AU_CACHE_VERSION );
3134
3135         for (map<string,AUPluginCachedInfo>::iterator i = cached_info.begin(); i != cached_info.end(); ++i) {
3136                 XMLNode* parent = new XMLNode (X_("plugin"));
3137                 parent->set_property ("id", i->first);
3138                 node->add_child_nocopy (*parent);
3139
3140                 for (vector<pair<int, int> >::iterator j = i->second.io_configs.begin(); j != i->second.io_configs.end(); ++j) {
3141
3142                         XMLNode* child = new XMLNode (X_("io"));
3143
3144                         child->set_property (X_("in"), j->first);
3145                         child->set_property (X_("out"), j->second);
3146                         parent->add_child_nocopy (*child);
3147                 }
3148
3149         }
3150
3151         Glib::ustring path = au_cache_path ();
3152         XMLTree tree;
3153
3154         tree.set_root (node);
3155
3156         if (!tree.write (path)) {
3157                 error << string_compose (_("could not save AU cache to %1"), path) << endmsg;
3158                 g_unlink (path.c_str());
3159         }
3160 }
3161
3162 int
3163 AUPluginInfo::load_cached_info ()
3164 {
3165         Glib::ustring path = au_cache_path ();
3166         XMLTree tree;
3167
3168         if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
3169                 return 0;
3170         }
3171
3172         if ( !tree.read (path) ) {
3173                 error << "au_cache is not a valid XML file.  AU plugins will be re-scanned" << endmsg;
3174                 return -1;
3175         }
3176
3177         const XMLNode* root (tree.root());
3178
3179         if (root->name() != X_("AudioUnitPluginCache")) {
3180                 return -1;
3181         }
3182
3183         //initial version has incorrectly stored i/o info, and/or garbage chars.
3184         XMLProperty const * version = root->property(X_("version"));
3185         if (! ((version != NULL) && (version->value() == X_(AU_CACHE_VERSION)))) {
3186                 error << "au_cache is not correct version.  AU plugins will be re-scanned" << endmsg;
3187                 return -1;
3188         }
3189
3190         cached_info.clear ();
3191
3192         const XMLNodeList children = root->children();
3193
3194         for (XMLNodeConstIterator iter = children.begin(); iter != children.end(); ++iter) {
3195
3196                 const XMLNode* child = *iter;
3197
3198                 if (child->name() == X_("plugin")) {
3199
3200                         const XMLNode* gchild;
3201                         const XMLNodeList gchildren = child->children();
3202
3203                         string id;
3204                         if (!child->get_property (X_("id"), id)) {
3205                                 continue;
3206                         }
3207
3208                         string fixed;
3209                         string version;
3210
3211                         string::size_type slash = id.find_last_of ('/');
3212
3213                         if (slash == string::npos) {
3214                                 continue;
3215                         }
3216
3217                         version = id.substr (slash);
3218                         id = id.substr (0, slash);
3219                         fixed = AUPlugin::maybe_fix_broken_au_id (id);
3220
3221                         if (fixed.empty()) {
3222                                 error << string_compose (_("Your AudioUnit configuration cache contains an AU plugin whose ID cannot be understood - ignored (%1)"), id) << endmsg;
3223                                 continue;
3224                         }
3225
3226                         id = fixed;
3227                         id += version;
3228
3229                         AUPluginCachedInfo cinfo;
3230
3231                         for (XMLNodeConstIterator giter = gchildren.begin(); giter != gchildren.end(); giter++) {
3232
3233                                 gchild = *giter;
3234
3235                                 if (gchild->name() == X_("io")) {
3236
3237                                         int32_t in;
3238                                         int32_t out;
3239
3240                                         if (gchild->get_property (X_("in"), in) && gchild->get_property (X_("out"), out)) {
3241                                                 cinfo.io_configs.push_back (pair<int,int> (in, out));
3242                                         }
3243                                 }
3244                         }
3245
3246                         if (cinfo.io_configs.size()) {
3247                                 add_cached_info (id, cinfo);
3248                         }
3249                 }
3250         }
3251
3252         return 0;
3253 }
3254
3255
3256 std::string
3257 AUPluginInfo::stringify_descriptor (const CAComponentDescription& desc)
3258 {
3259         stringstream s;
3260
3261         /* note: OSType is a compiler-implemenation-defined value,
3262            historically a 32 bit integer created with a multi-character
3263            constant such as 'abcd'. It is, fundamentally, an abomination.
3264         */
3265
3266         s << desc.Type();
3267         s << '-';
3268         s << desc.SubType();
3269         s << '-';
3270         s << desc.Manu();
3271
3272         return s.str();
3273 }
3274
3275 bool
3276 AUPluginInfo::needs_midi_input () const
3277 {
3278         return is_effect_with_midi_input () || is_instrument ();
3279 }
3280
3281 bool
3282 AUPluginInfo::is_effect () const
3283 {
3284         return is_effect_without_midi_input() || is_effect_with_midi_input();
3285 }
3286
3287 bool
3288 AUPluginInfo::is_effect_without_midi_input () const
3289 {
3290         return descriptor->IsAUFX();
3291 }
3292
3293 bool
3294 AUPluginInfo::is_effect_with_midi_input () const
3295 {
3296         return descriptor->IsAUFM();
3297 }
3298
3299 bool
3300 AUPluginInfo::is_instrument () const
3301 {
3302         return descriptor->IsMusicDevice();
3303 }
3304
3305 void
3306 AUPlugin::set_info (PluginInfoPtr info)
3307 {
3308         Plugin::set_info (info);
3309
3310         AUPluginInfoPtr pinfo = boost::dynamic_pointer_cast<AUPluginInfo>(get_info());
3311         _has_midi_input = pinfo->needs_midi_input ();
3312         _has_midi_output = false;
3313 }
3314
3315 int
3316 AUPlugin::create_parameter_listener (AUEventListenerProc cb, void* arg, float interval_secs)
3317 {
3318 #ifdef WITH_CARBON
3319         CFRunLoopRef run_loop = (CFRunLoopRef) GetCFRunLoopFromEventLoop(GetCurrentEventLoop());
3320 #else
3321         CFRunLoopRef run_loop = CFRunLoopGetCurrent();
3322 #endif
3323         CFStringRef  loop_mode = kCFRunLoopDefaultMode;
3324
3325         if (AUEventListenerCreate (cb, arg, run_loop, loop_mode, interval_secs, interval_secs, &_parameter_listener) != noErr) {
3326                 return -1;
3327         }
3328
3329         _parameter_listener_arg = arg;
3330
3331         // listen for latency changes
3332         AudioUnitEvent event;
3333         event.mEventType = kAudioUnitEvent_PropertyChange;
3334         event.mArgument.mProperty.mAudioUnit = unit->AU();
3335         event.mArgument.mProperty.mPropertyID = kAudioUnitProperty_Latency;
3336         event.mArgument.mProperty.mScope = kAudioUnitScope_Global;
3337         event.mArgument.mProperty.mElement = 0;
3338
3339         if (AUEventListenerAddEventType (_parameter_listener, _parameter_listener_arg, &event) != noErr) {
3340                 PBD::error << "Failed to create latency event listener\n";
3341                 // TODO don't cache _current_latency
3342         }
3343
3344         return 0;
3345 }
3346
3347 int
3348 AUPlugin::listen_to_parameter (uint32_t param_id)
3349 {
3350         AudioUnitEvent      event;
3351
3352         if (!_parameter_listener || param_id >= descriptors.size()) {
3353                 return -2;
3354         }
3355
3356         event.mEventType = kAudioUnitEvent_ParameterValueChange;
3357         event.mArgument.mParameter.mAudioUnit = unit->AU();
3358         event.mArgument.mParameter.mParameterID = descriptors[param_id].id;
3359         event.mArgument.mParameter.mScope = descriptors[param_id].scope;
3360         event.mArgument.mParameter.mElement = descriptors[param_id].element;
3361
3362         if (AUEventListenerAddEventType (_parameter_listener, _parameter_listener_arg, &event) != noErr) {
3363                 return -1;
3364         }
3365
3366         event.mEventType = kAudioUnitEvent_BeginParameterChangeGesture;
3367         event.mArgument.mParameter.mAudioUnit = unit->AU();
3368         event.mArgument.mParameter.mParameterID = descriptors[param_id].id;
3369         event.mArgument.mParameter.mScope = descriptors[param_id].scope;
3370         event.mArgument.mParameter.mElement = descriptors[param_id].element;
3371
3372         if (AUEventListenerAddEventType (_parameter_listener, _parameter_listener_arg, &event) != noErr) {
3373                 return -1;
3374         }
3375
3376         event.mEventType = kAudioUnitEvent_EndParameterChangeGesture;
3377         event.mArgument.mParameter.mAudioUnit = unit->AU();
3378         event.mArgument.mParameter.mParameterID = descriptors[param_id].id;
3379         event.mArgument.mParameter.mScope = descriptors[param_id].scope;
3380         event.mArgument.mParameter.mElement = descriptors[param_id].element;
3381
3382         if (AUEventListenerAddEventType (_parameter_listener, _parameter_listener_arg, &event) != noErr) {
3383                 return -1;
3384         }
3385
3386         return 0;
3387 }
3388
3389 int
3390 AUPlugin::end_listen_to_parameter (uint32_t param_id)
3391 {
3392         AudioUnitEvent      event;
3393
3394         if (!_parameter_listener || param_id >= descriptors.size()) {
3395                 return -2;
3396         }
3397
3398         event.mEventType = kAudioUnitEvent_ParameterValueChange;
3399         event.mArgument.mParameter.mAudioUnit = unit->AU();
3400         event.mArgument.mParameter.mParameterID = descriptors[param_id].id;
3401         event.mArgument.mParameter.mScope = descriptors[param_id].scope;
3402         event.mArgument.mParameter.mElement = descriptors[param_id].element;
3403
3404         if (AUEventListenerRemoveEventType (_parameter_listener, _parameter_listener_arg, &event) != noErr) {
3405                 return -1;
3406         }
3407
3408         event.mEventType = kAudioUnitEvent_BeginParameterChangeGesture;
3409         event.mArgument.mParameter.mAudioUnit = unit->AU();
3410         event.mArgument.mParameter.mParameterID = descriptors[param_id].id;
3411         event.mArgument.mParameter.mScope = descriptors[param_id].scope;
3412         event.mArgument.mParameter.mElement = descriptors[param_id].element;
3413
3414         if (AUEventListenerRemoveEventType (_parameter_listener, _parameter_listener_arg, &event) != noErr) {
3415                 return -1;
3416         }
3417
3418         event.mEventType = kAudioUnitEvent_EndParameterChangeGesture;
3419         event.mArgument.mParameter.mAudioUnit = unit->AU();
3420         event.mArgument.mParameter.mParameterID = descriptors[param_id].id;
3421         event.mArgument.mParameter.mScope = descriptors[param_id].scope;
3422         event.mArgument.mParameter.mElement = descriptors[param_id].element;
3423
3424         if (AUEventListenerRemoveEventType (_parameter_listener, _parameter_listener_arg, &event) != noErr) {
3425                 return -1;
3426         }
3427
3428         return 0;
3429 }
3430
3431 void
3432 AUPlugin::_parameter_change_listener (void* arg, void* src, const AudioUnitEvent* event, UInt64 host_time, Float32 new_value)
3433 {
3434         ((AUPlugin*) arg)->parameter_change_listener (arg, src, event, host_time, new_value);
3435 }
3436
3437 void
3438 AUPlugin::parameter_change_listener (void* /*arg*/, void* src, const AudioUnitEvent* event, UInt64 /*host_time*/, Float32 new_value)
3439 {
3440         if (event->mEventType == kAudioUnitEvent_PropertyChange) {
3441                 if (event->mArgument.mProperty.mPropertyID == kAudioUnitProperty_Latency) {
3442                         DEBUG_TRACE (DEBUG::AudioUnits, string_compose("AU Latency Change Event %1 <> %2\n", new_value, unit->Latency()));
3443                         guint lat = unit->Latency() * _session.frame_rate();
3444                         g_atomic_int_set (&_current_latency, lat);
3445                 }
3446                 return;
3447         }
3448
3449         ParameterMap::iterator i;
3450
3451         if ((i = parameter_map.find (event->mArgument.mParameter.mParameterID)) == parameter_map.end()) {
3452                 return;
3453         }
3454
3455         switch (event->mEventType) {
3456         case kAudioUnitEvent_BeginParameterChangeGesture:
3457                 StartTouch (i->second);
3458                 break;
3459         case kAudioUnitEvent_EndParameterChangeGesture:
3460                 EndTouch (i->second);
3461                 break;
3462         case kAudioUnitEvent_ParameterValueChange:
3463                 /* whenever we change a parameter, we request that we are NOT notified of the change, so anytime we arrive here, it
3464                    means that something else (i.e. the plugin GUI) made the change.
3465                 */
3466                 ParameterChangedExternally (i->second, new_value);
3467                 break;
3468         default:
3469                 break;
3470         }
3471 }