summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/async_context.cpp
blob: a9a8888ed2f31c89d644fc787a98e1a27aa614e4 (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
// Copyright 2021 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/core.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/service/acc/async_context.h"

namespace Service::Account {
IAsyncContext::IAsyncContext(Core::System& system_)
    : ServiceFramework{system_, "IAsyncContext"}, compeletion_event{system_.Kernel()} {

    Kernel::KAutoObject::Create(std::addressof(compeletion_event));
    compeletion_event.Initialize("IAsyncContext:CompletionEvent");

    // clang-format off
        static const FunctionInfo functions[] = {
            {0, &IAsyncContext::GetSystemEvent, "GetSystemEvent"},
            {1, &IAsyncContext::Cancel, "Cancel"},
            {2, &IAsyncContext::HasDone, "HasDone"},
            {3, &IAsyncContext::GetResult, "GetResult"},
        };
    // clang-format on

    RegisterHandlers(functions);
}

void IAsyncContext::GetSystemEvent(Kernel::HLERequestContext& ctx) {
    LOG_DEBUG(Service_ACC, "called");

    IPC::ResponseBuilder rb{ctx, 2, 1};
    rb.Push(ResultSuccess);
    rb.PushCopyObjects(compeletion_event.GetReadableEvent());
}

void IAsyncContext::Cancel(Kernel::HLERequestContext& ctx) {
    LOG_DEBUG(Service_ACC, "called");

    Cancel();
    MarkComplete();

    IPC::ResponseBuilder rb{ctx, 2};
    rb.Push(ResultSuccess);
}

void IAsyncContext::HasDone(Kernel::HLERequestContext& ctx) {
    LOG_DEBUG(Service_ACC, "called");

    is_complete = IsComplete();

    IPC::ResponseBuilder rb{ctx, 3};
    rb.Push(ResultSuccess);
    rb.Push(is_complete);
}

void IAsyncContext::GetResult(Kernel::HLERequestContext& ctx) {
    LOG_DEBUG(Service_ACC, "called");

    IPC::ResponseBuilder rb{ctx, 3};
    rb.Push(GetResult());
}

void IAsyncContext::MarkComplete() {
    is_complete = true;
    compeletion_event.GetWritableEvent().Signal();
}

} // namespace Service::Account