remove some AU debugging output
[ardour2.git] / libs / ardour / audio_unit.cc
blob4b0065e3f291e151f14374141c182f8cbafbf073
1 /*
2 Copyright (C) 2006 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <sstream>
21 #include <errno.h>
22 #include <string.h>
24 #include <pbd/transmitter.h>
25 #include <pbd/xml++.h>
26 #include <pbd/whitespace.h>
27 #include <pbd/pathscanner.h>
29 #include <glibmm/thread.h>
30 #include <glibmm/fileutils.h>
31 #include <glibmm/miscutils.h>
33 #include <ardour/ardour.h>
34 #include <ardour/audioengine.h>
35 #include <ardour/io.h>
36 #include <ardour/audio_unit.h>
37 #include <ardour/session.h>
38 #include <ardour/utils.h>
40 #include <appleutility/CAAudioUnit.h>
41 #include <appleutility/CAAUParameter.h>
43 #include <CoreFoundation/CoreFoundation.h>
44 #include <CoreServices/CoreServices.h>
45 #include <AudioUnit/AudioUnit.h>
47 #include "i18n.h"
49 using namespace std;
50 using namespace PBD;
51 using namespace ARDOUR;
53 #ifndef AU_STATE_SUPPORT
54 static bool seen_get_state_message = false;
55 static bool seen_set_state_message = false;
56 static bool seen_loading_message = false;
57 static bool seen_saving_message = false;
58 #endif
60 AUPluginInfo::CachedInfoMap AUPluginInfo::cached_info;
62 static string preset_search_path = "/Library/Audio/Presets:/Network/Library/Audio/Presets";
63 static string preset_suffix = ".aupreset";
64 static bool preset_search_path_initialized = false;
66 static OSStatus
67 _render_callback(void *userData,
68 AudioUnitRenderActionFlags *ioActionFlags,
69 const AudioTimeStamp *inTimeStamp,
70 UInt32 inBusNumber,
71 UInt32 inNumberFrames,
72 AudioBufferList* ioData)
74 return ((AUPlugin*)userData)->render_callback (ioActionFlags, inTimeStamp, inBusNumber, inNumberFrames, ioData);
77 static int
78 save_property_list (CFPropertyListRef propertyList, Glib::ustring path)
81 CFDataRef xmlData;
82 int fd;
84 // Convert the property list into XML data.
86 xmlData = CFPropertyListCreateXMLData( kCFAllocatorDefault, propertyList);
88 if (!xmlData) {
89 error << _("Could not create XML version of property list") << endmsg;
90 return -1;
93 // Write the XML data to the file.
95 fd = open (path.c_str(), O_WRONLY|O_CREAT|O_EXCL, 0664);
96 while (fd < 0) {
97 if (errno == EEXIST) {
98 /* tell any UI's that this file already exists and ask them what to do */
99 bool overwrite = Plugin::PresetFileExists(); // EMIT SIGNAL
100 if (overwrite) {
101 fd = open (path.c_str(), O_WRONLY, 0664);
102 continue;
103 } else {
104 return 0;
107 error << string_compose (_("Cannot open preset file %1 (%2)"), path, strerror (errno)) << endmsg;
108 CFRelease (xmlData);
109 return -1;
112 size_t cnt = CFDataGetLength (xmlData);
114 if (write (fd, CFDataGetBytePtr (xmlData), cnt) != cnt) {
115 CFRelease (xmlData);
116 close (fd);
117 return -1;
120 close (fd);
121 return 0;
125 static CFPropertyListRef
126 load_property_list (Glib::ustring path)
128 int fd;
129 CFPropertyListRef propertyList;
130 CFDataRef xmlData;
131 CFStringRef errorString;
133 // Read the XML file.
135 if ((fd = open (path.c_str(), O_RDONLY)) < 0) {
136 return propertyList;
140 off_t len = lseek (fd, 0, SEEK_END);
141 char* buf = new char[len];
142 lseek (fd, 0, SEEK_SET);
144 if (read (fd, buf, len) != len) {
145 delete [] buf;
146 close (fd);
147 return propertyList;
150 close (fd);
152 xmlData = CFDataCreateWithBytesNoCopy (kCFAllocatorDefault, (UInt8*) buf, len, kCFAllocatorNull);
154 // Reconstitute the dictionary using the XML data.
156 propertyList = CFPropertyListCreateFromXMLData( kCFAllocatorDefault,
157 xmlData,
158 kCFPropertyListImmutable,
159 &errorString);
161 CFRelease (xmlData);
162 delete [] buf;
164 return propertyList;
167 //-----------------------------------------------------------------------------
168 static void
169 set_preset_name_in_plist (CFPropertyListRef plist, string preset_name)
171 if (!plist) {
172 return;
174 CFStringRef pn = CFStringCreateWithCString (kCFAllocatorDefault, preset_name.c_str(), kCFStringEncodingUTF8);
176 if (CFGetTypeID (plist) == CFDictionaryGetTypeID()) {
177 CFDictionarySetValue ((CFMutableDictionaryRef)plist, CFSTR(kAUPresetNameKey), pn);
180 CFRelease (pn);
183 //-----------------------------------------------------------------------------
184 static std::string
185 get_preset_name_in_plist (CFPropertyListRef plist)
187 std::string ret;
189 if (!plist) {
190 return ret;
193 if (CFGetTypeID (plist) == CFDictionaryGetTypeID()) {
194 const void *p = CFDictionaryGetValue ((CFMutableDictionaryRef)plist, CFSTR(kAUPresetNameKey));
195 if (p) {
196 CFStringRef str = (CFStringRef) p;
197 int len = CFStringGetLength(str);
198 len = (len * 2) + 1;
199 char local_buffer[len];
200 if (CFStringGetCString (str, local_buffer, len, kCFStringEncodingUTF8)) {
201 ret = local_buffer;
205 return ret;
208 //--------------------------------------------------------------------------
209 // general implementation for ComponentDescriptionsMatch() and ComponentDescriptionsMatch_Loosely()
210 // if inIgnoreType is true, then the type code is ignored in the ComponentDescriptions
211 Boolean ComponentDescriptionsMatch_General(const ComponentDescription * inComponentDescription1, const ComponentDescription * inComponentDescription2, Boolean inIgnoreType);
212 Boolean ComponentDescriptionsMatch_General(const ComponentDescription * inComponentDescription1, const ComponentDescription * inComponentDescription2, Boolean inIgnoreType)
214 if ( (inComponentDescription1 == NULL) || (inComponentDescription2 == NULL) )
215 return FALSE;
217 if ( (inComponentDescription1->componentSubType == inComponentDescription2->componentSubType)
218 && (inComponentDescription1->componentManufacturer == inComponentDescription2->componentManufacturer) )
220 // only sub-type and manufacturer IDs need to be equal
221 if (inIgnoreType)
222 return TRUE;
223 // type, sub-type, and manufacturer IDs all need to be equal in order to call this a match
224 else if (inComponentDescription1->componentType == inComponentDescription2->componentType)
225 return TRUE;
228 return FALSE;
231 //--------------------------------------------------------------------------
232 // general implementation for ComponentAndDescriptionMatch() and ComponentAndDescriptionMatch_Loosely()
233 // if inIgnoreType is true, then the type code is ignored in the ComponentDescriptions
234 Boolean ComponentAndDescriptionMatch_General(Component inComponent, const ComponentDescription * inComponentDescription, Boolean inIgnoreType);
235 Boolean ComponentAndDescriptionMatch_General(Component inComponent, const ComponentDescription * inComponentDescription, Boolean inIgnoreType)
237 OSErr status;
238 ComponentDescription desc;
240 if ( (inComponent == NULL) || (inComponentDescription == NULL) )
241 return FALSE;
243 // get the ComponentDescription of the input Component
244 status = GetComponentInfo(inComponent, &desc, NULL, NULL, NULL);
245 if (status != noErr)
246 return FALSE;
248 // check if the Component's ComponentDescription matches the input ComponentDescription
249 return ComponentDescriptionsMatch_General(&desc, inComponentDescription, inIgnoreType);
252 //--------------------------------------------------------------------------
253 // determine if 2 ComponentDescriptions are basically equal
254 // (by that, I mean that the important identifying values are compared,
255 // but not the ComponentDescription flags)
256 Boolean ComponentDescriptionsMatch(const ComponentDescription * inComponentDescription1, const ComponentDescription * inComponentDescription2)
258 return ComponentDescriptionsMatch_General(inComponentDescription1, inComponentDescription2, FALSE);
261 //--------------------------------------------------------------------------
262 // determine if 2 ComponentDescriptions have matching sub-type and manufacturer codes
263 Boolean ComponentDescriptionsMatch_Loose(const ComponentDescription * inComponentDescription1, const ComponentDescription * inComponentDescription2)
265 return ComponentDescriptionsMatch_General(inComponentDescription1, inComponentDescription2, TRUE);
268 //--------------------------------------------------------------------------
269 // determine if a ComponentDescription basically matches that of a particular Component
270 Boolean ComponentAndDescriptionMatch(Component inComponent, const ComponentDescription * inComponentDescription)
272 return ComponentAndDescriptionMatch_General(inComponent, inComponentDescription, FALSE);
275 //--------------------------------------------------------------------------
276 // determine if a ComponentDescription matches only the sub-type and manufacturer codes of a particular Component
277 Boolean ComponentAndDescriptionMatch_Loosely(Component inComponent, const ComponentDescription * inComponentDescription)
279 return ComponentAndDescriptionMatch_General(inComponent, inComponentDescription, TRUE);
283 AUPlugin::AUPlugin (AudioEngine& engine, Session& session, boost::shared_ptr<CAComponent> _comp)
284 : Plugin (engine, session),
285 comp (_comp),
286 unit (new CAAudioUnit),
287 initialized (false),
288 buffers (0),
289 current_maxbuf (0),
290 current_offset (0),
291 current_buffers (0),
292 frames_processed (0)
294 if (!preset_search_path_initialized) {
295 Glib::ustring p = Glib::get_home_dir();
296 p += "/Library/Audio/Presets:";
297 p += preset_search_path;
298 preset_search_path = p;
299 preset_search_path_initialized = true;
302 init ();
305 AUPlugin::AUPlugin (const AUPlugin& other)
306 : Plugin (other)
307 , comp (other.get_comp())
308 , unit (new CAAudioUnit)
309 , initialized (false)
310 , buffers (0)
311 , current_maxbuf (0)
312 , current_offset (0)
313 , current_buffers (0)
314 , frames_processed (0)
317 init ();
320 AUPlugin::~AUPlugin ()
322 if (unit) {
323 unit->Uninitialize ();
326 if (buffers) {
327 free (buffers);
332 void
333 AUPlugin::init ()
335 OSErr err;
337 try {
338 err = CAAudioUnit::Open (*(comp.get()), *unit);
339 } catch (...) {
340 error << _("Exception thrown during AudioUnit plugin loading - plugin ignored") << endmsg;
341 throw failed_constructor();
344 if (err != noErr) {
345 error << _("AudioUnit: Could not convert CAComponent to CAAudioUnit") << endmsg;
346 throw failed_constructor ();
349 AURenderCallbackStruct renderCallbackInfo;
351 renderCallbackInfo.inputProc = _render_callback;
352 renderCallbackInfo.inputProcRefCon = this;
354 if ((err = unit->SetProperty (kAudioUnitProperty_SetRenderCallback, kAudioUnitScope_Input,
355 0, (void*) &renderCallbackInfo, sizeof(renderCallbackInfo))) != 0) {
356 cerr << "cannot install render callback (err = " << err << ')' << endl;
357 throw failed_constructor();
360 unit->GetElementCount (kAudioUnitScope_Global, global_elements);
361 unit->GetElementCount (kAudioUnitScope_Input, input_elements);
362 unit->GetElementCount (kAudioUnitScope_Output, output_elements);
364 /* these keep track of *configured* channel set up,
365 not potential set ups.
368 input_channels = -1;
369 output_channels = -1;
371 if (_set_block_size (_session.get_block_size())) {
372 error << _("AUPlugin: cannot set processing block size") << endmsg;
373 throw failed_constructor();
376 discover_parameters ();
378 Plugin::setup_controls ();
381 void
382 AUPlugin::discover_parameters ()
384 /* discover writable parameters */
386 AudioUnitScope scopes[] = {
387 kAudioUnitScope_Global,
388 kAudioUnitScope_Output,
389 kAudioUnitScope_Input
392 descriptors.clear ();
394 for (uint32_t i = 0; i < sizeof (scopes) / sizeof (scopes[0]); ++i) {
396 AUParamInfo param_info (unit->AU(), false, false, scopes[i]);
398 for (uint32_t i = 0; i < param_info.NumParams(); ++i) {
400 AUParameterDescriptor d;
402 d.id = param_info.ParamID (i);
404 const CAAUParameter* param = param_info.GetParamInfo (d.id);
405 const AudioUnitParameterInfo& info (param->ParamInfo());
407 const int len = CFStringGetLength (param->GetName());;
408 char local_buffer[len*2];
409 Boolean good = CFStringGetCString(param->GetName(),local_buffer,len*2,kCFStringEncodingMacRoman);
410 if (!good) {
411 d.label = "???";
412 } else {
413 d.label = local_buffer;
416 d.scope = param_info.GetScope ();
417 d.element = param_info.GetElement ();
419 /* info.units to consider */
421 kAudioUnitParameterUnit_Generic = 0
422 kAudioUnitParameterUnit_Indexed = 1
423 kAudioUnitParameterUnit_Boolean = 2
424 kAudioUnitParameterUnit_Percent = 3
425 kAudioUnitParameterUnit_Seconds = 4
426 kAudioUnitParameterUnit_SampleFrames = 5
427 kAudioUnitParameterUnit_Phase = 6
428 kAudioUnitParameterUnit_Rate = 7
429 kAudioUnitParameterUnit_Hertz = 8
430 kAudioUnitParameterUnit_Cents = 9
431 kAudioUnitParameterUnit_RelativeSemiTones = 10
432 kAudioUnitParameterUnit_MIDINoteNumber = 11
433 kAudioUnitParameterUnit_MIDIController = 12
434 kAudioUnitParameterUnit_Decibels = 13
435 kAudioUnitParameterUnit_LinearGain = 14
436 kAudioUnitParameterUnit_Degrees = 15
437 kAudioUnitParameterUnit_EqualPowerCrossfade = 16
438 kAudioUnitParameterUnit_MixerFaderCurve1 = 17
439 kAudioUnitParameterUnit_Pan = 18
440 kAudioUnitParameterUnit_Meters = 19
441 kAudioUnitParameterUnit_AbsoluteCents = 20
442 kAudioUnitParameterUnit_Octaves = 21
443 kAudioUnitParameterUnit_BPM = 22
444 kAudioUnitParameterUnit_Beats = 23
445 kAudioUnitParameterUnit_Milliseconds = 24
446 kAudioUnitParameterUnit_Ratio = 25
449 /* info.flags to consider */
453 kAudioUnitParameterFlag_CFNameRelease = (1L << 4)
454 kAudioUnitParameterFlag_HasClump = (1L << 20)
455 kAudioUnitParameterFlag_HasName = (1L << 21)
456 kAudioUnitParameterFlag_DisplayLogarithmic = (1L << 22)
457 kAudioUnitParameterFlag_IsHighResolution = (1L << 23)
458 kAudioUnitParameterFlag_NonRealTime = (1L << 24)
459 kAudioUnitParameterFlag_CanRamp = (1L << 25)
460 kAudioUnitParameterFlag_ExpertMode = (1L << 26)
461 kAudioUnitParameterFlag_HasCFNameString = (1L << 27)
462 kAudioUnitParameterFlag_IsGlobalMeta = (1L << 28)
463 kAudioUnitParameterFlag_IsElementMeta = (1L << 29)
464 kAudioUnitParameterFlag_IsReadable = (1L << 30)
465 kAudioUnitParameterFlag_IsWritable = (1L << 31)
468 d.lower = info.minValue;
469 d.upper = info.maxValue;
470 d.default_value = info.defaultValue;
472 d.integer_step = (info.unit & kAudioUnitParameterUnit_Indexed);
473 d.toggled = (info.unit & kAudioUnitParameterUnit_Boolean) ||
474 (d.integer_step && ((d.upper - d.lower) == 1.0));
475 d.sr_dependent = (info.unit & kAudioUnitParameterUnit_SampleFrames);
476 d.automatable = !d.toggled &&
477 !(info.flags & kAudioUnitParameterFlag_NonRealTime) &&
478 (info.flags & kAudioUnitParameterFlag_IsWritable);
480 d.logarithmic = (info.flags & kAudioUnitParameterFlag_DisplayLogarithmic);
481 d.unit = info.unit;
483 d.step = 1.0;
484 d.smallstep = 0.1;
485 d.largestep = 10.0;
486 d.min_unbound = 0; // lower is bound
487 d.max_unbound = 0; // upper is bound
489 descriptors.push_back (d);
495 string
496 AUPlugin::unique_id () const
498 return AUPluginInfo::stringify_descriptor (comp->Desc());
501 const char *
502 AUPlugin::label () const
504 return _info->name.c_str();
507 uint32_t
508 AUPlugin::parameter_count () const
510 return descriptors.size();
513 float
514 AUPlugin::default_value (uint32_t port)
516 if (port < descriptors.size()) {
517 return descriptors[port].default_value;
520 return 0;
523 nframes_t
524 AUPlugin::latency () const
526 return unit->Latency() * _session.frame_rate();
529 void
530 AUPlugin::set_parameter (uint32_t which, float val)
532 if (which < descriptors.size()) {
533 const AUParameterDescriptor& d (descriptors[which]);
534 unit->SetParameter (d.id, d.scope, d.element, val);
538 float
539 AUPlugin::get_parameter (uint32_t which) const
541 float val = 0.0;
542 if (which < descriptors.size()) {
543 const AUParameterDescriptor& d (descriptors[which]);
544 unit->GetParameter(d.id, d.scope, d.element, val);
546 return val;
550 AUPlugin::get_parameter_descriptor (uint32_t which, ParameterDescriptor& pd) const
552 if (which < descriptors.size()) {
553 pd = descriptors[which];
554 return 0;
556 return -1;
559 uint32_t
560 AUPlugin::nth_parameter (uint32_t which, bool& ok) const
562 if (which < descriptors.size()) {
563 ok = true;
564 return which;
566 ok = false;
567 return 0;
570 void
571 AUPlugin::activate ()
573 if (!initialized) {
574 OSErr err;
575 if ((err = unit->Initialize()) != noErr) {
576 error << string_compose (_("AUPlugin: %1 cannot initialize plugin (err = %2)"), name(), err) << endmsg;
577 } else {
578 frames_processed = 0;
579 initialized = true;
584 void
585 AUPlugin::deactivate ()
587 unit->GlobalReset ();
590 void
591 AUPlugin::set_block_size (nframes_t nframes)
593 _set_block_size (nframes);
597 AUPlugin::_set_block_size (nframes_t nframes)
599 bool was_initialized = initialized;
600 UInt32 numFrames = nframes;
601 OSErr err;
603 if (initialized) {
604 unit->Uninitialize ();
607 if ((err = unit->SetProperty (kAudioUnitProperty_MaximumFramesPerSlice, kAudioUnitScope_Global,
608 0, &numFrames, sizeof (numFrames))) != noErr) {
609 cerr << "cannot set max frames (err = " << err << ')' << endl;
610 return -1;
613 if (was_initialized) {
614 activate ();
617 return 0;
620 int32_t
621 AUPlugin::configure_io (int32_t in, int32_t out)
623 AudioStreamBasicDescription streamFormat;
625 streamFormat.mSampleRate = _session.frame_rate();
626 streamFormat.mFormatID = kAudioFormatLinearPCM;
627 streamFormat.mFormatFlags = kAudioFormatFlagIsFloat|kAudioFormatFlagIsPacked|kAudioFormatFlagIsNonInterleaved;
629 #ifdef __LITTLE_ENDIAN__
630 /* relax */
631 #else
632 streamFormat.mFormatFlags |= kAudioFormatFlagIsBigEndian;
633 #endif
635 streamFormat.mBitsPerChannel = 32;
636 streamFormat.mFramesPerPacket = 1;
638 /* apple says that for non-interleaved data, these
639 values always refer to a single channel.
641 streamFormat.mBytesPerPacket = 4;
642 streamFormat.mBytesPerFrame = 4;
644 streamFormat.mChannelsPerFrame = in;
646 if (set_input_format (streamFormat) != 0) {
647 return -1;
650 streamFormat.mChannelsPerFrame = out;
652 if (set_output_format (streamFormat) != 0) {
653 return -1;
656 return Plugin::configure_io (in, out);
659 int32_t
660 AUPlugin::can_do (int32_t in, int32_t& out)
662 // XXX as of May 13th 2008, AU plugin support returns a count of either 1 or -1. We never
663 // attempt to multiply-instantiate plugins to meet io configurations.
665 int32_t plugcnt = -1;
666 AUPluginInfoPtr pinfo = boost::dynamic_pointer_cast<AUPluginInfo>(get_info());
668 out = -1;
670 vector<pair<int,int> >& io_configs = pinfo->cache.io_configs;
672 for (vector<pair<int,int> >::iterator i = io_configs.begin(); i != io_configs.end(); ++i) {
674 int32_t possible_in = i->first;
675 int32_t possible_out = i->second;
677 if (possible_out == 0) {
678 warning << string_compose (_("AU %1 has zero outputs - configuration ignored"), name()) << endmsg;
679 continue;
682 if (possible_in == 0) {
684 /* instrument plugin, always legal but throws away inputs ...
687 if (possible_out == -1) {
688 /* out much match in (UNLIKELY!!) */
689 out = in;
690 plugcnt = 1;
691 } else if (possible_out == -2) {
692 /* any configuration possible, pick matching */
693 out = in;
694 plugcnt = 1;
695 } else if (possible_out < -2) {
696 /* explicit variable number of outputs, pick maximum */
697 out = -possible_out;
698 plugcnt = 1;
699 } else {
700 /* exact number of outputs */
701 out = possible_out;
702 plugcnt = 1;
706 if (possible_in == -1) {
708 /* wildcard for input */
710 if (possible_out == -1) {
711 /* out much match in */
712 out = in;
713 plugcnt = 1;
714 } else if (possible_out == -2) {
715 /* any configuration possible, pick matching */
716 out = in;
717 plugcnt = 1;
718 } else if (possible_out < -2) {
719 /* explicit variable number of outputs, pick maximum */
720 out = -possible_out;
721 plugcnt = 1;
722 } else {
723 /* exact number of outputs */
724 out = possible_out;
725 plugcnt = 1;
729 if (possible_in == -2) {
731 if (possible_out == -1) {
732 /* any configuration possible, pick matching */
733 out = in;
734 plugcnt = 1;
735 } else if (possible_out == -2) {
736 error << string_compose (_("AU plugin %1 has illegal IO configuration (-2,-2)"), name())
737 << endmsg;
738 plugcnt = -1;
739 } else if (possible_out < -2) {
740 /* explicit variable number of outputs, pick maximum */
741 out = -possible_out;
742 plugcnt = 1;
743 } else {
744 /* exact number of outputs */
745 out = possible_out;
746 plugcnt = 1;
750 if (possible_in < -2) {
752 /* explicit variable number of inputs */
754 if (in > -possible_in) {
755 /* request is too large */
756 plugcnt = -1;
759 if (possible_out == -1) {
760 /* out must match in */
761 out = in;
762 plugcnt = 1;
763 } else if (possible_out == -2) {
764 error << string_compose (_("AU plugin %1 has illegal IO configuration (-2,-2)"), name())
765 << endmsg;
766 plugcnt = -1;
767 } else if (possible_out < -2) {
768 /* explicit variable number of outputs, pick maximum */
769 out = -possible_out;
770 plugcnt = 1;
771 } else {
772 /* exact number of outputs */
773 out = possible_out;
774 plugcnt = 1;
778 if (possible_in == in) {
780 /* exact number of inputs ... must match obviously */
782 if (possible_out == -1) {
783 /* out must match in */
784 out = in;
785 plugcnt = 1;
786 } else if (possible_out == -2) {
787 /* any output configuration, pick matching */
788 out = in;
789 plugcnt = -1;
790 } else if (possible_out < -2) {
791 /* explicit variable number of outputs, pick maximum */
792 out = -possible_out;
793 plugcnt = 1;
794 } else {
795 /* exact number of outputs */
796 out = possible_out;
797 plugcnt = 1;
803 /* no fit */
804 return plugcnt;
808 AUPlugin::set_input_format (AudioStreamBasicDescription& fmt)
810 return set_stream_format (kAudioUnitScope_Input, input_elements, fmt);
814 AUPlugin::set_output_format (AudioStreamBasicDescription& fmt)
816 if (set_stream_format (kAudioUnitScope_Output, output_elements, fmt) != 0) {
817 return -1;
820 if (buffers) {
821 free (buffers);
822 buffers = 0;
825 buffers = (AudioBufferList *) malloc (offsetof(AudioBufferList, mBuffers) +
826 fmt.mChannelsPerFrame * sizeof(AudioBuffer));
828 Glib::Mutex::Lock em (_session.engine().process_lock());
829 IO::MoreOutputs (fmt.mChannelsPerFrame);
831 return 0;
835 AUPlugin::set_stream_format (int scope, uint32_t cnt, AudioStreamBasicDescription& fmt)
837 OSErr result;
839 for (uint32_t i = 0; i < cnt; ++i) {
840 if ((result = unit->SetFormat (scope, i, fmt)) != 0) {
841 error << string_compose (_("AUPlugin: could not set stream format for %1/%2 (err = %3)"),
842 (scope == kAudioUnitScope_Input ? "input" : "output"), i, result) << endmsg;
843 return -1;
847 if (scope == kAudioUnitScope_Input) {
848 input_channels = fmt.mChannelsPerFrame;
849 } else {
850 output_channels = fmt.mChannelsPerFrame;
853 return 0;
856 uint32_t
857 AUPlugin::input_streams() const
859 if (input_channels < 0) {
860 warning << string_compose (_("AUPlugin: %1 input_streams() called without any format set!"), name()) << endmsg;
861 return 1;
863 return input_channels;
867 uint32_t
868 AUPlugin::output_streams() const
870 if (output_channels < 0) {
871 warning << string_compose (_("AUPlugin: %1 output_streams() called without any format set!"), name()) << endmsg;
872 return 1;
874 return output_channels;
877 OSStatus
878 AUPlugin::render_callback(AudioUnitRenderActionFlags *ioActionFlags,
879 const AudioTimeStamp *inTimeStamp,
880 UInt32 inBusNumber,
881 UInt32 inNumberFrames,
882 AudioBufferList* ioData)
884 /* not much to do - the data is already in the buffers given to us in connect_and_run() */
886 if (current_maxbuf == 0) {
887 error << _("AUPlugin: render callback called illegally!") << endmsg;
888 return kAudioUnitErr_CannotDoInCurrentContext;
891 for (uint32_t i = 0; i < current_maxbuf; ++i) {
892 ioData->mBuffers[i].mNumberChannels = 1;
893 ioData->mBuffers[i].mDataByteSize = sizeof (Sample) * inNumberFrames;
894 ioData->mBuffers[i].mData = (*current_buffers)[i] + cb_offset + current_offset;
897 cb_offset += inNumberFrames;
899 return noErr;
903 AUPlugin::connect_and_run (vector<Sample*>& bufs, uint32_t maxbuf, int32_t& in, int32_t& out, nframes_t nframes, nframes_t offset)
905 AudioUnitRenderActionFlags flags = 0;
906 AudioTimeStamp ts;
908 current_buffers = &bufs;
909 current_maxbuf = maxbuf;
910 current_offset = offset;
911 cb_offset = 0;
913 buffers->mNumberBuffers = maxbuf;
915 for (uint32_t i = 0; i < maxbuf; ++i) {
916 buffers->mBuffers[i].mNumberChannels = 1;
917 buffers->mBuffers[i].mDataByteSize = nframes * sizeof (Sample);
918 buffers->mBuffers[i].mData = 0;
921 ts.mSampleTime = frames_processed;
922 ts.mFlags = kAudioTimeStampSampleTimeValid;
924 if (unit->Render (&flags, &ts, 0, nframes, buffers) == noErr) {
926 current_maxbuf = 0;
927 frames_processed += nframes;
929 for (uint32_t i = 0; i < maxbuf; ++i) {
930 if (bufs[i] + offset != buffers->mBuffers[i].mData) {
931 memcpy (bufs[i]+offset, buffers->mBuffers[i].mData, nframes * sizeof (Sample));
934 return 0;
937 return -1;
940 set<uint32_t>
941 AUPlugin::automatable() const
943 set<uint32_t> automates;
945 for (uint32_t i = 0; i < descriptors.size(); ++i) {
946 if (descriptors[i].automatable) {
947 automates.insert (i);
951 return automates;
954 string
955 AUPlugin::describe_parameter (uint32_t param)
957 return descriptors[param].label;
960 void
961 AUPlugin::print_parameter (uint32_t param, char* buf, uint32_t len) const
963 // NameValue stuff here
966 bool
967 AUPlugin::parameter_is_audio (uint32_t) const
969 return false;
972 bool
973 AUPlugin::parameter_is_control (uint32_t) const
975 return true;
978 bool
979 AUPlugin::parameter_is_input (uint32_t) const
981 return false;
984 bool
985 AUPlugin::parameter_is_output (uint32_t) const
987 return false;
990 XMLNode&
991 AUPlugin::get_state()
993 LocaleGuard lg (X_("POSIX"));
994 XMLNode *root = new XMLNode (state_node_name());
996 #ifdef AU_STATE_SUPPORT
997 CFDataRef xmlData;
998 CFPropertyListRef propertyList;
1000 if (unit->GetAUPreset (propertyList) != noErr) {
1001 return *root;
1004 // Convert the property list into XML data.
1006 xmlData = CFPropertyListCreateXMLData( kCFAllocatorDefault, propertyList);
1008 if (!xmlData) {
1009 error << _("Could not create XML version of property list") << endmsg;
1010 return *root;
1013 /* re-parse XML bytes to create a libxml++ XMLTree that we can merge into
1014 our state node. GACK!
1017 XMLTree t;
1019 if (t.read_buffer (string ((const char*) CFDataGetBytePtr (xmlData), CFDataGetLength (xmlData)))) {
1020 if (t.root()) {
1021 root->add_child_copy (*t.root());
1025 CFRelease (xmlData);
1026 CFRelease (propertyList);
1027 #else
1028 if (!seen_get_state_message) {
1029 info << _("Saving AudioUnit settings is not supported in this build of Ardour. Consider paying for a newer version")
1030 << endmsg;
1031 seen_get_state_message = true;
1033 #endif
1035 return *root;
1039 AUPlugin::set_state(const XMLNode& node)
1041 #ifdef AU_STATE_SUPPORT
1042 int ret = -1;
1043 CFPropertyListRef propertyList;
1044 LocaleGuard lg (X_("POSIX"));
1046 if (node.name() != state_node_name()) {
1047 error << _("Bad node sent to AUPlugin::set_state") << endmsg;
1048 return -1;
1051 if (node.children().empty()) {
1052 return -1;
1055 XMLNode* top = node.children().front();
1056 XMLNode* copy = new XMLNode (*top);
1058 XMLTree t;
1059 t.set_root (copy);
1061 const string& xml = t.write_buffer ();
1062 CFDataRef xmlData = CFDataCreateWithBytesNoCopy (kCFAllocatorDefault, (UInt8*) xml.data(), xml.length(), kCFAllocatorNull);
1063 CFStringRef errorString;
1065 propertyList = CFPropertyListCreateFromXMLData( kCFAllocatorDefault,
1066 xmlData,
1067 kCFPropertyListImmutable,
1068 &errorString);
1070 CFRelease (xmlData);
1072 if (propertyList) {
1073 if (unit->SetAUPreset (propertyList) == noErr) {
1074 ret = 0;
1076 CFRelease (propertyList);
1079 return ret;
1080 #else
1081 if (!seen_set_state_message) {
1082 info << _("Restoring AudioUnit settings is not supported in this build of Ardour. Consider paying for a newer version")
1083 << endmsg;
1085 return 0;
1086 #endif
1089 bool
1090 AUPlugin::load_preset (const string preset_label)
1092 #ifdef AU_STATE_SUPPORT
1093 bool ret = false;
1094 CFPropertyListRef propertyList;
1095 Glib::ustring path;
1096 PresetMap::iterator x = preset_map.find (preset_label);
1098 if (x == preset_map.end()) {
1099 return false;
1102 if ((propertyList = load_property_list (x->second)) != 0) {
1103 if (unit->SetAUPreset (propertyList) == noErr) {
1104 ret = true;
1106 CFRelease(propertyList);
1109 return ret;
1110 #else
1111 if (!seen_loading_message) {
1112 info << _("Loading AudioUnit presets is not supported in this build of Ardour. Consider paying for a newer version")
1113 << endmsg;
1114 seen_loading_message = true;
1116 return true;
1117 #endif
1120 bool
1121 AUPlugin::save_preset (string preset_name)
1123 #ifdef AU_STATE_SUPPORT
1124 CFPropertyListRef propertyList;
1125 vector<Glib::ustring> v;
1126 Glib::ustring user_preset_path;
1127 bool ret = true;
1129 std::string m = maker();
1130 std::string n = name();
1132 strip_whitespace_edges (m);
1133 strip_whitespace_edges (n);
1135 v.push_back (Glib::get_home_dir());
1136 v.push_back ("Library");
1137 v.push_back ("Audio");
1138 v.push_back ("Presets");
1139 v.push_back (m);
1140 v.push_back (n);
1142 user_preset_path = Glib::build_filename (v);
1144 if (g_mkdir_with_parents (user_preset_path.c_str(), 0775) < 0) {
1145 error << string_compose (_("Cannot create user plugin presets folder (%1)"), user_preset_path) << endmsg;
1146 return false;
1149 if (unit->GetAUPreset (propertyList) != noErr) {
1150 return false;
1153 // add the actual preset name */
1155 v.push_back (preset_name + preset_suffix);
1157 // rebuild
1159 user_preset_path = Glib::build_filename (v);
1161 set_preset_name_in_plist (propertyList, preset_name);
1163 if (save_property_list (propertyList, user_preset_path)) {
1164 error << string_compose (_("Saving plugin state to %1 failed"), user_preset_path) << endmsg;
1165 ret = false;
1168 CFRelease(propertyList);
1170 return ret;
1171 #else
1172 if (!seen_saving_message) {
1173 info << _("Saving AudioUnit presets is not supported in this build of Ardour. Consider paying for a newer version")
1174 << endmsg;
1175 seen_saving_message = true;
1177 return false;
1178 #endif
1181 //-----------------------------------------------------------------------------
1182 // this is just a little helper function used by GetAUComponentDescriptionFromPresetFile()
1183 static SInt32
1184 GetDictionarySInt32Value(CFDictionaryRef inAUStateDictionary, CFStringRef inDictionaryKey, Boolean * outSuccess)
1186 CFNumberRef cfNumber;
1187 SInt32 numberValue = 0;
1188 Boolean dummySuccess;
1190 if (outSuccess == NULL)
1191 outSuccess = &dummySuccess;
1192 if ( (inAUStateDictionary == NULL) || (inDictionaryKey == NULL) )
1194 *outSuccess = FALSE;
1195 return 0;
1198 cfNumber = (CFNumberRef) CFDictionaryGetValue(inAUStateDictionary, inDictionaryKey);
1199 if (cfNumber == NULL)
1201 *outSuccess = FALSE;
1202 return 0;
1204 *outSuccess = CFNumberGetValue(cfNumber, kCFNumberSInt32Type, &numberValue);
1205 if (*outSuccess)
1206 return numberValue;
1207 else
1208 return 0;
1211 static OSStatus
1212 GetAUComponentDescriptionFromStateData(CFPropertyListRef inAUStateData, ComponentDescription * outComponentDescription)
1214 CFDictionaryRef auStateDictionary;
1215 ComponentDescription tempDesc = {0};
1216 SInt32 versionValue;
1217 Boolean gotValue;
1219 if ( (inAUStateData == NULL) || (outComponentDescription == NULL) )
1220 return paramErr;
1222 // the property list for AU state data must be of the dictionary type
1223 if (CFGetTypeID(inAUStateData) != CFDictionaryGetTypeID()) {
1224 return kAudioUnitErr_InvalidPropertyValue;
1227 auStateDictionary = (CFDictionaryRef)inAUStateData;
1229 // first check to make sure that the version of the AU state data is one that we know understand
1230 // XXX should I really do this? later versions would probably still hold these ID keys, right?
1231 versionValue = GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetVersionKey), &gotValue);
1233 if (!gotValue) {
1234 return kAudioUnitErr_InvalidPropertyValue;
1236 #define kCurrentSavedStateVersion 0
1237 if (versionValue != kCurrentSavedStateVersion) {
1238 return kAudioUnitErr_InvalidPropertyValue;
1241 // grab the ComponentDescription values from the AU state data
1242 tempDesc.componentType = (OSType) GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetTypeKey), NULL);
1243 tempDesc.componentSubType = (OSType) GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetSubtypeKey), NULL);
1244 tempDesc.componentManufacturer = (OSType) GetDictionarySInt32Value(auStateDictionary, CFSTR(kAUPresetManufacturerKey), NULL);
1245 // zero values are illegit for specific ComponentDescriptions, so zero for any value means that there was an error
1246 if ( (tempDesc.componentType == 0) || (tempDesc.componentSubType == 0) || (tempDesc.componentManufacturer == 0) )
1247 return kAudioUnitErr_InvalidPropertyValue;
1249 *outComponentDescription = tempDesc;
1250 return noErr;
1254 static bool au_preset_filter (const string& str, void* arg)
1256 /* Not a dotfile, has a prefix before a period, suffix is aupreset */
1258 bool ret;
1260 ret = (str[0] != '.' && str.length() > 9 && str.find (preset_suffix) == (str.length() - preset_suffix.length()));
1262 if (ret && arg) {
1264 /* check the preset file path name against this plugin
1265 ID. The idea is that all preset files for this plugin
1266 include "<manufacturer>/<plugin-name>" in their path.
1269 Plugin* p = (Plugin *) arg;
1270 string match = p->maker();
1271 match += '/';
1272 match += p->name();
1274 ret = str.find (match) != string::npos;
1276 if (ret == false) {
1277 string m = p->maker ();
1278 string n = p->name ();
1279 strip_whitespace_edges (m);
1280 strip_whitespace_edges (n);
1281 match = m;
1282 match += '/';
1283 match += n;
1285 ret = str.find (match) != string::npos;
1289 return ret;
1292 bool
1293 check_and_get_preset_name (Component component, const string& pathstr, string& preset_name)
1295 OSStatus status;
1296 CFPropertyListRef plist;
1297 ComponentDescription presetDesc;
1298 bool ret = false;
1300 plist = load_property_list (pathstr);
1302 if (!plist) {
1303 return ret;
1306 // get the ComponentDescription from the AU preset file
1308 status = GetAUComponentDescriptionFromStateData(plist, &presetDesc);
1310 if (status == noErr) {
1311 if (ComponentAndDescriptionMatch_Loosely(component, &presetDesc)) {
1313 /* try to get the preset name from the property list */
1315 if (CFGetTypeID(plist) == CFDictionaryGetTypeID()) {
1317 const void* psk = CFDictionaryGetValue ((CFMutableDictionaryRef)plist, CFSTR(kAUPresetNameKey));
1319 if (psk) {
1321 const char* p = CFStringGetCStringPtr ((CFStringRef) psk, kCFStringEncodingUTF8);
1323 if (!p) {
1324 char buf[PATH_MAX+1];
1326 if (CFStringGetCString ((CFStringRef)psk, buf, sizeof (buf), kCFStringEncodingUTF8)) {
1327 preset_name = buf;
1335 CFRelease (plist);
1337 return true;
1340 std::string
1341 AUPlugin::current_preset() const
1343 string preset_name;
1345 #ifdef AU_STATE_SUPPORT
1346 CFPropertyListRef propertyList;
1348 if (unit->GetAUPreset (propertyList) == noErr) {
1349 preset_name = get_preset_name_in_plist (propertyList);
1350 CFRelease(propertyList);
1352 #endif
1353 return preset_name;
1356 vector<string>
1357 AUPlugin::get_presets ()
1359 vector<string*>* preset_files;
1360 vector<string> presets;
1361 PathScanner scanner;
1363 preset_files = scanner (preset_search_path, au_preset_filter, this, true, true, -1, true);
1365 if (!preset_files) {
1366 return presets;
1369 for (vector<string*>::iterator x = preset_files->begin(); x != preset_files->end(); ++x) {
1371 string path = *(*x);
1372 string preset_name;
1374 /* make an initial guess at the preset name using the path */
1376 preset_name = Glib::path_get_basename (path);
1377 preset_name = preset_name.substr (0, preset_name.find_last_of ('.'));
1379 /* check that this preset file really matches this plugin
1380 and potentially get the "real" preset name from
1381 within the file.
1384 if (check_and_get_preset_name (get_comp()->Comp(), path, preset_name)) {
1385 presets.push_back (preset_name);
1386 preset_map[preset_name] = path;
1389 delete *x;
1392 delete preset_files;
1394 return presets;
1397 bool
1398 AUPlugin::has_editor () const
1400 // even if the plugin doesn't have its own editor, the AU API can be used
1401 // to create one that looks native.
1402 return true;
1405 AUPluginInfo::AUPluginInfo (boost::shared_ptr<CAComponentDescription> d)
1406 : descriptor (d)
1411 AUPluginInfo::~AUPluginInfo ()
1415 PluginPtr
1416 AUPluginInfo::load (Session& session)
1418 try {
1419 PluginPtr plugin;
1421 boost::shared_ptr<CAComponent> comp (new CAComponent(*descriptor));
1423 if (!comp->IsValid()) {
1424 error << ("AudioUnit: not a valid Component") << endmsg;
1425 } else {
1426 plugin.reset (new AUPlugin (session.engine(), session, comp));
1429 plugin->set_info (PluginInfoPtr (new AUPluginInfo (*this)));
1430 return plugin;
1433 catch (failed_constructor &err) {
1434 return PluginPtr ();
1438 Glib::ustring
1439 AUPluginInfo::au_cache_path ()
1441 return Glib::build_filename (ARDOUR::get_user_ardour_path(), "au_cache");
1444 PluginInfoList
1445 AUPluginInfo::discover ()
1447 XMLTree tree;
1449 if (!Glib::file_test (au_cache_path(), Glib::FILE_TEST_EXISTS)) {
1450 ARDOUR::BootMessage (_("Discovering AudioUnit plugins (could take some time ...)"));
1453 PluginInfoList plugs;
1455 discover_fx (plugs);
1456 discover_music (plugs);
1457 discover_generators (plugs);
1459 return plugs;
1462 void
1463 AUPluginInfo::discover_music (PluginInfoList& plugs)
1465 CAComponentDescription desc;
1466 desc.componentFlags = 0;
1467 desc.componentFlagsMask = 0;
1468 desc.componentSubType = 0;
1469 desc.componentManufacturer = 0;
1470 desc.componentType = kAudioUnitType_MusicEffect;
1472 discover_by_description (plugs, desc);
1475 void
1476 AUPluginInfo::discover_fx (PluginInfoList& plugs)
1478 CAComponentDescription desc;
1479 desc.componentFlags = 0;
1480 desc.componentFlagsMask = 0;
1481 desc.componentSubType = 0;
1482 desc.componentManufacturer = 0;
1483 desc.componentType = kAudioUnitType_Effect;
1485 discover_by_description (plugs, desc);
1488 void
1489 AUPluginInfo::discover_generators (PluginInfoList& plugs)
1491 CAComponentDescription desc;
1492 desc.componentFlags = 0;
1493 desc.componentFlagsMask = 0;
1494 desc.componentSubType = 0;
1495 desc.componentManufacturer = 0;
1496 desc.componentType = kAudioUnitType_Generator;
1498 discover_by_description (plugs, desc);
1501 void
1502 AUPluginInfo::discover_by_description (PluginInfoList& plugs, CAComponentDescription& desc)
1504 Component comp = 0;
1506 comp = FindNextComponent (NULL, &desc);
1508 while (comp != NULL) {
1509 CAComponentDescription temp;
1510 GetComponentInfo (comp, &temp, NULL, NULL, NULL);
1512 AUPluginInfoPtr info (new AUPluginInfo
1513 (boost::shared_ptr<CAComponentDescription> (new CAComponentDescription(temp))));
1515 /* no panners, format converters or i/o AU's for our purposes
1518 switch (info->descriptor->Type()) {
1519 case kAudioUnitType_Panner:
1520 case kAudioUnitType_OfflineEffect:
1521 case kAudioUnitType_FormatConverter:
1522 continue;
1523 case kAudioUnitType_Output:
1524 case kAudioUnitType_MusicDevice:
1525 case kAudioUnitType_MusicEffect:
1526 case kAudioUnitType_Effect:
1527 case kAudioUnitType_Mixer:
1528 case kAudioUnitType_Generator:
1529 break;
1530 default:
1531 break;
1534 switch (info->descriptor->SubType()) {
1535 case kAudioUnitSubType_DefaultOutput:
1536 case kAudioUnitSubType_SystemOutput:
1537 case kAudioUnitSubType_GenericOutput:
1538 case kAudioUnitSubType_AUConverter:
1539 /* we don't want output units here */
1540 continue;
1541 break;
1543 case kAudioUnitSubType_DLSSynth:
1544 info->category = "DLS Synth";
1545 break;
1547 case kAudioUnitSubType_Varispeed:
1548 info->category = "Varispeed";
1549 break;
1551 case kAudioUnitSubType_Delay:
1552 info->category = "Delay";
1553 break;
1555 case kAudioUnitSubType_LowPassFilter:
1556 info->category = "Low-pass Filter";
1557 break;
1559 case kAudioUnitSubType_HighPassFilter:
1560 info->category = "High-pass Filter";
1561 break;
1563 case kAudioUnitSubType_BandPassFilter:
1564 info->category = "Band-pass Filter";
1565 break;
1567 case kAudioUnitSubType_HighShelfFilter:
1568 info->category = "High-shelf Filter";
1569 break;
1571 case kAudioUnitSubType_LowShelfFilter:
1572 info->category = "Low-shelf Filter";
1573 break;
1575 case kAudioUnitSubType_ParametricEQ:
1576 info->category = "Parametric EQ";
1577 break;
1579 case kAudioUnitSubType_GraphicEQ:
1580 info->category = "Graphic EQ";
1581 break;
1583 case kAudioUnitSubType_PeakLimiter:
1584 info->category = "Peak Limiter";
1585 break;
1587 case kAudioUnitSubType_DynamicsProcessor:
1588 info->category = "Dynamics Processor";
1589 break;
1591 case kAudioUnitSubType_MultiBandCompressor:
1592 info->category = "Multiband Compressor";
1593 break;
1595 case kAudioUnitSubType_MatrixReverb:
1596 info->category = "Matrix Reverb";
1597 break;
1599 case kAudioUnitSubType_SampleDelay:
1600 info->category = "Sample Delay";
1601 break;
1603 case kAudioUnitSubType_Pitch:
1604 info->category = "Pitch";
1605 break;
1607 case kAudioUnitSubType_NetSend:
1608 info->category = "Net Sender";
1609 break;
1611 case kAudioUnitSubType_3DMixer:
1612 info->category = "3DMixer";
1613 break;
1615 case kAudioUnitSubType_MatrixMixer:
1616 info->category = "MatrixMixer";
1617 break;
1619 case kAudioUnitSubType_ScheduledSoundPlayer:
1620 info->category = "Scheduled Sound Player";
1621 break;
1624 case kAudioUnitSubType_AudioFilePlayer:
1625 info->category = "Audio File Player";
1626 break;
1628 case kAudioUnitSubType_NetReceive:
1629 info->category = "Net Receiver";
1630 break;
1632 default:
1633 info->category = "";
1636 AUPluginInfo::get_names (temp, info->name, info->creator);
1638 info->type = ARDOUR::AudioUnit;
1639 info->unique_id = stringify_descriptor (*info->descriptor);
1641 /* XXX not sure of the best way to handle plugin versioning yet
1644 CAComponent cacomp (*info->descriptor);
1646 if (cacomp.GetResourceVersion (info->version) != noErr) {
1647 info->version = 0;
1650 if (cached_io_configuration (info->unique_id, info->version, cacomp, info->cache, info->name)) {
1652 /* here we have to map apple's wildcard system to a simple pair
1653 of values.
1656 info->n_inputs = info->cache.io_configs.front().first;
1657 info->n_outputs = info->cache.io_configs.front().second;
1659 if (info->cache.io_configs.size() > 1) {
1660 cerr << "ODD: variable IO config for " << info->unique_id << endl;
1663 plugs.push_back (info);
1665 } else {
1666 error << string_compose (_("Cannot get I/O configuration info for AU %1"), info->name) << endmsg;
1669 comp = FindNextComponent (comp, &desc);
1673 bool
1674 AUPluginInfo::cached_io_configuration (const std::string& unique_id,
1675 UInt32 version,
1676 CAComponent& comp,
1677 AUPluginCachedInfo& cinfo,
1678 const std::string& name)
1680 std::string id;
1681 char buf[32];
1683 /* concatenate unique ID with version to provide a key for cached info lookup.
1684 this ensures we don't get stale information, or should if plugin developers
1685 follow Apple "guidelines".
1688 snprintf (buf, sizeof (buf), "%u", version);
1689 id = unique_id;
1690 id += '/';
1691 id += buf;
1693 CachedInfoMap::iterator cim = cached_info.find (id);
1695 if (cim != cached_info.end()) {
1696 cinfo = cim->second;
1697 return true;
1700 CAAudioUnit unit;
1701 AUChannelInfo* channel_info;
1702 UInt32 cnt;
1703 int ret;
1705 ARDOUR::BootMessage (string_compose (_("Checking AudioUnit: %1"), name));
1707 try {
1709 if (CAAudioUnit::Open (comp, unit) != noErr) {
1710 return false;
1713 } catch (...) {
1715 warning << string_compose (_("Could not load AU plugin %1 - ignored"), name) << endmsg;
1716 cerr << string_compose (_("Could not load AU plugin %1 - ignored"), name) << endl;
1717 return false;
1721 if ((ret = unit.GetChannelInfo (&channel_info, cnt)) < 0) {
1722 return false;
1725 if (ret > 0) {
1726 /* no explicit info available */
1728 cinfo.io_configs.push_back (pair<int,int> (-1, -1));
1730 } else {
1732 /* store each configuration */
1734 for (uint32_t n = 0; n < cnt; ++n) {
1735 cinfo.io_configs.push_back (pair<int,int> (channel_info[n].inChannels,
1736 channel_info[n].outChannels));
1739 free (channel_info);
1742 add_cached_info (id, cinfo);
1743 save_cached_info ();
1745 return true;
1748 void
1749 AUPluginInfo::add_cached_info (const std::string& id, AUPluginCachedInfo& cinfo)
1751 cached_info[id] = cinfo;
1754 void
1755 AUPluginInfo::save_cached_info ()
1757 XMLNode* node;
1759 node = new XMLNode (X_("AudioUnitPluginCache"));
1761 for (map<string,AUPluginCachedInfo>::iterator i = cached_info.begin(); i != cached_info.end(); ++i) {
1762 XMLNode* parent = new XMLNode (X_("plugin"));
1763 parent->add_property ("id", i->first);
1764 node->add_child_nocopy (*parent);
1766 for (vector<pair<int, int> >::iterator j = i->second.io_configs.begin(); j != i->second.io_configs.end(); ++j) {
1768 XMLNode* child = new XMLNode (X_("io"));
1769 char buf[32];
1771 snprintf (buf, sizeof (buf), "%d", j->first);
1772 child->add_property (X_("in"), buf);
1773 snprintf (buf, sizeof (buf), "%d", j->second);
1774 child->add_property (X_("out"), buf);
1775 parent->add_child_nocopy (*child);
1780 Glib::ustring path = au_cache_path ();
1781 XMLTree tree;
1783 tree.set_root (node);
1785 if (!tree.write (path)) {
1786 error << string_compose (_("could not save AU cache to %1"), path) << endmsg;
1787 unlink (path.c_str());
1792 AUPluginInfo::load_cached_info ()
1794 Glib::ustring path = au_cache_path ();
1795 XMLTree tree;
1797 if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS)) {
1798 return 0;
1801 tree.read (path);
1802 const XMLNode* root (tree.root());
1804 if (root->name() != X_("AudioUnitPluginCache")) {
1805 return -1;
1808 cached_info.clear ();
1810 const XMLNodeList children = root->children();
1812 for (XMLNodeConstIterator iter = children.begin(); iter != children.end(); ++iter) {
1814 const XMLNode* child = *iter;
1816 if (child->name() == X_("plugin")) {
1818 const XMLNode* gchild;
1819 const XMLNodeList gchildren = child->children();
1820 const XMLProperty* prop = child->property (X_("id"));
1822 if (!prop) {
1823 continue;
1826 std::string id = prop->value();
1828 for (XMLNodeConstIterator giter = gchildren.begin(); giter != gchildren.end(); giter++) {
1830 gchild = *giter;
1832 if (gchild->name() == X_("io")) {
1834 int in;
1835 int out;
1836 const XMLProperty* iprop;
1837 const XMLProperty* oprop;
1839 if (((iprop = gchild->property (X_("in"))) != 0) &&
1840 ((oprop = gchild->property (X_("out"))) != 0)) {
1841 in = atoi (iprop->value());
1842 out = atoi (iprop->value());
1844 AUPluginCachedInfo cinfo;
1845 cinfo.io_configs.push_back (pair<int,int> (in, out));
1846 add_cached_info (id, cinfo);
1853 return 0;
1856 void
1857 AUPluginInfo::get_names (CAComponentDescription& comp_desc, std::string& name, Glib::ustring& maker)
1859 CFStringRef itemName = NULL;
1861 // Marc Poirier-style item name
1862 CAComponent auComponent (comp_desc);
1863 if (auComponent.IsValid()) {
1864 CAComponentDescription dummydesc;
1865 Handle nameHandle = NewHandle(sizeof(void*));
1866 if (nameHandle != NULL) {
1867 OSErr err = GetComponentInfo(auComponent.Comp(), &dummydesc, nameHandle, NULL, NULL);
1868 if (err == noErr) {
1869 ConstStr255Param nameString = (ConstStr255Param) (*nameHandle);
1870 if (nameString != NULL) {
1871 itemName = CFStringCreateWithPascalString(kCFAllocatorDefault, nameString, CFStringGetSystemEncoding());
1874 DisposeHandle(nameHandle);
1878 // if Marc-style fails, do the original way
1879 if (itemName == NULL) {
1880 CFStringRef compTypeString = UTCreateStringForOSType(comp_desc.componentType);
1881 CFStringRef compSubTypeString = UTCreateStringForOSType(comp_desc.componentSubType);
1882 CFStringRef compManufacturerString = UTCreateStringForOSType(comp_desc.componentManufacturer);
1884 itemName = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("%@ - %@ - %@"),
1885 compTypeString, compManufacturerString, compSubTypeString);
1887 if (compTypeString != NULL)
1888 CFRelease(compTypeString);
1889 if (compSubTypeString != NULL)
1890 CFRelease(compSubTypeString);
1891 if (compManufacturerString != NULL)
1892 CFRelease(compManufacturerString);
1895 string str = CFStringRefToStdString(itemName);
1896 string::size_type colon = str.find (':');
1898 if (colon) {
1899 name = str.substr (colon+1);
1900 maker = str.substr (0, colon);
1901 // strip_whitespace_edges (maker);
1902 // strip_whitespace_edges (name);
1903 } else {
1904 name = str;
1905 maker = "unknown";
1909 // from CAComponentDescription.cpp (in libs/appleutility in ardour source)
1910 extern char *StringForOSType (OSType t, char *writeLocation);
1912 std::string
1913 AUPluginInfo::stringify_descriptor (const CAComponentDescription& desc)
1915 char str[24];
1916 stringstream s;
1918 s << StringForOSType (desc.Type(), str);
1919 s << " - ";
1921 s << StringForOSType (desc.SubType(), str);
1922 s << " - ";
1924 s << StringForOSType (desc.Manu(), str);
1926 return s.str();