1a10cbe033
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2800 a95241bf-73f2-0310-859d-f6bbb57e9c96
94 lines
2.2 KiB
C++
94 lines
2.2 KiB
C++
//----------------------------------------------------------------------
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//---------------------------------------------------------------------
|
|
|
|
#ifndef _PARTITION_H
|
|
#define _PARTITION_H
|
|
|
|
#include <disk_scanner.h>
|
|
#include <Mime.h>
|
|
#include <ObjectList.h>
|
|
#include <Rect.h>
|
|
#include <String.h>
|
|
|
|
class BDiskDevice;
|
|
class BSession;
|
|
class BVolume;
|
|
|
|
class BPartition {
|
|
public:
|
|
~BPartition();
|
|
|
|
BSession *Session() const;
|
|
BDiskDevice *Device() const;
|
|
|
|
off_t Offset() const;
|
|
off_t Size() const;
|
|
int32 BlockSize() const;
|
|
int32 Index() const;
|
|
|
|
uint32 Flags() const;
|
|
bool IsHidden() const;
|
|
bool IsVirtual() const;
|
|
bool IsEmpty() const;
|
|
bool ContainsFileSystem() const;
|
|
|
|
const char *Name() const;
|
|
const char *Type() const;
|
|
const char *FileSystemShortName() const;
|
|
const char *FileSystemLongName() const;
|
|
const char *VolumeName() const;
|
|
|
|
uint32 FileSystemFlags() const;
|
|
|
|
bool IsMounted() const;
|
|
|
|
int32 UniqueID() const;
|
|
|
|
status_t GetVolume(BVolume *volume) const;
|
|
|
|
status_t GetIcon(BBitmap *icon, icon_size which) const;
|
|
|
|
status_t Mount(uint32 mountFlags = 0, const char *parameters = NULL);
|
|
status_t Unmount();
|
|
|
|
status_t GetInitializationParameters(const char *fileSystem,
|
|
BString *volumeName,
|
|
BString *parameters,
|
|
BRect dialogCenter = BRect(),
|
|
bool *cancelled = NULL);
|
|
status_t Initialize(const char *fileSystem, const char *volumeName,
|
|
const char *parameters);
|
|
status_t Initialize(const char *fileSystem = "bfs",
|
|
BRect dialogCenter = BRect(),
|
|
bool *cancelled = NULL);
|
|
|
|
private:
|
|
BPartition();
|
|
BPartition(const BPartition &);
|
|
|
|
BPartition &operator=(const BPartition &);
|
|
|
|
void _Unset();
|
|
status_t _Unarchive(BMessage *archive);
|
|
|
|
void _SetSession(BSession *session);
|
|
|
|
private:
|
|
friend class BDiskDeviceList;
|
|
friend class BSession;
|
|
|
|
BSession *fSession;
|
|
int32 fUniqueID;
|
|
int32 fChangeCounter;
|
|
int32 fIndex;
|
|
// TODO: Also contains the device name, which we can get from Device() anyway.
|
|
// We could either remove it from extended_partition_info or list
|
|
// the individual fields here.
|
|
extended_partition_info fInfo;
|
|
dev_t fVolumeID;
|
|
};
|
|
|
|
#endif // _PARTITION_H
|