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.
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
|
|
|
|
#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"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2016-12-03 04:58:02 +01:00
|
|
|
ClientSession::ClientSession() = default;
|
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.
|
|
|
|
SharedPtr<ServerSession> server = parent->server;
|
|
|
|
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-01-05 05:23:17 +01:00
|
|
|
// TODO(Subv): Force a wake up of all the ServerSession's waiting threads and set
|
|
|
|
// their WaitSynchronization result to 0xC920181A.
|
|
|
|
}
|
|
|
|
|
|
|
|
parent->client = nullptr;
|
2016-12-08 21:01:10 +01:00
|
|
|
}
|
|
|
|
|
2016-12-05 17:02:08 +01:00
|
|
|
ResultCode ClientSession::SendSyncRequest() {
|
2017-06-08 09:33:24 +02:00
|
|
|
// Keep ServerSession alive until we're done working with it.
|
|
|
|
SharedPtr<ServerSession> server = parent->server;
|
|
|
|
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
|
|
|
|
return server->HandleSyncRequest();
|
2016-06-15 01:03:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|