2019-05-30 17:46:08 +02:00
|
|
|
#include <AK/HashTable.h>
|
2019-05-30 18:58:59 +02:00
|
|
|
#include <AK/StringBuilder.h>
|
2019-05-30 17:46:08 +02:00
|
|
|
#include <Kernel/FileSystem/Custody.h>
|
|
|
|
#include <Kernel/FileSystem/Inode.h>
|
|
|
|
#include <Kernel/Lock.h>
|
|
|
|
|
2019-08-08 11:08:27 +02:00
|
|
|
static Lockable<InlineLinkedList<Custody>>& all_custodies()
|
2019-05-30 17:46:08 +02:00
|
|
|
{
|
2019-08-08 11:08:27 +02:00
|
|
|
static Lockable<InlineLinkedList<Custody>>* list;
|
|
|
|
if (!list)
|
|
|
|
list = new Lockable<InlineLinkedList<Custody>>;
|
|
|
|
return *list;
|
2019-05-30 17:46:08 +02:00
|
|
|
}
|
|
|
|
|
2019-08-24 22:01:17 +02:00
|
|
|
Custody* Custody::get_if_cached(Custody* parent, const StringView& name)
|
2019-05-31 15:22:52 +02:00
|
|
|
{
|
|
|
|
LOCKER(all_custodies().lock());
|
2019-08-08 13:40:58 +02:00
|
|
|
for (auto& custody : all_custodies().resource()) {
|
|
|
|
if (custody.is_deleted())
|
2019-05-31 15:22:52 +02:00
|
|
|
continue;
|
2019-08-08 13:40:58 +02:00
|
|
|
if (custody.is_mounted_on())
|
2019-05-31 15:22:52 +02:00
|
|
|
continue;
|
2019-08-08 13:40:58 +02:00
|
|
|
if (custody.parent() == parent && custody.name() == name)
|
|
|
|
return &custody;
|
2019-05-31 15:22:52 +02:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-01-11 18:25:26 +03:00
|
|
|
NonnullRefPtr<Custody> Custody::get_or_create(Custody* parent, const StringView& name, Inode& inode, int mount_flags)
|
2019-05-31 15:22:52 +02:00
|
|
|
{
|
2019-06-21 18:37:47 +02:00
|
|
|
if (RefPtr<Custody> cached_custody = get_if_cached(parent, name)) {
|
2019-05-31 15:22:52 +02:00
|
|
|
if (&cached_custody->inode() != &inode) {
|
2019-08-24 22:01:17 +02:00
|
|
|
dbg() << "WTF! Cached custody for name '" << name << "' has inode=" << cached_custody->inode().identifier() << ", new inode=" << inode.identifier();
|
2019-05-31 15:22:52 +02:00
|
|
|
}
|
|
|
|
ASSERT(&cached_custody->inode() == &inode);
|
|
|
|
return *cached_custody;
|
|
|
|
}
|
2020-01-11 18:25:26 +03:00
|
|
|
return create(parent, name, inode, mount_flags);
|
2019-05-31 15:22:52 +02:00
|
|
|
}
|
|
|
|
|
2020-01-11 18:25:26 +03:00
|
|
|
Custody::Custody(Custody* parent, const StringView& name, Inode& inode, int mount_flags)
|
2019-05-30 17:46:08 +02:00
|
|
|
: m_parent(parent)
|
|
|
|
, m_name(name)
|
|
|
|
, m_inode(inode)
|
2020-01-11 18:25:26 +03:00
|
|
|
, m_mount_flags(mount_flags)
|
2019-05-30 17:46:08 +02:00
|
|
|
{
|
|
|
|
LOCKER(all_custodies().lock());
|
2019-08-08 11:08:27 +02:00
|
|
|
all_custodies().resource().append(this);
|
2019-05-30 17:46:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Custody::~Custody()
|
|
|
|
{
|
|
|
|
LOCKER(all_custodies().lock());
|
|
|
|
all_custodies().resource().remove(this);
|
|
|
|
}
|
2019-05-30 18:58:59 +02:00
|
|
|
|
|
|
|
String Custody::absolute_path() const
|
|
|
|
{
|
2020-01-10 23:09:58 +01:00
|
|
|
if (!parent())
|
|
|
|
return "/";
|
2019-05-30 18:58:59 +02:00
|
|
|
Vector<const Custody*, 32> custody_chain;
|
|
|
|
for (auto* custody = this; custody; custody = custody->parent())
|
|
|
|
custody_chain.append(custody);
|
|
|
|
StringBuilder builder;
|
|
|
|
for (int i = custody_chain.size() - 2; i >= 0; --i) {
|
|
|
|
builder.append('/');
|
|
|
|
builder.append(custody_chain[i]->name().characters());
|
|
|
|
}
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
2019-05-31 15:22:52 +02:00
|
|
|
|
|
|
|
void Custody::did_delete(Badge<VFS>)
|
|
|
|
{
|
|
|
|
m_deleted = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Custody::did_mount_on(Badge<VFS>)
|
|
|
|
{
|
|
|
|
m_mounted_on = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Custody::did_rename(Badge<VFS>, const String& name)
|
|
|
|
{
|
|
|
|
m_name = name;
|
|
|
|
}
|