2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/ByteBuffer.h>
|
2020-02-16 00:27:42 +00:00
|
|
|
#include <AK/String.h>
|
2018-10-10 09:53:07 +00:00
|
|
|
#include <AK/Types.h>
|
|
|
|
|
2020-02-16 00:27:42 +00:00
|
|
|
namespace Kernel {
|
|
|
|
|
2018-11-15 16:13:10 +00:00
|
|
|
class FS;
|
2018-10-10 09:53:07 +00:00
|
|
|
struct InodeMetadata;
|
|
|
|
|
|
|
|
class InodeIdentifier {
|
|
|
|
public:
|
2020-09-18 07:49:51 +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
|
|
|
}
|
|
|
|
|
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
|
|
|
};
|
2019-07-08 13:38:44 +00:00
|
|
|
|
|
|
|
inline const LogStream& operator<<(const LogStream& stream, const InodeIdentifier& value)
|
|
|
|
{
|
|
|
|
stream << value.fsid() << ':' << value.index();
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
2020-02-16 00:27:42 +00:00
|
|
|
}
|