2016-06-14 23:03:30 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2016-06-18 18:39:26 +00:00
|
|
|
#include <memory>
|
2016-06-14 23:03:30 +00:00
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
class ServerSession;
|
|
|
|
|
|
|
|
class ClientSession final : public Object {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Creates a client session.
|
|
|
|
* @param server_session The server session associated with this client session
|
|
|
|
* @param name Optional name of client session
|
|
|
|
* @return The created client session
|
|
|
|
*/
|
2016-12-01 03:50:13 +00:00
|
|
|
static ResultVal<SharedPtr<ClientSession>> Create(SharedPtr<ServerSession> server_session, std::string name = "Unknown");
|
2016-06-14 23:03:30 +00:00
|
|
|
|
2016-12-01 04:28:31 +00:00
|
|
|
std::string GetTypeName() const override {
|
|
|
|
return "ClientSession";
|
|
|
|
}
|
|
|
|
std::string GetName() const override {
|
|
|
|
return name;
|
|
|
|
}
|
2016-06-14 23:03:30 +00:00
|
|
|
|
|
|
|
static const HandleType HANDLE_TYPE = HandleType::ClientSession;
|
2016-12-01 04:28:31 +00:00
|
|
|
HandleType GetHandleType() const override {
|
|
|
|
return HANDLE_TYPE;
|
|
|
|
}
|
2016-06-14 23:03:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a SyncRequest from the emulated application.
|
|
|
|
* @return ResultCode of the operation.
|
|
|
|
*/
|
|
|
|
ResultCode HandleSyncRequest();
|
|
|
|
|
|
|
|
std::string name; ///< Name of client port (optional)
|
|
|
|
SharedPtr<ServerSession> server_session; ///< The server session associated with this client session.
|
|
|
|
|
|
|
|
private:
|
|
|
|
ClientSession();
|
|
|
|
~ClientSession() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|