mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
181 lines
6.9 KiB
C++
181 lines
6.9 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE framework.
|
|
Copyright (c) Raw Material Software Limited
|
|
|
|
JUCE is an open source framework subject to commercial or open source
|
|
licensing.
|
|
|
|
By downloading, installing, or using the JUCE framework, or combining the
|
|
JUCE framework with any other source code, object code, content or any other
|
|
copyrightable work, you agree to the terms of the JUCE End User Licence
|
|
Agreement, and all incorporated terms including the JUCE Privacy Policy and
|
|
the JUCE Website Terms of Service, as applicable, which will bind you. If you
|
|
do not agree to the terms of these agreements, we will not license the JUCE
|
|
framework to you, and you must discontinue the installation or download
|
|
process and cease use of the JUCE framework.
|
|
|
|
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
|
|
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
|
|
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
|
|
|
|
Or:
|
|
|
|
You may also use this code under the terms of the AGPLv3:
|
|
https://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
|
|
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
|
|
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
namespace juce
|
|
{
|
|
|
|
#if JUCE_USE_CDBURNER || DOXYGEN
|
|
|
|
|
|
//==============================================================================
|
|
/**
|
|
|
|
@tags{Audio}
|
|
*/
|
|
class AudioCDBurner : public ChangeBroadcaster
|
|
{
|
|
public:
|
|
//==============================================================================
|
|
/** Returns a list of available optical drives.
|
|
|
|
Use openDevice() to open one of the items from this list.
|
|
*/
|
|
static StringArray findAvailableDevices();
|
|
|
|
/** Tries to open one of the optical drives.
|
|
|
|
The deviceIndex is an index into the array returned by findAvailableDevices().
|
|
*/
|
|
static AudioCDBurner* openDevice (int deviceIndex);
|
|
|
|
/** Destructor. */
|
|
~AudioCDBurner();
|
|
|
|
//==============================================================================
|
|
enum DiskState
|
|
{
|
|
unknown, /**< An error condition, if the device isn't responding. */
|
|
trayOpen, /**< The drive is currently open. Note that a slot-loading drive
|
|
may seem to be permanently open. */
|
|
noDisc, /**< The drive has no disk in it. */
|
|
writableDiskPresent, /**< The drive contains a writeable disk. */
|
|
readOnlyDiskPresent /**< The drive contains a read-only disk. */
|
|
};
|
|
|
|
/** Returns the current status of the device.
|
|
|
|
To get informed when the drive's status changes, attach a ChangeListener to
|
|
the AudioCDBurner.
|
|
*/
|
|
DiskState getDiskState() const;
|
|
|
|
/** Returns true if there's a writable disk in the drive. */
|
|
bool isDiskPresent() const;
|
|
|
|
/** Sends an eject signal to the drive.
|
|
The eject will happen asynchronously, so you can use getDiskState() and
|
|
waitUntilStateChange() to monitor its progress.
|
|
*/
|
|
bool openTray();
|
|
|
|
/** Blocks the current thread until the drive's state changes, or until the timeout expires.
|
|
@returns the device's new state
|
|
*/
|
|
DiskState waitUntilStateChange (int timeOutMilliseconds);
|
|
|
|
//==============================================================================
|
|
/** Returns the set of possible write speeds that the device can handle.
|
|
These are as a multiple of 'normal' speed, so e.g. '24x' returns 24, etc.
|
|
Note that if there's no media present in the drive, this value may be unavailable!
|
|
@see setWriteSpeed, getWriteSpeed
|
|
*/
|
|
Array<int> getAvailableWriteSpeeds() const;
|
|
|
|
//==============================================================================
|
|
/** Tries to enable or disable buffer underrun safety on devices that support it.
|
|
@returns true if it's now enabled. If the device doesn't support it, this
|
|
will always return false.
|
|
*/
|
|
bool setBufferUnderrunProtection (bool shouldBeEnabled);
|
|
|
|
//==============================================================================
|
|
/** Returns the number of free blocks on the disk.
|
|
|
|
There are 75 blocks per second, at 44100Hz.
|
|
*/
|
|
int getNumAvailableAudioBlocks() const;
|
|
|
|
/** Adds a track to be written.
|
|
|
|
The source passed-in here will be kept by this object, and it will
|
|
be used and deleted at some point in the future, either during the
|
|
burn() method or when this AudioCDBurner object is deleted. Your caller
|
|
method shouldn't keep a reference to it or use it again after passing
|
|
it in here.
|
|
*/
|
|
bool addAudioTrack (AudioSource* source, int numSamples);
|
|
|
|
//==============================================================================
|
|
/** Receives progress callbacks during a cd-burn operation.
|
|
@see AudioCDBurner::burn()
|
|
*/
|
|
class BurnProgressListener
|
|
{
|
|
public:
|
|
BurnProgressListener() noexcept {}
|
|
virtual ~BurnProgressListener() {}
|
|
|
|
/** Called at intervals to report on the progress of the AudioCDBurner.
|
|
|
|
To cancel the burn, return true from this method.
|
|
*/
|
|
virtual bool audioCDBurnProgress (float proportionComplete) = 0;
|
|
};
|
|
|
|
/** Runs the burn process.
|
|
This method will block until the operation is complete.
|
|
|
|
@param listener the object to receive callbacks about progress
|
|
@param ejectDiscAfterwards whether to eject the disk after the burn completes
|
|
@param performFakeBurnForTesting if true, no data will actually be written to the disk
|
|
@param writeSpeed one of the write speeds from getAvailableWriteSpeeds(), or
|
|
0 or less to mean the fastest speed.
|
|
*/
|
|
String burn (BurnProgressListener* listener,
|
|
bool ejectDiscAfterwards,
|
|
bool performFakeBurnForTesting,
|
|
int writeSpeed);
|
|
|
|
/** If a burn operation is currently in progress, this tells it to stop
|
|
as soon as possible.
|
|
|
|
It's also possible to stop the burn process by returning true from
|
|
BurnProgressListener::audioCDBurnProgress()
|
|
*/
|
|
void abortBurn();
|
|
|
|
private:
|
|
//==============================================================================
|
|
AudioCDBurner (int deviceIndex);
|
|
|
|
class Pimpl;
|
|
std::unique_ptr<Pimpl> pimpl;
|
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (AudioCDBurner)
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
} // namespace juce
|