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