summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvnflinger/binder.h
blob: 179938192ea127043e5aee4277b013ec0cdfbb44 (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
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-FileCopyrightText: Copyright 2014 The Android Open Source 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 <span>

#include "common/common_types.h"

namespace Kernel {
class KReadableEvent;
} // namespace Kernel

namespace Service {
class HLERequestContext;
}

namespace Service::android {

enum class TransactionId {
    RequestBuffer = 1,
    SetBufferCount = 2,
    DequeueBuffer = 3,
    DetachBuffer = 4,
    DetachNextBuffer = 5,
    AttachBuffer = 6,
    QueueBuffer = 7,
    CancelBuffer = 8,
    Query = 9,
    Connect = 10,
    Disconnect = 11,
    AllocateBuffers = 13,
    SetPreallocatedBuffer = 14,
    GetBufferHistory = 17,
};

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

} // namespace Service::android