summaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvnflinger/binder.h
blob: 6928a81ecea12879bc376d5fd3ba369d3efd6217 (plain)
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
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-FileCopyrightText: Copyright 2014 The Android Open Source Project
// SPDX-FileCopyrightText: Copyright 2025 citron Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// Parts of this implementation were based on:
// https://cs.android.com/android/platform/superproject/+/android-5.1.1_r38:frameworks/native/include/binder/IBinder.h

#pragma once

#include <atomic>
#include <span>

#include "common/common_types.h"

namespace Kernel {
class KReadableEvent;
} // namespace Kernel

namespace Service {
class HLERequestContext;
}

namespace Service::android {

class IBinder {
public:
    virtual ~IBinder() = default;
    virtual void Transact(u32 code, std::span<const u8> parcel_data, std::span<u8> parcel_reply,
                          u32 flags) = 0;
    virtual Kernel::KReadableEvent* GetNativeHandle(u32 type_id) = 0;

    virtual void AdjustWeakRefcount(s32 addval) = 0;
    virtual void AdjustStrongRefcount(s32 addval) = 0;
};

class Binder {
public:
    void AdjustWeakRefcount(s32 addval) {
        m_weak_ref_count += addval;
    }

    void AdjustStrongRefcount(s32 addval) {
        m_strong_ref_count += addval;
    }

private:
    std::atomic<s32> m_weak_ref_count{};
    std::atomic<s32> m_strong_ref_count{};
};

} // namespace Service::android