summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/client_session.h
blob: c2fc0d7ddc691ed1c7b21648fb53146aaed1715f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <string>
#include <memory>

#include "common/common_types.h"

#include "core/hle/kernel/kernel.h"

namespace Service {
class Interface;
}

namespace Kernel {

class ClientPort;
class ServerSession;

class ClientSession final : public Object {
public:
    /**
     * Creates a client session.
     * @param server_session The server session associated with this client session
     * @param client_port The client port which this session is connected to
     * @param name Optional name of client session
     * @return The created client session
     */
    static ResultVal<SharedPtr<ClientSession>> Create(SharedPtr<ServerSession> server_session, SharedPtr<ClientPort> client_port, std::string name = "Unknown");

    std::string GetTypeName() const override { return "ClientSession"; }
    std::string GetName() const override { return name; }

    static const HandleType HANDLE_TYPE = HandleType::ClientSession;
    HandleType GetHandleType() const override { return HANDLE_TYPE; }

    /**
     * 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.
    SharedPtr<ClientPort> client_port;          ///< The client port which this session is connected to.
    std::shared_ptr<Service::Interface> hle_helper = nullptr; ///< HLE implementation of this port's request handler

private:
    ClientSession();
    ~ClientSession() override;
};

} // namespace