140 lines
3.9 KiB
C++
140 lines
3.9 KiB
C++
/*
|
|||
* Copyright 2004-2007, Haiku, Inc. All rights reserved.
|
|||
* Copyright 2003-2004, Ingo Weinhold, [email protected]. All rights reserved.
|
|||
|
|
*
|
||
|
|
* Distributed under the terms of the MIT License.
|
||
|
|
*/
|
||
#ifndef _K_DISK_DEVICE_MANAGER_H
|
|||
|
|
#define _K_DISK_DEVICE_MANAGER_H
|
||
|
|
|
||
|
|||
#include <disk_device_manager.h>
|
|||
|
|
#include <Locker.h>
|
||
|
|||
|
|||
namespace BPrivate {
|
|||
|
|
namespace DiskDevice {
|
||
|
|
|
||
|
|
class KDiskDevice;
|
||
|
|
class KDiskSystem;
|
||
class KFileDiskDevice;
|
|||
class KPartition;
|
|||
|
|
|
||
|
|
class KDiskDeviceManager {
|
||
public:
|
|||
KDiskDeviceManager();
|
|||
|
|
~KDiskDeviceManager();
|
||
|
|
|
||
status_t InitCheck() const;
|
|||
|
|
|
||
// Singleton Creation, Deletion, and Access
|
|||
|
|
|
||
|
|
static status_t CreateDefault();
|
||
|
|
static void DeleteDefault();
|
||
|
|
static KDiskDeviceManager *Default();
|
||
|
|
|
||
|
|
// Locking
|
||
|
|
|
||
|
|
bool Lock();
|
||
|
|
void Unlock();
|
||
|
|
|
||
|
|
// Disk Device / Partition Management
|
||
|
|
|
||
// manager must be locked
|
|||
KDiskDevice *FindDevice(const char *path);
|
|||
KDiskDevice *FindDevice(partition_id id, bool deviceOnly = true);
|
|||
KPartition *FindPartition(const char *path, bool noShadow = false);
|
|||
|
|
KPartition *FindPartition(partition_id id, bool noShadow = false);
|
||
|
|
KFileDiskDevice *FindFileDevice(const char *filePath);
|
||
|
|
|
||
|
|
KDiskDevice *RegisterDevice(const char *path);
|
||
KDiskDevice *RegisterDevice(partition_id id, bool deviceOnly = true);
|
|||
KDiskDevice *RegisterNextDevice(int32 *cookie);
|
|||
KPartition *RegisterPartition(const char *path, bool noShadow = false);
|
|||
|
|
KPartition *RegisterPartition(partition_id id, bool noShadow = false);
|
||
|
|
KFileDiskDevice *RegisterFileDevice(const char *filePath);
|
||
|
|||
KDiskDevice *ReadLockDevice(partition_id id, bool deviceOnly = true);
|
|||
|
|
KDiskDevice *WriteLockDevice(partition_id id, bool deviceOnly = true);
|
||
|
|
// The device is also registered and must be unregistered by the
|
||
|
|
// caller.
|
||
|
|
KPartition *ReadLockPartition(partition_id id);
|
||
|
|
KPartition *WriteLockPartition(partition_id id);
|
||
|
|
// Both the device and the partition is also registered and must be
|
||
|
|
// unregistered by the caller.
|
||
|
|
|
||
status_t ScanPartition(KPartition* partition);
|
|||
|
|||
partition_id CreateFileDevice(const char* filePath,
|
|||
|
|
bool* newlyCreated = NULL);
|
||
status_t DeleteFileDevice(const char *filePath);
|
|||
status_t DeleteFileDevice(partition_id id);
|
|||
|
|||
|
|
// manager must be locked
|
||
int32 CountDevices();
|
|||
KDiskDevice *NextDevice(int32 *cookie);
|
|||
|
|||
bool PartitionAdded(KPartition *partition); // implementation internal
|
|||
|
|
bool PartitionRemoved(KPartition *partition); //
|
||
bool DeletePartition(KPartition *partition); //
|
|||
|
|||
|
|
// Disk Systems
|
||
|
|
|
||
|
|
// manager must be locked
|
||
KDiskSystem *FindDiskSystem(const char *name);
|
|||
|
|
KDiskSystem *FindDiskSystem(disk_system_id id);
|
||
int32 CountDiskSystems();
|
|||
KDiskSystem *NextDiskSystem(int32 *cookie);
|
|||
|
|||
KDiskSystem *LoadDiskSystem(const char *name);
|
|||
KDiskSystem *LoadDiskSystem(disk_system_id id);
|
|||
|
|
KDiskSystem *LoadNextDiskSystem(int32 *cookie);
|
||
|
|
|
||
// Watching
|
|||
|
|
|
||
|
|
// TODO: Watching service for the kernel. The userland watching is handled
|
||
|
|
// by the registrar.
|
||
|
|||
status_t InitialDeviceScan();
|
|||
status_t RescanDiskSystems();
|
|||
|
|||
private:
|
|||
static void _CheckMediaStatusDaemon(void* self, int iteration);
|
|||
|
|
void _CheckMediaStatus();
|
||
|
|
|
||
status_t _RescanDiskSystems(bool fileSystems);
|
|||
|
|
|
||
status_t _AddPartitioningSystem(const char *name);
|
|||
|
|
status_t _AddFileSystem(const char *name);
|
||
|
|
status_t _AddDiskSystem(KDiskSystem *diskSystem);
|
||
|
|||
bool _AddDevice(KDiskDevice *device);
|
|||
|
|
bool _RemoveDevice(KDiskDevice *device);
|
||
|
|
|
||
status_t _Scan(const char *path);
|
|||
status_t _ScanPartition(KPartition *partition, bool async);
|
|||
// the manager must be locked and the device write locked
|
|||
status_t _ScanPartition(KPartition *partition);
|
|||
|
|
// used by the other _ScanPartition() version only
|
||
|
|||
struct DeviceMap;
|
|||
|
|
struct DiskSystemMap;
|
||
|
|
struct PartitionMap;
|
||
|
|
struct PartitionSet;
|
||
|
|
|
||
BLocker fLock;
|
|||
DeviceMap *fDevices;
|
|||
|
|
PartitionMap *fPartitions;
|
||
|
|
DiskSystemMap *fDiskSystems;
|
||
|
|
PartitionSet *fObsoletePartitions;
|
||
|
|||
static KDiskDeviceManager *sDefaultManager;
|
|||
};
|
|||
|
|
|
||
|
|
} // namespace DiskDevice
|
||
|
|
} // namespace BPrivate
|
||
|
|
|
||
|
|
using BPrivate::DiskDevice::KDiskDeviceManager;
|
||
|
|
|
||
|
|
#endif // _K_DISK_DEVICE_MANAGER_H
|