The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

518 lines
23KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #ifndef __JUCE_AUDIODEVICEMANAGER_JUCEHEADER__
  19. #define __JUCE_AUDIODEVICEMANAGER_JUCEHEADER__
  20. #include "juce_AudioIODeviceType.h"
  21. #include "../midi_io/juce_MidiInput.h"
  22. #include "../midi_io/juce_MidiOutput.h"
  23. //==============================================================================
  24. /**
  25. Manages the state of some audio and midi i/o devices.
  26. This class keeps tracks of a currently-selected audio device, through
  27. with which it continuously streams data from an audio callback, as well as
  28. one or more midi inputs.
  29. The idea is that your application will create one global instance of this object,
  30. and let it take care of creating and deleting specific types of audio devices
  31. internally. So when the device is changed, your callbacks will just keep running
  32. without having to worry about this.
  33. The manager can save and reload all of its device settings as XML, which
  34. makes it very easy for you to save and reload the audio setup of your
  35. application.
  36. And to make it easy to let the user change its settings, there's a component
  37. to do just that - the AudioDeviceSelectorComponent class, which contains a set of
  38. device selection/sample-rate/latency controls.
  39. To use an AudioDeviceManager, create one, and use initialise() to set it up. Then
  40. call addAudioCallback() to register your audio callback with it, and use that to process
  41. your audio data.
  42. The manager also acts as a handy hub for incoming midi messages, allowing a
  43. listener to register for messages from either a specific midi device, or from whatever
  44. the current default midi input device is. The listener then doesn't have to worry about
  45. re-registering with different midi devices if they are changed or deleted.
  46. And yet another neat trick is that amount of CPU time being used is measured and
  47. available with the getCpuUsage() method.
  48. The AudioDeviceManager is a ChangeBroadcaster, and will send a change message to
  49. listeners whenever one of its settings is changed.
  50. @see AudioDeviceSelectorComponent, AudioIODevice, AudioIODeviceType
  51. */
  52. class JUCE_API AudioDeviceManager : public ChangeBroadcaster
  53. {
  54. public:
  55. //==============================================================================
  56. /** Creates a default AudioDeviceManager.
  57. Initially no audio device will be selected. You should call the initialise() method
  58. and register an audio callback with setAudioCallback() before it'll be able to
  59. actually make any noise.
  60. */
  61. AudioDeviceManager();
  62. /** Destructor. */
  63. ~AudioDeviceManager();
  64. //==============================================================================
  65. /**
  66. This structure holds a set of properties describing the current audio setup.
  67. An AudioDeviceManager uses this class to save/load its current settings, and to
  68. specify your preferred options when opening a device.
  69. @see AudioDeviceManager::setAudioDeviceSetup(), AudioDeviceManager::initialise()
  70. */
  71. struct JUCE_API AudioDeviceSetup
  72. {
  73. /** Creates an AudioDeviceSetup object.
  74. The default constructor sets all the member variables to indicate default values.
  75. You can then fill-in any values you want to before passing the object to
  76. AudioDeviceManager::initialise().
  77. */
  78. AudioDeviceSetup();
  79. bool operator== (const AudioDeviceSetup& other) const;
  80. /** The name of the audio device used for output.
  81. The name has to be one of the ones listed by the AudioDeviceManager's currently
  82. selected device type.
  83. This may be the same as the input device.
  84. An empty string indicates the default device.
  85. */
  86. String outputDeviceName;
  87. /** The name of the audio device used for input.
  88. This may be the same as the output device.
  89. An empty string indicates the default device.
  90. */
  91. String inputDeviceName;
  92. /** The current sample rate.
  93. This rate is used for both the input and output devices.
  94. A value of 0 indicates the default rate.
  95. */
  96. double sampleRate;
  97. /** The buffer size, in samples.
  98. This buffer size is used for both the input and output devices.
  99. A value of 0 indicates the default buffer size.
  100. */
  101. int bufferSize;
  102. /** The set of active input channels.
  103. The bits that are set in this array indicate the channels of the
  104. input device that are active.
  105. If useDefaultInputChannels is true, this value is ignored.
  106. */
  107. BigInteger inputChannels;
  108. /** If this is true, it indicates that the inputChannels array
  109. should be ignored, and instead, the device's default channels
  110. should be used.
  111. */
  112. bool useDefaultInputChannels;
  113. /** The set of active output channels.
  114. The bits that are set in this array indicate the channels of the
  115. input device that are active.
  116. If useDefaultOutputChannels is true, this value is ignored.
  117. */
  118. BigInteger outputChannels;
  119. /** If this is true, it indicates that the outputChannels array
  120. should be ignored, and instead, the device's default channels
  121. should be used.
  122. */
  123. bool useDefaultOutputChannels;
  124. };
  125. //==============================================================================
  126. /** Opens a set of audio devices ready for use.
  127. This will attempt to open either a default audio device, or one that was
  128. previously saved as XML.
  129. @param numInputChannelsNeeded a minimum number of input channels needed
  130. by your app.
  131. @param numOutputChannelsNeeded a minimum number of output channels to open
  132. @param savedState either a previously-saved state that was produced
  133. by createStateXml(), or 0 if you want the manager
  134. to choose the best device to open.
  135. @param selectDefaultDeviceOnFailure if true, then if the device specified in the XML
  136. fails to open, then a default device will be used
  137. instead. If false, then on failure, no device is
  138. opened.
  139. @param preferredDefaultDeviceName if this is not empty, and there's a device with this
  140. name, then that will be used as the default device
  141. (assuming that there wasn't one specified in the XML).
  142. The string can actually be a simple wildcard, containing "*"
  143. and "?" characters
  144. @param preferredSetupOptions if this is non-null, the structure will be used as the
  145. set of preferred settings when opening the device. If you
  146. use this parameter, the preferredDefaultDeviceName
  147. field will be ignored
  148. @returns an error message if anything went wrong, or an empty string if it worked ok.
  149. */
  150. String initialise (int numInputChannelsNeeded,
  151. int numOutputChannelsNeeded,
  152. const XmlElement* savedState,
  153. bool selectDefaultDeviceOnFailure,
  154. const String& preferredDefaultDeviceName = String::empty,
  155. const AudioDeviceSetup* preferredSetupOptions = 0);
  156. /** Returns some XML representing the current state of the manager.
  157. This stores the current device, its samplerate, block size, etc, and
  158. can be restored later with initialise().
  159. Note that this can return a null pointer if no settings have been explicitly changed
  160. (i.e. if the device manager has just been left in its default state).
  161. */
  162. XmlElement* createStateXml() const;
  163. //==============================================================================
  164. /** Returns the current device properties that are in use.
  165. @see setAudioDeviceSetup
  166. */
  167. void getAudioDeviceSetup (AudioDeviceSetup& setup);
  168. /** Changes the current device or its settings.
  169. If you want to change a device property, like the current sample rate or
  170. block size, you can call getAudioDeviceSetup() to retrieve the current
  171. settings, then tweak the appropriate fields in the AudioDeviceSetup structure,
  172. and pass it back into this method to apply the new settings.
  173. @param newSetup the settings that you'd like to use
  174. @param treatAsChosenDevice if this is true and if the device opens correctly, these new
  175. settings will be taken as having been explicitly chosen by the
  176. user, and the next time createStateXml() is called, these settings
  177. will be returned. If it's false, then the device is treated as a
  178. temporary or default device, and a call to createStateXml() will
  179. return either the last settings that were made with treatAsChosenDevice
  180. as true, or the last XML settings that were passed into initialise().
  181. @returns an error message if anything went wrong, or an empty string if it worked ok.
  182. @see getAudioDeviceSetup
  183. */
  184. String setAudioDeviceSetup (const AudioDeviceSetup& newSetup,
  185. bool treatAsChosenDevice);
  186. /** Returns the currently-active audio device. */
  187. AudioIODevice* getCurrentAudioDevice() const noexcept { return currentAudioDevice; }
  188. /** Returns the type of audio device currently in use.
  189. @see setCurrentAudioDeviceType
  190. */
  191. String getCurrentAudioDeviceType() const { return currentDeviceType; }
  192. /** Returns the currently active audio device type object.
  193. Don't keep a copy of this pointer - it's owned by the device manager and could
  194. change at any time.
  195. */
  196. AudioIODeviceType* getCurrentDeviceTypeObject() const;
  197. /** Changes the class of audio device being used.
  198. This switches between, e.g. ASIO and DirectSound. On the Mac you probably won't ever call
  199. this because there's only one type: CoreAudio.
  200. For a list of types, see getAvailableDeviceTypes().
  201. */
  202. void setCurrentAudioDeviceType (const String& type,
  203. bool treatAsChosenDevice);
  204. /** Closes the currently-open device.
  205. You can call restartLastAudioDevice() later to reopen it in the same state
  206. that it was just in.
  207. */
  208. void closeAudioDevice();
  209. /** Tries to reload the last audio device that was running.
  210. Note that this only reloads the last device that was running before
  211. closeAudioDevice() was called - it doesn't reload any kind of saved-state,
  212. and can only be called after a device has been opened with SetAudioDevice().
  213. If a device is already open, this call will do nothing.
  214. */
  215. void restartLastAudioDevice();
  216. //==============================================================================
  217. /** Registers an audio callback to be used.
  218. The manager will redirect callbacks from whatever audio device is currently
  219. in use to all registered callback objects. If more than one callback is
  220. active, they will all be given the same input data, and their outputs will
  221. be summed.
  222. If necessary, this method will invoke audioDeviceAboutToStart() on the callback
  223. object before returning.
  224. To remove a callback, use removeAudioCallback().
  225. */
  226. void addAudioCallback (AudioIODeviceCallback* newCallback);
  227. /** Deregisters a previously added callback.
  228. If necessary, this method will invoke audioDeviceStopped() on the callback
  229. object before returning.
  230. @see addAudioCallback
  231. */
  232. void removeAudioCallback (AudioIODeviceCallback* callback);
  233. //==============================================================================
  234. /** Returns the average proportion of available CPU being spent inside the audio callbacks.
  235. Returns a value between 0 and 1.0
  236. */
  237. double getCpuUsage() const;
  238. //==============================================================================
  239. /** Enables or disables a midi input device.
  240. The list of devices can be obtained with the MidiInput::getDevices() method.
  241. Any incoming messages from enabled input devices will be forwarded on to all the
  242. listeners that have been registered with the addMidiInputCallback() method. They
  243. can either register for messages from a particular device, or from just the
  244. "default" midi input.
  245. Routing the midi input via an AudioDeviceManager means that when a listener
  246. registers for the default midi input, this default device can be changed by the
  247. manager without the listeners having to know about it or re-register.
  248. It also means that a listener can stay registered for a midi input that is disabled
  249. or not present, so that when the input is re-enabled, the listener will start
  250. receiving messages again.
  251. @see addMidiInputCallback, isMidiInputEnabled
  252. */
  253. void setMidiInputEnabled (const String& midiInputDeviceName, bool enabled);
  254. /** Returns true if a given midi input device is being used.
  255. @see setMidiInputEnabled
  256. */
  257. bool isMidiInputEnabled (const String& midiInputDeviceName) const;
  258. /** Registers a listener for callbacks when midi events arrive from a midi input.
  259. The device name can be empty to indicate that it wants events from whatever the
  260. current "default" device is. Or it can be the name of one of the midi input devices
  261. (see MidiInput::getDevices() for the names).
  262. Only devices which are enabled (see the setMidiInputEnabled() method) will have their
  263. events forwarded on to listeners.
  264. */
  265. void addMidiInputCallback (const String& midiInputDeviceName,
  266. MidiInputCallback* callback);
  267. /** Removes a listener that was previously registered with addMidiInputCallback().
  268. */
  269. void removeMidiInputCallback (const String& midiInputDeviceName,
  270. MidiInputCallback* callback);
  271. //==============================================================================
  272. /** Sets a midi output device to use as the default.
  273. The list of devices can be obtained with the MidiOutput::getDevices() method.
  274. The specified device will be opened automatically and can be retrieved with the
  275. getDefaultMidiOutput() method.
  276. Pass in an empty string to deselect all devices. For the default device, you
  277. can use MidiOutput::getDevices() [MidiOutput::getDefaultDeviceIndex()].
  278. @see getDefaultMidiOutput, getDefaultMidiOutputName
  279. */
  280. void setDefaultMidiOutput (const String& deviceName);
  281. /** Returns the name of the default midi output.
  282. @see setDefaultMidiOutput, getDefaultMidiOutput
  283. */
  284. String getDefaultMidiOutputName() const { return defaultMidiOutputName; }
  285. /** Returns the current default midi output device.
  286. If no device has been selected, or the device can't be opened, this will
  287. return 0.
  288. @see getDefaultMidiOutputName
  289. */
  290. MidiOutput* getDefaultMidiOutput() const noexcept { return defaultMidiOutput; }
  291. /** Returns a list of the types of device supported.
  292. */
  293. const OwnedArray <AudioIODeviceType>& getAvailableDeviceTypes();
  294. //==============================================================================
  295. /** Creates a list of available types.
  296. This will add a set of new AudioIODeviceType objects to the specified list, to
  297. represent each available types of device.
  298. You can override this if your app needs to do something specific, like avoid
  299. using DirectSound devices, etc.
  300. */
  301. virtual void createAudioDeviceTypes (OwnedArray <AudioIODeviceType>& types);
  302. //==============================================================================
  303. /** Plays a beep through the current audio device.
  304. This is here to allow the audio setup UI panels to easily include a "test"
  305. button so that the user can check where the audio is coming from.
  306. */
  307. void playTestSound();
  308. /** Turns on level-measuring.
  309. When enabled, the device manager will measure the peak input level
  310. across all channels, and you can get this level by calling getCurrentInputLevel().
  311. This is mainly intended for audio setup UI panels to use to create a mic
  312. level display, so that the user can check that they've selected the right
  313. device.
  314. A simple filter is used to make the level decay smoothly, but this is
  315. only intended for giving rough feedback, and not for any kind of accurate
  316. measurement.
  317. */
  318. void enableInputLevelMeasurement (bool enableMeasurement);
  319. /** Returns the current input level.
  320. To use this, you must first enable it by calling enableInputLevelMeasurement().
  321. See enableInputLevelMeasurement() for more info.
  322. */
  323. double getCurrentInputLevel() const;
  324. /** Returns the a lock that can be used to synchronise access to the audio callback.
  325. Obviously while this is locked, you're blocking the audio thread from running, so
  326. it must only be used for very brief periods when absolutely necessary.
  327. */
  328. CriticalSection& getAudioCallbackLock() noexcept { return audioCallbackLock; }
  329. /** Returns the a lock that can be used to synchronise access to the midi callback.
  330. Obviously while this is locked, you're blocking the midi system from running, so
  331. it must only be used for very brief periods when absolutely necessary.
  332. */
  333. CriticalSection& getMidiCallbackLock() noexcept { return midiCallbackLock; }
  334. private:
  335. //==============================================================================
  336. OwnedArray <AudioIODeviceType> availableDeviceTypes;
  337. OwnedArray <AudioDeviceSetup> lastDeviceTypeConfigs;
  338. AudioDeviceSetup currentSetup;
  339. ScopedPointer <AudioIODevice> currentAudioDevice;
  340. Array <AudioIODeviceCallback*> callbacks;
  341. int numInputChansNeeded, numOutputChansNeeded;
  342. String currentDeviceType;
  343. BigInteger inputChannels, outputChannels;
  344. ScopedPointer <XmlElement> lastExplicitSettings;
  345. mutable bool listNeedsScanning;
  346. bool useInputNames;
  347. int inputLevelMeasurementEnabledCount;
  348. double inputLevel;
  349. ScopedPointer <AudioSampleBuffer> testSound;
  350. int testSoundPosition;
  351. AudioSampleBuffer tempBuffer;
  352. StringArray midiInsFromXml;
  353. OwnedArray <MidiInput> enabledMidiInputs;
  354. Array <MidiInputCallback*> midiCallbacks;
  355. StringArray midiCallbackDevices;
  356. String defaultMidiOutputName;
  357. ScopedPointer <MidiOutput> defaultMidiOutput;
  358. CriticalSection audioCallbackLock, midiCallbackLock;
  359. double cpuUsageMs, timeToCpuScale;
  360. //==============================================================================
  361. class CallbackHandler : public AudioIODeviceCallback,
  362. public MidiInputCallback,
  363. public AudioIODeviceType::Listener
  364. {
  365. public:
  366. void audioDeviceIOCallback (const float**, int, float**, int, int);
  367. void audioDeviceAboutToStart (AudioIODevice*);
  368. void audioDeviceStopped();
  369. void handleIncomingMidiMessage (MidiInput*, const MidiMessage&);
  370. void audioDeviceListChanged();
  371. AudioDeviceManager* owner;
  372. };
  373. CallbackHandler callbackHandler;
  374. friend class CallbackHandler;
  375. void audioDeviceIOCallbackInt (const float** inputChannelData, int totalNumInputChannels,
  376. float** outputChannelData, int totalNumOutputChannels, int numSamples);
  377. void audioDeviceAboutToStartInt (AudioIODevice*);
  378. void audioDeviceStoppedInt();
  379. void handleIncomingMidiMessageInt (MidiInput*, const MidiMessage&);
  380. void audioDeviceListChanged();
  381. String restartDevice (int blockSizeToUse, double sampleRateToUse,
  382. const BigInteger& ins, const BigInteger& outs);
  383. void stopDevice();
  384. void updateXml();
  385. void createDeviceTypesIfNeeded();
  386. void scanDevicesIfNeeded();
  387. void deleteCurrentDevice();
  388. double chooseBestSampleRate (double preferred) const;
  389. int chooseBestBufferSize (int preferred) const;
  390. void insertDefaultDeviceNames (AudioDeviceSetup&) const;
  391. AudioIODeviceType* findType (const String& inputName, const String& outputName);
  392. AudioIODeviceType* findType (const String& typeName);
  393. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (AudioDeviceManager);
  394. };
  395. #endif // __JUCE_AUDIODEVICEMANAGER_JUCEHEADER__