summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/glue/glue_manager.cpp
blob: 8a654cdca8b7b5fd7aca854499afdbe5b49c984e (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "core/hle/service/glue/errors.h"
#include "core/hle/service/glue/glue_manager.h"

namespace Service::Glue {

struct ARPManager::MapEntry {
    ApplicationLaunchProperty launch;
    std::vector<u8> control;
};

ARPManager::ARPManager() = default;

ARPManager::~ARPManager() = default;

ResultVal<ApplicationLaunchProperty> ARPManager::GetLaunchProperty(u64 title_id) const {
    if (title_id == 0) {
        return ERR_INVALID_PROCESS_ID;
    }

    const auto iter = entries.find(title_id);
    if (iter == entries.end()) {
        return ERR_NOT_REGISTERED;
    }

    return iter->second.launch;
}

ResultVal<std::vector<u8>> ARPManager::GetControlProperty(u64 title_id) const {
    if (title_id == 0) {
        return ERR_INVALID_PROCESS_ID;
    }

    const auto iter = entries.find(title_id);
    if (iter == entries.end()) {
        return ERR_NOT_REGISTERED;
    }

    return iter->second.control;
}

Result ARPManager::Register(u64 title_id, ApplicationLaunchProperty launch,
                            std::vector<u8> control) {
    if (title_id == 0) {
        return ERR_INVALID_PROCESS_ID;
    }

    const auto iter = entries.find(title_id);
    if (iter != entries.end()) {
        return ERR_INVALID_ACCESS;
    }

    entries.insert_or_assign(title_id, MapEntry{launch, std::move(control)});
    return ResultSuccess;
}

Result ARPManager::Unregister(u64 title_id) {
    if (title_id == 0) {
        return ERR_INVALID_PROCESS_ID;
    }

    const auto iter = entries.find(title_id);
    if (iter == entries.end()) {
        return ERR_NOT_REGISTERED;
    }

    entries.erase(iter);
    return ResultSuccess;
}

void ARPManager::ResetAll() {
    entries.clear();
}

} // namespace Service::Glue