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