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