| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
- // SPDX-License-Identifier: GPL-2.0-or-later
- #include "core/core.h"
- #include "core/hle/kernel/k_event.h"
- #include "core/hle/service/acc/async_context.h"
- #include "core/hle/service/ipc_helpers.h"
- namespace Service::Account {
- IAsyncContext::IAsyncContext(Core::System& system_)
- : ServiceFramework{system_, "IAsyncContext"}, service_context{system_, "IAsyncContext"} {
- // 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);
- completion_event = service_context.CreateEvent("IAsyncContext:CompletionEvent");
- }
- IAsyncContext::~IAsyncContext() {
- service_context.CloseEvent(completion_event);
- }
- void IAsyncContext::GetSystemEvent(HLERequestContext& ctx) {
- LOG_DEBUG(Service_ACC, "called");
- IPC::ResponseBuilder rb{ctx, 2, 1};
- rb.Push(ResultSuccess);
- rb.PushCopyObjects(completion_event->GetReadableEvent());
- }
- void IAsyncContext::Cancel(HLERequestContext& ctx) {
- LOG_DEBUG(Service_ACC, "called");
- Cancel();
- MarkComplete();
- IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(ResultSuccess);
- }
- void IAsyncContext::HasDone(HLERequestContext& ctx) {
- LOG_DEBUG(Service_ACC, "called");
- is_complete.store(IsComplete());
- IPC::ResponseBuilder rb{ctx, 3};
- rb.Push(ResultSuccess);
- rb.Push(is_complete.load());
- }
- void IAsyncContext::GetResult(HLERequestContext& ctx) {
- LOG_DEBUG(Service_ACC, "called");
- IPC::ResponseBuilder rb{ctx, 3};
- rb.Push(GetResult());
- }
- void IAsyncContext::MarkComplete() {
- is_complete.store(true);
- completion_event->Signal();
- }
- } // namespace Service::Account
|