2018-10-10 09:53:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-05-31 13:22:52 +00:00
|
|
|
#include <AK/AKString.h>
|
2018-10-10 09:53:07 +00:00
|
|
|
#include <AK/ByteBuffer.h>
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
2018-11-15 16:13:10 +00:00
|
|
|
class FS;
|
2018-10-10 09:53:07 +00:00
|
|
|
struct InodeMetadata;
|
|
|
|
|
|
|
|
class InodeIdentifier {
|
|
|
|
public:
|
2019-05-28 09:53:16 +00:00
|
|
|
InodeIdentifier() {}
|
2019-07-03 19:17:35 +00:00
|
|
|
InodeIdentifier(u32 fsid, u32 inode)
|
2019-01-31 16:31:23 +00:00
|
|
|
: m_fsid(fsid)
|
2018-10-10 09:53:07 +00:00
|
|
|
, m_index(inode)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-12-02 23:20:00 +00:00
|
|
|
bool is_valid() const { return m_fsid != 0 && m_index != 0; }
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2019-07-03 19:17:35 +00:00
|
|
|
u32 fsid() const { return m_fsid; }
|
|
|
|
u32 index() const { return m_index; }
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2018-12-02 23:20:00 +00:00
|
|
|
FS* fs();
|
|
|
|
const FS* fs() const;
|
2018-10-10 09:53:07 +00:00
|
|
|
|
|
|
|
bool operator==(const InodeIdentifier& other) const
|
|
|
|
{
|
2018-12-02 23:20:00 +00:00
|
|
|
return m_fsid == other.m_fsid && m_index == other.m_index;
|
2018-10-10 09:53:07 +00:00
|
|
|
}
|
|
|
|
|
2018-10-24 12:28:22 +00:00
|
|
|
bool operator!=(const InodeIdentifier& other) const
|
|
|
|
{
|
2018-12-02 23:20:00 +00:00
|
|
|
return m_fsid != other.m_fsid || m_index != other.m_index;
|
2018-10-24 12:28:22 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 23:20:00 +00:00
|
|
|
bool is_root_inode() const;
|
2018-10-10 09:53:07 +00:00
|
|
|
|
2019-05-31 13:22:52 +00:00
|
|
|
String to_string() const { return String::format("%u:%u", m_fsid, m_index); }
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
private:
|
2019-07-03 19:17:35 +00:00
|
|
|
u32 m_fsid { 0 };
|
|
|
|
u32 m_index { 0 };
|
2018-10-10 09:53:07 +00:00
|
|
|
};
|