summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_session.cpp
blob: ca1cf18cd016d7c6a10dd818e7dd00771b2e2423 (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
57
58
59
60
61
62
63
64
65
66
67
// Copyright 2019 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/assert.h"
#include "core/hle/kernel/k_client_session.h"
#include "core/hle/kernel/k_scoped_resource_reservation.h"
#include "core/hle/kernel/k_server_session.h"
#include "core/hle/kernel/k_session.h"

namespace Kernel {

KSession::KSession(KernelCore& kernel)
    : KAutoObjectWithSlabHeapAndContainer{kernel}, server{kernel}, client{kernel} {}
KSession::~KSession() = default;

void KSession::Initialize(std::string&& name_) {
    // Increment reference count.
    // Because reference count is one on creation, this will result
    // in a reference count of two. Thus, when both server and client are closed
    // this object will be destroyed.
    Open();

    // Create our sub sessions.
    KAutoObject::Create(std::addressof(server));
    KAutoObject::Create(std::addressof(client));

    // Initialize our sub sessions.
    server.Initialize(this, name_ + ":Server");
    client.Initialize(this, name_ + ":Client");

    // Set state and name.
    SetState(State::Normal);
    name = std::move(name_);

    // Set our owner process.
    process = kernel.CurrentProcess();
    process->Open();

    // Mark initialized.
    initialized = true;
}

void KSession::Finalize() {}

void KSession::OnServerClosed() {
    if (GetState() == State::Normal) {
        SetState(State::ServerClosed);
        client.OnServerClosed();
    }
}

void KSession::OnClientClosed() {
    if (GetState() == State::Normal) {
        SetState(State::ClientClosed);
        server.OnClientClosed();
    }
}

void KSession::PostDestroy(uintptr_t arg) {
    // Release the session count resource the owner process holds.
    Process* owner = reinterpret_cast<Process*>(arg);
    owner->GetResourceLimit()->Release(LimitableResource::Sessions, 1);
    owner->Close();
}

} // namespace Kernel