summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/bis_factory.cpp
blob: ae4e3380031a854535b0b3ddbe82bca3ba0d66d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/file_sys/bis_factory.h"

namespace FileSys {

static VirtualDir GetOrCreateDirectory(const VirtualDir& dir, std::string_view path) {
    const auto res = dir->GetDirectoryRelative(path);
    if (res == nullptr)
        return dir->CreateDirectoryRelative(path);
    return res;
}

BISFactory::BISFactory(VirtualDir nand_root_)
    : nand_root(std::move(nand_root_)),
      sysnand_cache(std::make_shared<RegisteredCache>(
          GetOrCreateDirectory(nand_root, "/system/Contents/registered"))),
      usrnand_cache(std::make_shared<RegisteredCache>(
          GetOrCreateDirectory(nand_root, "/user/Contents/registered"))) {}

std::shared_ptr<RegisteredCache> BISFactory::GetSystemNANDContents() const {
    return sysnand_cache;
}

std::shared_ptr<RegisteredCache> BISFactory::GetUserNANDContents() const {
    return usrnand_cache;
}

} // namespace FileSys