ADC Home > Reference Library > Reference > Darwin > Kernel Framework Reference

 


IOBlockStorageDevice

Inherits from:
Declared In:

Overview

A generic block storage device abstraction.

Discussion

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.



Functions

doAsyncReadWrite

Start an asynchronous read or write operation.

doEjectMedia

Eject the media.

doFormatMedia

Format the media to the specified byte capacity.

doGetFormatCapacities

Return the allowable formatting byte capacities.

doLockUnlockMedia

Lock or unlock the (removable) media in the drive.

doSynchronizeCache

Force data blocks in the hardware's buffer to be flushed to the media.

getAdditionalDeviceInfoString

Return additional informational string for the device.

getProductString

Return Product Name string for the device.

getRevisionString

Return Product Revision string for the device.

getVendorString

Return Vendor Name string for the device.

getWriteCacheState

Reports the current write cache state of the device.

init
reportBlockSize

Report the block size for the device, in bytes.

reportEjectability

Report if the media is ejectable under software control.

reportLockability

Report if the media is lockable under software control.

reportMaxReadTransfer

Report the maximum allowed byte transfer for read operations.

reportMaxValidBlock

Report the highest valid block for the device.

reportMaxWriteTransfer

Report the maximum allowed byte transfer for write operations.

reportMediaState

Report the device's media state.

reportPollRequirements

Report if it's necessary to poll for media insertion, and if polling is expensive.

reportRemovability

Report whether the media is removable or not.

reportWriteProtection

Report whether the media is write-protected or not.

setWriteCacheState

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);
Parameters
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;
Parameters
byteCapacity

The byte capacity to which the device is to be formatted, if possible.

Discussion

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;
Parameters
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.

Discussion

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;
Parameters
doLock

True to lock the media, False to unlock.

Discussion

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;
Discussion

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;
Return Value

A pointer to a static character string.


getProductString


Return Product Name string for the device.

public

virtual char * getProductString( void) = 0;
Return Value

A pointer to a static character string.


getRevisionString


Return Product Revision string for the device.

public

virtual char * getRevisionString( void) = 0;
Return Value

A pointer to a static character string.


getVendorString


Return Vendor Name string for the device.

public

virtual char * getVendorString( void) = 0;
Return Value

A pointer to a static character string.


getWriteCacheState


Reports the current write cache state of the device.

public

virtual IOReturn getWriteCacheState( bool *enabled);
Parameters
enabled

Pointer to returned result. True indicates the write cache is enabled; False indicates the write cache is disabled.

Discussion

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);
Discussion

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;
Parameters
blockSize

Pointer to returned block size value.


reportEjectability


Report if the media is ejectable under software control.

public

virtual IOReturn reportEjectability( bool *isEjectable) = 0;
Parameters
isEjectable

Pointer to returned result. True indicates the media is ejectable, False indicates the media cannot be ejected under software control.

Discussion

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;
Parameters
isLockable

Pointer to returned result. True indicates the media can be locked in place; False indicates the media cannot be locked by software.

Discussion

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;
Parameters
blockSize

The block size desired for the transfer.

max

Pointer to returned result.

Discussion

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;
Parameters
maxBlock

Pointer to returned result


reportMaxWriteTransfer


Report the maximum allowed byte transfer for write operations.

public

virtual IOReturn reportMaxWriteTransfer( UInt64 blockSize, UInt64 *max) = 0;
Parameters
blockSize

The block size desired for the transfer.

max

Pointer to returned result.

Discussion

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;
Parameters
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.

Discussion

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;
Parameters
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.

Discussion

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;
Parameters
isRemovable

Pointer to returned result. True indicates that the media is removable; False indicates the media is not removable.

Discussion

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;
Parameters
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);
Parameters
enabled

True to enable the write cache; False to disable the write cache.

Discussion

Sets the write cache state of the device. The write cache state is not guaranteed to persist across reboots and detaches.


Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.

 

Last Updated: 2008-12-19