|
virtual bool | ambiguity_partition_table_and_filesystem (const std::string &message, const std::string &what, const std::string &name, PtType pt_type, FsType fs_type) const =0 |
| This error callback is called when a partition table and a filesystem are found on a device.
|
|
virtual bool | ambiguity_partition_table_and_luks (const std::string &message, const std::string &what, const std::string &name, PtType pt_type) const =0 |
| This error callback is called when a partition table and a LUKS are found on a device.
|
|
virtual bool | ambiguity_partition_table_and_lvm_pv (const std::string &message, const std::string &what, const std::string &name, PtType pt_type) const =0 |
| This error callback is called when a partition table and a LVM PV are found on a device.
|
|
virtual bool | unsupported_partition_table (const std::string &message, const std::string &what, const std::string &name, PtType pt_type) const =0 |
| This error callback is called when a known but unsupported partition table type, e.g.
|
|
virtual bool | unsupported_filesystem (const std::string &message, const std::string &what, const std::string &name, FsType fs_type) const =0 |
| This error callback is called when a known but unsupported filesystem type, e.g.
|
|
virtual void | begin () const |
| Called at the begin of probing.
|
|
virtual void | end () const |
| Called at the end of probing.
|
|
virtual bool | missing_command (const std::string &message, const std::string &what, const std::string &command, uint64_t used_features) const =0 |
| Callback for missing commands.
|
|
virtual void | message (const std::string &message) const =0 |
| Callback for progress messages.
|
|
virtual bool | error (const std::string &message, const std::string &what) const =0 |
| Callback for errors.
|
|
virtual bool storage::ProbeCallbacksV4::unsupported_filesystem |
( |
const std::string & | message, |
|
|
const std::string & | what, |
|
|
const std::string & | name, |
|
|
FsType | fs_type ) const |
|
pure virtual |
This error callback is called when a known but unsupported filesystem type, e.g.
MINIX, is found. If blkid reports an (to libstorage-ng) unknown filesystem type, e.g. "super-fs", no error is reported. And surely there can be filesystem types not even blkid knows.
- See also
- error()
virtual bool storage::ProbeCallbacksV4::unsupported_partition_table |
( |
const std::string & | message, |
|
|
const std::string & | what, |
|
|
const std::string & | name, |
|
|
PtType | pt_type ) const |
|
pure virtual |
This error callback is called when a known but unsupported partition table type, e.g.
AIX, is found. If parted reports an (to libstorage-ng) unknown partition table type, e.g. "super-pt", no error is reported. And surely there can be partition table types not even parted knows.
- See also
- error()