blob: 00f7dab4c97733683dac4b3d78fabaa3a84ea855 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include <ddktl/device.h>
#include <ddktl/protocol/platform/proxy.h>
#include <fbl/ref_ptr.h>
#include <fbl/vector.h>
#include <lib/zx/channel.h>
#include <lib/zx/handle.h>
#include "platform-proxy.h"
namespace platform_bus {
class ProxyClient;
using ProxyClientType = ddk::Device<ProxyClient>;
class ProxyClient : public ProxyClientType,
public ddk::PlatformProxyProtocol<ProxyClient, ddk::base_protocol> {
public:
explicit ProxyClient(uint32_t proto_id, zx_device_t* parent, fbl::RefPtr<PlatformProxy> proxy)
: ProxyClientType(parent), proto_id_(proto_id), proxy_(proxy) {}
static zx_status_t Create(uint32_t proto_id, zx_device_t* parent,
fbl::RefPtr<PlatformProxy> proxy);
// Device protocol implementation.
void DdkRelease();
// Platform proxy protocol implementation.
zx_status_t PlatformProxyRegisterProtocol(uint32_t proto_id, const void* protocol,
size_t protocol_size);
zx_status_t PlatformProxyProxy(
const void* req_buffer, size_t req_size, const zx_handle_t* req_handle_list,
size_t req_handle_count, void* out_resp_buffer, size_t resp_size, size_t* out_resp_actual,
zx_handle_t* out_resp_handle_list, size_t resp_handle_count,
size_t* out_resp_handle_actual);
private:
DISALLOW_COPY_ASSIGN_AND_MOVE(ProxyClient);
uint32_t proto_id_;
fbl::RefPtr<PlatformProxy> proxy_;
};
} // namespace platform_bus