ADC Home > Reference Library > Reference > Darwin > Kernel Framework Reference
|
IOBlockStorageDevice |
Inherits from: | |
Declared In: |
A generic block storage device abstraction.
The IOBlockStorageDevice class exports the generic block storage protocol, independent of the physical connection protocol (e.g. SCSI, ATA, USB), forwarding all requests to its provider (the Transport Driver). Though the nub does no actual processing of requests, it is necessary in a C++ environment. The Transport Driver can be of any type, as long as it inherits from IOService. Because Transport Drivers needn't derive from a type known to IOBlockStorageDriver, it isn't possible for IOBlockStorageDriver to include the appropriate header file to allow direct communication with the Transport Driver. Thus we achieve polymorphism by having the Transport Driver instantiate a subclass of IOBlockStorageDevice. A typical implementation for a concrete subclass of IOBlockStorageDevice simply relays all methods to its provider (the Transport Driver), which implements the protocol- and device-specific behavior.
All pure-virtual functions must be implemented by the Transport Driver, which is responsible for instantiating the Nub.
Start an asynchronous read or write operation.
Eject the media.
Format the media to the specified byte capacity.
Return the allowable formatting byte capacities.
Lock or unlock the (removable) media in the drive.
Force data blocks in the hardware's buffer to be flushed to the media.
Return additional informational string for the device.
Return Product Name string for the device.
Return Product Revision string for the device.
Return Vendor Name string for the device.
Reports the current write cache state of the device.
Report the block size for the device, in bytes.
Report if the media is ejectable under software control.
Report if the media is lockable under software control.
Report the maximum allowed byte transfer for read operations.
Report the highest valid block for the device.
Report the maximum allowed byte transfer for write operations.
Report the device's media state.
Report if it's necessary to poll for media insertion, and if polling is expensive.
Report whether the media is removable or not.
Report whether the media is write-protected or not.
Sets the write cache state of the device.
doAsyncReadWrite |
Start an asynchronous read or write operation.
public
virtual IOReturn doAsyncReadWrite( IOMemoryDescriptor *buffer, UInt64 block, UInt64 nblks, IOStorageAttributes *attributes, IOStorageCompletion *completion);
buffer
An IOMemoryDescriptor describing the data-transfer buffer. The data direction is contained in the IOMemoryDescriptor. Responsibility for releasing the descriptor rests with the caller.
block
The starting block number of the data transfer.
nblks
The integral number of blocks to be transferred.
attributes
Attributes of the data transfer. See IOStorageAttributes.
completion
The completion routine to call once the data transfer is complete.
doEjectMedia |
Eject the media.
public
virtual IOReturn doEjectMedia( void) = 0;
doFormatMedia |
Format the media to the specified byte capacity.
public
virtual IOReturn doFormatMedia( UInt64 byteCapacity) = 0;
byteCapacity
The byte capacity to which the device is to be formatted, if possible.
The specified byte capacity must be one supported by the device. Supported capacities can be obtained by calling doGetFormatCapacities.
doGetFormatCapacities |
Return the allowable formatting byte capacities.
public
virtual UInt32 doGetFormatCapacities( UInt64 *capacities, UInt32 capacitiesMaxCount) const = 0;
capacities
Pointer for returning the list of capacities.
capacitiesMaxCount
The number of capacity values returned in "capacities," or if no buffer is given, the total number of capacity values available.
This function returns the supported byte capacities for the device.
doLockUnlockMedia |
Lock or unlock the (removable) media in the drive.
public
virtual IOReturn doLockUnlockMedia( bool doLock) = 0;
doLock
True to lock the media, False to unlock.
This method should only be called if the media is known to be removable.
doSynchronizeCache |
Force data blocks in the hardware's buffer to be flushed to the media.
public
virtual IOReturn doSynchronizeCache( void) = 0;
This method should only be called if the media is writable.
getAdditionalDeviceInfoString |
Return additional informational string for the device.
public
virtual char * getAdditionalDeviceInfoString( void) = 0;
A pointer to a static character string.
getProductString |
Return Product Name string for the device.
public
virtual char * getProductString( void) = 0;
A pointer to a static character string.
getRevisionString |
Return Product Revision string for the device.
public
virtual char * getRevisionString( void) = 0;
A pointer to a static character string.
getVendorString |
Return Vendor Name string for the device.
public
virtual char * getVendorString( void) = 0;
A pointer to a static character string.
getWriteCacheState |
Reports the current write cache state of the device.
public
virtual IOReturn getWriteCacheState( bool *enabled);
enabled
Pointer to returned result. True indicates the write cache is enabled; False indicates the write cache is disabled.
Reports the current write cache state of the device. The write cache state is not guaranteed to persist across reboots and detaches.
init |
public
virtual bool init( OSDictionary *properties);
This function is overridden so that IOBlockStorageDevice can set a property, used by IOBlockStorageDriver for matching. Since the concrete subclass of IOBlockStorageDevice can be of any class type, the property is used for matching.
This function is usually not overridden by developers.
reportBlockSize |
Report the block size for the device, in bytes.
public
virtual IOReturn reportBlockSize( UInt64 *blockSize) = 0;
blockSize
Pointer to returned block size value.
reportEjectability |
Report if the media is ejectable under software control.
public
virtual IOReturn reportEjectability( bool *isEjectable) = 0;
isEjectable
Pointer to returned result. True indicates the media is ejectable, False indicates the media cannot be ejected under software control.
This method should only be called if the media is known to be removable.
reportLockability |
Report if the media is lockable under software control.
public
virtual IOReturn reportLockability( bool *isLockable) = 0;
isLockable
Pointer to returned result. True indicates the media can be locked in place; False indicates the media cannot be locked by software.
This method should only be called if the media is known to be removable.
reportMaxReadTransfer |
Report the maximum allowed byte transfer for read operations.
public
virtual IOReturn reportMaxReadTransfer ( UInt64 blockSize, UInt64 *max) = 0;
blockSize
The block size desired for the transfer.
max
Pointer to returned result.
Some devices impose a maximum data transfer size. Because this limit may be determined by the size of a block-count field in a command, the limit may depend on the block size of the transfer.
reportMaxValidBlock |
Report the highest valid block for the device.
public
virtual IOReturn reportMaxValidBlock( UInt64 *maxBlock) = 0;
maxBlock
Pointer to returned result
reportMaxWriteTransfer |
Report the maximum allowed byte transfer for write operations.
public
virtual IOReturn reportMaxWriteTransfer( UInt64 blockSize, UInt64 *max) = 0;
blockSize
The block size desired for the transfer.
max
Pointer to returned result.
Some devices impose a maximum data transfer size. Because this limit may be determined by the size of a block-count field in a command, the limit may depend on the block size of the transfer.
reportMediaState |
Report the device's media state.
public
virtual IOReturn reportMediaState( bool *mediaPresent, bool *changedState) = 0;
mediaPresent
Pointer to returned media state. True indicates media is present in the device; False indicates no media is present.
changedState
Pointer to returned result. True indicates a change of state since prior calls, False indicates that the state has not changed.
This method reports whether we have media in the drive or not, and whether the state has changed from the previously reported state.
A result of kIOReturnSuccess is always returned if the test for media is successful, regardless of media presence. The mediaPresent result should be used to determine whether media is present or not. A return other than kIOReturnSuccess indicates that the Transport Driver was unable to interrogate the device. In this error case, the outputs mediaState and changedState will *not* be stored.
reportPollRequirements |
Report if it's necessary to poll for media insertion, and if polling is expensive.
public
virtual IOReturn reportPollRequirements( bool *pollRequired, bool *pollIsExpensive) = 0;
pollRequired
Pointer to returned result. True indicates that polling is required; False indicates that polling is not required to detect media.
pollIsExpensive
Pointer to returned result. True indicates that the polling operation is expensive; False indicates that the polling operation is cheap.
This method reports whether the device must be polled to detect media insertion, and whether a poll is expensive to perform.
The term "expensive" typically implies a device that must be spun-up to detect media, as on a PC floppy. Most devices can detect media inexpensively.
reportRemovability |
Report whether the media is removable or not.
public
virtual IOReturn reportRemovability( bool *isRemovable) = 0;
isRemovable
Pointer to returned result. True indicates that the media is removable; False indicates the media is not removable.
This method reports whether the media is removable, but it does not provide detailed information regarding software eject or lock/unlock capability.
reportWriteProtection |
Report whether the media is write-protected or not.
public
virtual IOReturn reportWriteProtection( bool *isWriteProtected) = 0;
isWriteProtected
Pointer to returned result. True indicates that the media is write-protected (it cannot be written); False indicates that the media is not write-protected (it is permissible to write).
setWriteCacheState |
Sets the write cache state of the device.
public
virtual IOReturn setWriteCacheState( bool enabled);
enabled
True to enable the write cache; False to disable the write cache.
Sets the write cache state of the device. The write cache state is not guaranteed to persist across reboots and detaches.
|
Last Updated: 2008-12-19