citra/src/core/hle/kernel/client_session.h

67 lines
1.7 KiB
C++
Raw Normal View History

// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <memory>
#include <string>
2019-08-11 21:29:00 +00:00
#include <boost/serialization/base_object.hpp>
#include <boost/serialization/export.hpp>
#include <boost/serialization/shared_ptr.hpp>
#include "common/common_types.h"
#include "core/hle/kernel/object.h"
#include "core/hle/result.h"
namespace Kernel {
class Session;
class Thread;
class ClientSession final : public Object {
public:
explicit ClientSession(KernelSystem& kernel);
~ClientSession() override;
2018-10-13 20:11:20 +00:00
friend class KernelSystem;
2016-12-01 04:28:31 +00:00
std::string GetTypeName() const override {
return "ClientSession";
}
2016-12-01 04:28:31 +00:00
std::string GetName() const override {
return name;
}
static constexpr HandleType HANDLE_TYPE = HandleType::ClientSession;
2016-12-01 04:28:31 +00:00
HandleType GetHandleType() const override {
return HANDLE_TYPE;
}
/**
* Sends an SyncRequest from the current emulated thread.
* @param thread Thread that initiated the request.
* @return ResultCode of the operation.
*/
ResultCode SendSyncRequest(std::shared_ptr<Thread> thread);
std::string name; ///< Name of client port (optional)
/// The parent session, which links to the server endpoint.
std::shared_ptr<Session> parent;
2019-08-11 21:29:00 +00:00
private:
friend class boost::serialization::access;
template <class Archive>
2019-12-27 21:07:29 +00:00
void serialize(Archive& ar, const unsigned int file_version) {
ar& boost::serialization::base_object<Object>(*this);
ar& name;
ar& parent;
2019-08-11 21:29:00 +00:00
}
};
} // namespace Kernel
2019-08-11 21:29:00 +00:00
BOOST_CLASS_EXPORT_KEY(Kernel::ClientSession)
CONSTRUCT_KERNEL_OBJECT(Kernel::ClientSession)