summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nvflinger/hos_binder_driver_server.h
blob: 8fddc120617b24ca73596efd85fe24b2562d7382 (plain) (tree)
1
2
                                                               
                                            


































                                                                         
// 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/nvflinger/binder.h"

namespace Core {
class System;
}

namespace Service::NVFlinger {

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::NVFlinger