2019-11-25 23:28:48 +00:00
|
|
|
// Copyright 2019 yuzu emulator team
|
2016-06-14 23:03:30 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "core/hle/kernel/client_session.h"
|
2017-06-05 04:52:19 +00:00
|
|
|
#include "core/hle/kernel/errors.h"
|
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
2016-06-14 23:03:30 +00:00
|
|
|
#include "core/hle/kernel/server_session.h"
|
2017-06-08 07:33:57 +00:00
|
|
|
#include "core/hle/kernel/session.h"
|
2017-06-29 17:30:34 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-12-31 23:09:41 +00:00
|
|
|
#include "core/hle/result.h"
|
2016-06-14 23:03:30 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2020-12-22 06:36:53 +00:00
|
|
|
ClientSession::ClientSession(KernelCore& kernel) : KSynchronizationObject{kernel} {}
|
2019-11-25 23:28:48 +00:00
|
|
|
|
2016-12-08 20:01:10 +00:00
|
|
|
ClientSession::~ClientSession() {
|
2016-12-14 17:33:49 +00:00
|
|
|
// This destructor will be called automatically when the last ClientSession handle is closed by
|
|
|
|
// the emulated application.
|
2019-11-25 23:28:48 +00:00
|
|
|
if (parent->Server()) {
|
|
|
|
parent->Server()->ClientDisconnected();
|
2017-01-05 04:23:17 +00:00
|
|
|
}
|
2016-12-08 20:01:10 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 21:36:39 +00:00
|
|
|
bool ClientSession::IsSignaled() const {
|
|
|
|
UNIMPLEMENTED();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-11-25 23:28:48 +00:00
|
|
|
ResultVal<std::shared_ptr<ClientSession>> ClientSession::Create(KernelCore& kernel,
|
|
|
|
std::shared_ptr<Session> parent,
|
|
|
|
std::string name) {
|
|
|
|
std::shared_ptr<ClientSession> client_session{std::make_shared<ClientSession>(kernel)};
|
|
|
|
|
|
|
|
client_session->name = std::move(name);
|
|
|
|
client_session->parent = std::move(parent);
|
|
|
|
|
|
|
|
return MakeResult(std::move(client_session));
|
|
|
|
}
|
|
|
|
|
2020-03-31 19:10:44 +00:00
|
|
|
ResultCode ClientSession::SendSyncRequest(std::shared_ptr<Thread> thread,
|
2020-09-14 18:03:10 +00:00
|
|
|
Core::Memory::Memory& memory,
|
|
|
|
Core::Timing::CoreTiming& core_timing) {
|
2019-11-25 23:28:48 +00:00
|
|
|
// Keep ServerSession alive until we're done working with it.
|
|
|
|
if (!parent->Server()) {
|
|
|
|
return ERR_SESSION_CLOSED_BY_REMOTE;
|
2019-11-25 23:17:08 +00:00
|
|
|
}
|
|
|
|
|
2019-11-25 23:28:48 +00:00
|
|
|
// Signal the server session that new data is available
|
2020-09-14 18:03:10 +00:00
|
|
|
return parent->Server()->HandleSyncRequest(std::move(thread), memory, core_timing);
|
2016-06-14 23:03:30 +00:00
|
|
|
}
|
|
|
|
|
2018-01-20 07:48:02 +00:00
|
|
|
} // namespace Kernel
|