2016-06-15 01:03:30 +02:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-08-11 23:29:00 +02:00
|
|
|
#include "common/archives.h"
|
2019-12-27 22:07:29 +01:00
|
|
|
#include "common/assert.h"
|
2016-06-15 01:03:30 +02:00
|
|
|
#include "core/hle/kernel/client_session.h"
|
2017-06-05 06:52:19 +02:00
|
|
|
#include "core/hle/kernel/errors.h"
|
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
2016-06-15 01:03:30 +02:00
|
|
|
#include "core/hle/kernel/server_session.h"
|
2017-06-08 09:33:57 +02:00
|
|
|
#include "core/hle/kernel/session.h"
|
2017-06-29 19:30:34 +02:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2016-06-15 01:03:30 +02:00
|
|
|
|
2019-08-11 23:29:00 +02:00
|
|
|
SERIALIZE_EXPORT_IMPL(Kernel::ClientSession)
|
|
|
|
|
2016-06-15 01:03:30 +02:00
|
|
|
namespace Kernel {
|
|
|
|
|
2019-12-27 19:52:33 +01:00
|
|
|
ClientSession::ClientSession(KernelSystem& kernel) : Object(kernel) {}
|
2016-12-08 21:01:10 +01:00
|
|
|
ClientSession::~ClientSession() {
|
2016-12-14 18:33:49 +01:00
|
|
|
// This destructor will be called automatically when the last ClientSession handle is closed by
|
|
|
|
// the emulated application.
|
2016-06-15 01:03:30 +02:00
|
|
|
|
2017-06-08 09:33:24 +02:00
|
|
|
// Local references to ServerSession and SessionRequestHandler are necessary to guarantee they
|
|
|
|
// will be kept alive until after ClientDisconnected() returns.
|
2019-03-23 21:04:19 +01:00
|
|
|
std::shared_ptr<ServerSession> server = SharedFrom(parent->server);
|
2017-06-08 09:33:24 +02:00
|
|
|
if (server) {
|
|
|
|
std::shared_ptr<SessionRequestHandler> hle_handler = server->hle_handler;
|
|
|
|
if (hle_handler)
|
|
|
|
hle_handler->ClientDisconnected(server);
|
2016-12-08 21:01:10 +01:00
|
|
|
|
2017-06-26 03:14:04 +02:00
|
|
|
// Clean up the list of client threads with pending requests, they are unneeded now that the
|
|
|
|
// client endpoint is closed.
|
|
|
|
server->pending_requesting_threads.clear();
|
|
|
|
server->currently_handling = nullptr;
|
2017-01-05 05:23:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
parent->client = nullptr;
|
2017-11-07 05:07:08 +01:00
|
|
|
|
|
|
|
if (server) {
|
|
|
|
// Notify any threads waiting on the ServerSession that the endpoint has been closed. Note
|
|
|
|
// that this call has to happen after `Session::client` has been set to nullptr to let the
|
|
|
|
// ServerSession know that the client endpoint has been closed.
|
|
|
|
server->WakeupAllWaitingThreads();
|
|
|
|
}
|
2016-12-08 21:01:10 +01:00
|
|
|
}
|
|
|
|
|
2019-03-23 21:04:19 +01:00
|
|
|
ResultCode ClientSession::SendSyncRequest(std::shared_ptr<Thread> thread) {
|
2017-06-08 09:33:24 +02:00
|
|
|
// Keep ServerSession alive until we're done working with it.
|
2019-03-23 21:04:19 +01:00
|
|
|
std::shared_ptr<ServerSession> server = SharedFrom(parent->server);
|
2017-06-08 09:33:24 +02:00
|
|
|
if (server == nullptr)
|
|
|
|
return ERR_SESSION_CLOSED_BY_REMOTE;
|
2017-01-05 05:23:17 +01:00
|
|
|
|
2017-06-08 09:33:24 +02:00
|
|
|
// Signal the server session that new data is available
|
2017-06-29 19:30:34 +02:00
|
|
|
return server->HandleSyncRequest(std::move(thread));
|
2016-06-15 01:03:30 +02:00
|
|
|
}
|
|
|
|
|
2018-03-09 18:54:43 +01:00
|
|
|
} // namespace Kernel
|