BVolumeRoster¶
Constructor and Destructor¶
BVolumeRoster()
BVolumeRoster::BVolumeRoster()
Creates a new BVolumeRoster object. You don’t have to
“initialize” the object before using it (as you do with most other Storage
Kit classes). You can call GetNextVolume()
(or
whatever) immediately after constructing.
~BVolumeRoster()
virtual BVolumeRoster::~BVolumeRoster()
Destroys the object. If this BVolumeRoster object was watching volumes, the watch is called off.
Member Functions¶
GetBootVolume()
status_t BVolumeRoster::GetBootVolume(BVolume *boot_vol)
Initializes boot_vol to refer to the “boot volume.” This is the volume that was used to boot the computer. boot_vol must be allocated before you pass it in. If the boot volume can’t be found, the argument is uninitialized.
(Currently, this function looks for the volume that’s mounted at /boot. The only way to fool the system into thinking that there isn’t a boot volume is to rename /boot—not a smart thing to do.)
Return Code |
Description |
---|---|
|
The boot volume was successfully retrieved. |
|
The boot volume wasn’t found. |
GetNextVolume(), Rewind()
status_t BVolumeRoster::GetNextVolume(BVolume *volume)
void BVolumeRoster::Rewind()
GetNextVolume() retrieves the “next” volume from the volume list
and uses it to initialize the argument (which must be allocated). When the
function return B_BAD_VALUE
, you’ve reached the end of
the list.
Rewind() rewinds the volume list such that the next GetNextVolume() will return the first element in the list.
Return Code |
Description |
---|---|
|
The next volume was successfully retrieved. |
|
You’ve reached the end of the volume list. |
StartWatching(), StopWatching(), Messenger()
status_t BVolumeRoster::StartWatching(BMessenger *messenger = be_app_messenger)
void BVolumeRoster::StopWatching()
BMessenger BVolumeRoster::Messenger() const
These functions start and stop the BVolumeRoster’s volume-watching facility. (This is actually just a convenient cover for the Node Monitor.)
StartWatching() registers a request for notifications of volume mounts and unmounts. The notifications are sent (as
BMessage
s) to theBHandler
/BLooper
pair specified by the argument. There are separate messages for mounting and unmounting; their formats are described below. The caller retains possession of theBHandler
/BLooper
that theBMessenger
represents. The volume watching continues until this BVolumeRoster object is destroyed, or until you call…StopWatching(). This function tells the volume-watcher to stop watching. In other words, notifications of volume mounts and unmounts are no longer sent to the BVolumeRoster’s target.
Messenger() returns a copy of the
BMessenger
object that was set in the previous StartWatching() call.
There are separate notifications (BMessage
s) for
volume-mounted and volume-unmounted events. See the
B_DEVICE_MOUNTED
and B_DEVICE_UNMOUNTED
descriptions in “The Node Monitor” section of this chapter.
Return Code |
Description |
---|---|
|
The volume-watcher was successfully started or stopped. |
|
Poorly formed |
|
Couldn’t allocate resources. |