summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/storage.h
blob: 10d00b14192e4bff96d435a0f95417b49e5c200e (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
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "core/hle/service/service.h"

namespace Service::AM {

class LibraryAppletStorage;

class IStorage final : public ServiceFramework<IStorage> {
public:
    explicit IStorage(Core::System& system_, std::shared_ptr<LibraryAppletStorage> impl_);
    explicit IStorage(Core::System& system_, std::vector<u8>&& buffer);
    ~IStorage() override;

    std::shared_ptr<LibraryAppletStorage> GetImpl() const {
        return impl;
    }

    std::vector<u8> GetData() const;

private:
    void Open(HLERequestContext& ctx);
    void OpenTransferStorage(HLERequestContext& ctx);

    const std::shared_ptr<LibraryAppletStorage> impl;
};

} // namespace Service::AM