ADC Home > Reference Library > Reference > Audio > Carbon > Disc Recording Framework Reference
|
DRErase.h |
Perform and monitor the erasing a rewritable CD or DVD disc.
Each time you want to erase a disc, an instance of DRErase needs to be created.
When an instance is created, you pass in an instance of DRDevice to let the object
know what device to erase. This object is retained for the life of the DRErase instance.
A DRErase object will send out notifications through the DRNotificationCenter mechanism to
broadcast the erase state to any interested observers. However, if for some reason you don't want
to use notifications, you can poll the erase object at any time for the current status using
status . This is not recommended in any
application using a run loop, because it involves polling.
Here's an example that shows you how to use this class:
- (void) doErase
{
DRDevice* device;
DRErase* erase;
...determine correct device to erase...
erase = [[DRErase alloc] initWithDevice:device];
// we'll do a quick erase. It's typically all that's needed.
[erase setEraseType:DREraseTypeQuick];
// register to receive notification about the erase status.
[[DRNotificationCenter currentRunLoopCenter] addObserver:self
selector:@selector(eraseNotification:)
name:DREraseStatusChangedNotification
object:erase];
// start the erase
[erase start];
}
- (void) eraseNotification:(NSNotification*)notification
{
DRErase* erase = [notification object];
NSDictionary* status = [notification userInfo];
...do what you wish with the notification...
}
DREraseTypeComplete |
extern NSString* const DREraseTypeComplete;
An NString value for the DREraseTypeKey . Configures the erase object to perform a complete erase, erasing every byte on the disk. This operation is slow (on the order of 30 minutes) to complete.
DREraseTypeKey |
extern NSString* const DREraseTypeKey;
The key for the erase's properties dictionary storing the type of erase to perform
|