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