2016-06-14 19:03:30 -04:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "core/hle/kernel/client_session.h"
|
2017-06-05 00:52:19 -04:00
|
|
|
#include "core/hle/kernel/errors.h"
|
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
2016-06-14 19:03:30 -04:00
|
|
|
#include "core/hle/kernel/server_session.h"
|
2017-06-08 03:33:57 -04:00
|
|
|
#include "core/hle/kernel/session.h"
|
2017-06-29 13:30:34 -04:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-12-31 18:09:41 -05:00
|
|
|
#include "core/hle/result.h"
|
2016-06-14 19:03:30 -04:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2018-08-28 12:30:33 -04:00
|
|
|
ClientSession::ClientSession(KernelCore& kernel) : Object{kernel} {}
|
2016-12-08 15:01:10 -05:00
|
|
|
ClientSession::~ClientSession() {
|
2016-12-14 12:33:49 -05:00
|
|
|
// This destructor will be called automatically when the last ClientSession handle is closed by
|
|
|
|
// the emulated application.
|
2019-11-24 20:15:51 -05:00
|
|
|
if (parent->server) {
|
|
|
|
parent->server->ClientDisconnected();
|
2017-01-04 23:23:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
parent->client = nullptr;
|
2016-12-08 15:01:10 -05:00
|
|
|
}
|
|
|
|
|
2019-11-24 20:15:51 -05:00
|
|
|
ResultCode ClientSession::SendSyncRequest(Thread* thread) {
|
2017-06-08 03:33:24 -04:00
|
|
|
// Keep ServerSession alive until we're done working with it.
|
2019-11-24 20:15:51 -05:00
|
|
|
if (parent->server == nullptr)
|
2017-06-08 03:33:24 -04:00
|
|
|
return ERR_SESSION_CLOSED_BY_REMOTE;
|
2017-01-04 23:23:17 -05:00
|
|
|
|
2017-06-08 03:33:24 -04:00
|
|
|
// Signal the server session that new data is available
|
2019-11-24 20:15:51 -05:00
|
|
|
return parent->server->HandleSyncRequest(SharedFrom(thread));
|
2016-06-14 19:03:30 -04:00
|
|
|
}
|
|
|
|
|
2018-01-20 02:48:02 -05:00
|
|
|
} // namespace Kernel
|