summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nvnflinger/hos_binder_driver_server.h
blob: 58bb9469ad52844ae9e557c6a0492c954d2eb589 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                               
                                            








                                            
                                               




                
                               

















                                                                         
                                  
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include <memory>
#include <mutex>
#include <unordered_map>

#include "common/common_types.h"
#include "core/hle/service/kernel_helpers.h"
#include "core/hle/service/nvnflinger/binder.h"

namespace Core {
class System;
}

namespace Service::Nvnflinger {

class HosBinderDriverServer final {
public:
    explicit HosBinderDriverServer(Core::System& system_);
    ~HosBinderDriverServer();

    u64 RegisterProducer(std::unique_ptr<android::IBinder>&& binder);

    android::IBinder* TryGetProducer(u64 id);

private:
    KernelHelpers::ServiceContext service_context;

    std::unordered_map<u64, std::unique_ptr<android::IBinder>> producers;
    std::mutex lock;
    u64 last_id{};
};

} // namespace Service::Nvnflinger