public:
virtual UInt64 getBase() const;
Ask the media object for its byte offset relative to its provider media object below it in the storage hierarchy. Media offset, in bytes.
public:
virtual const char * getContent() const;
Ask the media object for a description of its contents. The description is the same as the hint at the time of the object's creation, but it is possible that the description be overrided by a client (which has probed the media and identified the content correctly) of the media object. It is more accurate than the hint for this reason. The string is formed in the likeness of Apple's "Apple_HFS" strings. * The content description can be overrided by any client that matches onto this media object with a match category of kIOStorageCategory. The media object checks for a kIOMediaContentMask property in the client, and if it finds one, it copies it into kIOMediaContent property.
Result: Description of media's contents.public:
virtual const char * getContentHint() const;
Ask the media object for a hint of its contents. The hint is set at the time of the object's creation, should the creator have a clue as to what it may contain. The hint string does not change for the lifetime of the object and is also formed in the likeness of Apple's "Apple_HFS" strings.
Result: Hint of media's contents.public:
virtual UInt64 getPreferredBlockSize() const;
Ask the media object for its natural block size. This information is useful to clients that want to optimize access to the media.
Result: Natural block size, in bytes.public:
virtual UInt64 getSize() const;
Ask the media object for its total length in bytes.
Result: Media size, in bytes.protected:
virtual void handleClose(IOService * client, IOOptionBits options);
The handleClose method closes the client's access to this object. * This implementation replaces the IOService definition of handleClose().
Name Description client Client requesting the close. options Options for the close. Set to zero.
protected:
virtual bool handleIsOpen(const IOService * client) const;
The handleIsOpen method determines whether the specified client, or any client if none is specificed, presently has an open on this object. * This implementation replaces the IOService definition of handleIsOpen().
Result: Returns true if the client was (or clients were) open, false otherwise.
Name Description client Client to check the open state of. Set to zero to check the open state of all clients.
protected:
virtual bool handleOpen(IOService * client, IOOptionBits options, void * access);
The handleOpen method grants or denies permission to access this object to an interested client. The argument is an IOStorageAccess value that specifies the level of access desired -- reader or reader-writer. * This method can be invoked to upgrade or downgrade the access level for an existing client as well. The previous access level will prevail for upgrades that fail, of course. A downgrade should never fail. If the new access level should be the same as the old for a given client, this method will do nothing and return success. In all cases, one, singular close-per-client is expected for all opens-per-client received. * This implementation replaces the IOService definition of handleOpen().
Result: Returns true if the open was successful, false otherwise.
Name Description client Client requesting the open. options Options for the open. Set to zero. access Access level for the open. Set to kAccessReader or kAccessReaderWriter.
public:
virtual bool init(UInt64 base, UInt64 size, UInt64 preferredBlockSize, bool isEjectable, bool isWhole, bool isWritable, const char * contentHint = 0, OSDictionary * properties = 0);
Initialize this object's minimal state.
Result: Returns true on success, false otherwise.
Name Description base Media offset, in bytes. size Media size, in bytes. preferredBlockSize Natural block size, in bytes. isEjectable Indicates whether the media is ejectable. isWhole Indicated whether the media represents the whole disk. isWritable Indicates whether the media is writable. contentHint Hint of media's contents (optional). See getContentHint(). properties Substitute property table for this object (optional).
public:
virtual bool isEjectable() const;
Ask the media object whether it is ejectable.
Result: Returns true if the media is ejectable, false otherwise.public:
virtual bool isFormatted() const;
Ask the media object whether it is formatted.
Result: Returns true if the media is formatted, false otherwise.public:
virtual bool isWhole() const;
Ask the media object whether it represents the whole disk.
Result: Returns true if the media represents the whole disk, false otherwise.public:
virtual bool isWritable() const;
Ask the media object whether it is writable.
Result: Returns true if the media is writable, false otherwise.public:
virtual void read(IOService * client, UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageCompletion completion);
Read data from the storage object at the specified byte offset into the specified buffer, asynchronously. When the read completes, the caller will be notified via the specified completion action. * The buffer will be retained for the duration of the read.
Name Description client Client requesting the read. byteStart Starting byte offset for the data transfer. buffer Buffer for the data transfer. The size of the buffer implies the size of the data transfer. completion Completion routine to call once the data transfer is complete.
public:
virtual void write(IOService * client, UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageCompletion completion);
Write data into the storage object at the specified byte offset from the specified buffer, asynchronously. When the write completes, the caller will be notified via the specified completion action. * The buffer will be retained for the duration of the write.
Name Description client Client requesting the write. byteStart Starting byte offset for the data transfer. buffer Buffer for the data transfer. The size of the buffer implies the size of the data transfer. completion Completion routine to call once the data transfer is complete.
© 2000 Apple Computer, Inc. (Last Updated 2/23/2000)