mirror of
https://review.haiku-os.org/haiku
synced 2025-01-20 13:31:28 +01:00
9f4ec30369
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3376 a95241bf-73f2-0310-859d-f6bbb57e9c96
39 lines
1.5 KiB
C++
39 lines
1.5 KiB
C++
//----------------------------------------------------------------------
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//---------------------------------------------------------------------
|
|
|
|
#ifndef _DISK_SYSTEM_H
|
|
#define _DISK_SYSTEM_H
|
|
|
|
class BDiskSystem {
|
|
public:
|
|
const char *Name() const;
|
|
|
|
bool SupportsDefragmenting(BPartition *partition, bool *whileMounted) const;
|
|
bool SupportsRepairing(BPartition *partition, bool checkOnly, bool *whileMounted) const;
|
|
bool SupportsResizing(BPartition *partition, bool *whileMounted) const;
|
|
bool SupportsResizingChild(BPartition *child) const;
|
|
bool SupportsMoving(BPartition *partition, bool *whileMounted) const;
|
|
bool SupportsMovingChild(BPartition *child) const;
|
|
bool SupportsParentSystem(const char *system) const;
|
|
// True in most cases. NULL == raw device.
|
|
bool SupportsChildSystem(const char *system) const;
|
|
// False for most file systems, true for most partitioning
|
|
// systems.
|
|
|
|
|
|
bool ValidateResize(BPartition *partition, off_t *size) const;
|
|
bool ValidateMove(BPartition *partition, off_t *start) const;
|
|
bool ValidateResizeChild(BPartition *partition, off_t *size) const;
|
|
bool ValidateMoveChild(BPartition *partition, off_t *start) const;
|
|
bool ValidateCreateChild(BPartition *partition, off_t *start, off_t *size, const char *parameters) const;
|
|
bool ValidateInitialize(BPartition *partition) const;
|
|
|
|
bool IsPartitioningSystem() const;
|
|
bool IsFileSystem() const;
|
|
bool IsSubSystemFor(BPartition *parent) const;
|
|
};
|
|
|
|
#endif // _DISK_SYSTEM_H
|