mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-27 09:01:46 +00:00
90 lines
2 KiB
C
90 lines
2 KiB
C
// Copyright 2020, Collabora, Ltd.
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
/*!
|
|
* @file
|
|
* @brief Common client side code.
|
|
* @author Pete Black <pblack@collabora.com>
|
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
|
* @ingroup ipc_client
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "xrt/xrt_compiler.h"
|
|
#include "xrt/xrt_config_os.h"
|
|
#include "shared/ipc_protocol.h"
|
|
#include "shared/ipc_utils.h"
|
|
|
|
#include "util/u_threading.h"
|
|
#include "util/u_logging.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
/*
|
|
*
|
|
* Logging
|
|
*
|
|
*/
|
|
|
|
#define IPC_TRACE(d, ...) U_LOG_IFL_T(d->ll, __VA_ARGS__)
|
|
#define IPC_DEBUG(d, ...) U_LOG_IFL_D(d->ll, __VA_ARGS__)
|
|
#define IPC_INFO(d, ...) U_LOG_IFL_I(d->ll, __VA_ARGS__)
|
|
#define IPC_WARN(d, ...) U_LOG_IFL_W(d->ll, __VA_ARGS__)
|
|
#define IPC_ERROR(d, ...) U_LOG_IFL_E(d->ll, __VA_ARGS__)
|
|
|
|
/*
|
|
*
|
|
* Structs
|
|
*
|
|
*/
|
|
|
|
struct xrt_compositor_native;
|
|
|
|
|
|
/*!
|
|
* Connection.
|
|
*/
|
|
struct ipc_connection
|
|
{
|
|
struct ipc_message_channel imc;
|
|
|
|
struct ipc_shared_memory *ism;
|
|
xrt_shmem_handle_t ism_handle;
|
|
|
|
struct os_mutex mutex;
|
|
|
|
#ifdef XRT_OS_ANDROID
|
|
struct ipc_client_android *ica;
|
|
#endif // XRT_OS_ANDROID
|
|
|
|
enum u_logging_level ll;
|
|
};
|
|
|
|
/*
|
|
*
|
|
* Internal functions.
|
|
*
|
|
*/
|
|
|
|
/*!
|
|
* Create an IPC client system compositor.
|
|
*
|
|
* @param ipc_c IPC connection
|
|
* @param xina Optional native image allocator for client-side allocation. Takes
|
|
* ownership if one is supplied.
|
|
* @param xdev Taken in but not used currently @todo remove this param?
|
|
* @param[out] out_xcs Pointer to receive the created xrt_system_compositor.
|
|
*/
|
|
int
|
|
ipc_client_create_system_compositor(struct ipc_connection *ipc_c,
|
|
struct xrt_image_native_allocator *xina,
|
|
struct xrt_device *xdev,
|
|
struct xrt_system_compositor **out_xcs);
|
|
|
|
struct xrt_device *
|
|
ipc_client_hmd_create(struct ipc_connection *ipc_c, struct xrt_tracking_origin *xtrack, uint32_t device_id);
|
|
|
|
struct xrt_device *
|
|
ipc_client_device_create(struct ipc_connection *ipc_c, struct xrt_tracking_origin *xtrack, uint32_t device_id);
|