43#define IPC_TRACE(d, ...) U_LOG_IFL_T(d->log_level, __VA_ARGS__)
44#define IPC_DEBUG(d, ...) U_LOG_IFL_D(d->log_level, __VA_ARGS__)
45#define IPC_INFO(d, ...) U_LOG_IFL_I(d->log_level, __VA_ARGS__)
46#define IPC_WARN(d, ...) U_LOG_IFL_W(d->log_level, __VA_ARGS__)
47#define IPC_ERROR(d, ...) U_LOG_IFL_E(d->log_level, __VA_ARGS__)
49#define IPC_CHK_AND_RET(S, ...) U_LOG_CHK_AND_RET((S)->log_level, __VA_ARGS__)
50#define IPC_CHK_WITH_GOTO(S, ...) U_LOG_CHK_WITH_GOTO((S)->log_level, __VA_ARGS__)
51#define IPC_CHK_WITH_RET(S, ...) U_LOG_CHK_WITH_RET((S)->log_level, __VA_ARGS__)
52#define IPC_CHK_ONLY_PRINT(S, ...) U_LOG_CHK_ONLY_PRINT((S)->log_level, __VA_ARGS__)
53#define IPC_CHK_ALWAYS_RET(S, ...) U_LOG_CHK_ALWAYS_RET((S)->log_level, __VA_ARGS__)
62#define IPC_MAX_CLIENT_HAND_TRACKERS 16
63#define IPC_MAX_CLIENT_SEMAPHORES 8
64#define IPC_MAX_CLIENT_SWAPCHAINS (XRT_MAX_LAYERS * 2)
65#define IPC_MAX_CLIENT_SPACES 128
66#define IPC_MAX_CLIENT_FUTURES 128
187 uint64_t plane_detection_size;
188 uint64_t plane_detection_count;
196 int server_thread_index;
212 volatile enum ipc_thread_state state;
229#if defined(XRT_OS_ANDROID) || defined(XRT_OS_LINUX) || defined(XRT_DOXYGEN)
234#if defined(XRT_OS_ANDROID) || defined(XRT_DOXYGEN)
293#define XRT_IPC_GOT_IMPL
296#if (defined(XRT_OS_LINUX) && !defined(XRT_OS_ANDROID)) || defined(XRT_DOXYGEN)
313#define XRT_IPC_GOT_IMPL
316#if defined(XRT_OS_WINDOWS) || defined(XRT_DOXYGEN)
330#define XRT_IPC_GOT_IMPL
333#ifndef XRT_IPC_GOT_IMPL
375 struct u_debug_gui *debug_gui;
394 volatile bool running;
397 bool exit_on_disconnect;
403 uint64_t last_client_disconnect_ns;
406 uint64_t exit_when_idle_delay_ns;
425 volatile uint32_t current_slot_index;
432 int active_client_index;
433 int last_active_client_index;
436 uint32_t connected_client_count;
463 bool *out_available);
559ipc_server_handle_failure(
struct ipc_server *vs);
568ipc_server_handle_shutdown_signal(
struct ipc_server *vs);
586 return ics->
server->isms[ics->server_thread_index];
595 return ics->ism_handle;
Generic typedef for platform-specific shared memory handle.
u_logging_level
Logging level enum.
Definition u_logging.h:45
xrt_result_t ipc_server_set_client_io_blocks(struct ipc_server *s, uint32_t client_id, const struct ipc_client_io_blocks *blocks)
Block certain types of IO for this client.
Definition ipc_server_process.c:749
xrt_result_t ipc_server_get_client_app_state(struct ipc_server *s, uint32_t client_id, struct ipc_app_state *out_ias)
Get the current state of a client.
Definition ipc_server_process.c:719
void ipc_server_deactivate_session(volatile struct ipc_client_state *ics)
Called by client threads to set a session to deactivate.
Definition ipc_server_process.c:790
void ipc_server_activate_session(volatile struct ipc_client_state *ics)
Called by client threads to set a session to active.
Definition ipc_server_process.c:759
void * ipc_server_client_thread(void *_ics)
Thread function for the client side dispatching.
Definition ipc_server_per_client_thread.c:450
void ipc_server_update_state(struct ipc_server *s)
Called by client threads to recalculate active client.
Definition ipc_server_process.c:805
xrt_result_t ipc_server_set_active_client(struct ipc_server *s, uint32_t client_id)
Set the new active client.
Definition ipc_server_process.c:729
xrt_result_t ipc_server_toggle_io_client(struct ipc_server *s, uint32_t client_id)
Toggle the io for this client.
Definition ipc_server_process.c:739
xrt_result_t ipc_server_init_system_if_available_locked(struct ipc_server *s, volatile struct ipc_client_state *ics, bool *out_available)
Finish setting up the server by creating the system, compositor and devices.
Definition ipc_server_process.c:683
#define XRT_SYSTEM_MAX_DEVICES
Maximum number of devices simultaneously usable by an implementation of xrt_system_devices.
Definition xrt_limits.h:26
#define XRT_SPACE_REFERENCE_TYPE_COUNT
The number of enumerations in xrt_reference_space_type.
Definition xrt_defines.h:638
enum xrt_result xrt_result_t
Result type used across Monado.
IPC message channel functions.
Common protocol definition.
void ipc_server_client_destroy_session_and_compositor(volatile struct ipc_client_state *ics)
This destroys the native compositor for this client and any extra objects created from it,...
Definition ipc_server_per_client_thread.c:413
static struct ipc_shared_memory * get_ism(volatile struct ipc_client_state *ics)
Get the data in the shared memory of the given client.
Definition ipc_server.h:584
static xrt_shmem_handle_t get_ism_handle(volatile struct ipc_client_state *ics)
Get the handle for the shared memory of the given client.
Definition ipc_server.h:593
Interface for IPC server code.
void ipc_server_mainloop_deinit(struct ipc_server_mainloop *ml)
Definition ipc_server_mainloop_android.c:160
Wrapper around OS threading native functions.
State for a connected application.
Definition ipc_protocol.h:370
Which types of IO to block for a client.
Definition ipc_protocol.h:357
Holds the state for a single client.
Definition ipc_server.h:96
uint32_t swapchain_count
Number of swapchains in use by client.
Definition ipc_server.h:136
struct xrt_swapchain * xscs[(XRT_MAX_LAYERS *2)]
Ptrs to the swapchains.
Definition ipc_server.h:139
struct xrt_session * xs
Session for this client.
Definition ipc_server.h:130
struct ipc_message_channel imc
Socket fd used for client comms.
Definition ipc_server.h:182
bool has_init_shm_system
Has the system part of the shm initialized.
Definition ipc_server.h:101
struct xrt_device ** plane_detection_xdev
Array of xrt_devices with plane_detection_size entries.
Definition ipc_server.h:194
struct ipc_server * server
Link back to the main server.
Definition ipc_server.h:98
uint32_t local_floor_space_index
Index of localfloorspace in ipc client.
Definition ipc_server.h:168
struct ipc_swapchain_data swapchain_data[(XRT_MAX_LAYERS *2)]
Data for the swapchains.
Definition ipc_server.h:142
uint32_t compositor_semaphore_count
Number of compositor semaphores in use by client.
Definition ipc_server.h:145
struct xrt_tracking_origin * xtracks[XRT_SYSTEM_MAX_DEVICES]
Array of tracking origins.
Definition ipc_server.h:112
uint32_t local_space_overseer_index
Index of localspace in space overseer.
Definition ipc_server.h:166
struct xrt_space * xspcs[128]
Ptrs to the spaces.
Definition ipc_server.h:173
uint32_t local_space_index
Index of localspace in ipc client.
Definition ipc_server.h:164
bool ref_space_used[XRT_SPACE_REFERENCE_TYPE_COUNT]
Which of the references spaces is the client using.
Definition ipc_server.h:176
struct xrt_compositor_semaphore * xcsems[8]
Ptrs to the semaphores.
Definition ipc_server.h:148
uint32_t space_count
Number of spaces.
Definition ipc_server.h:162
bool device_feature_used[XRT_DEVICE_FEATURE_MAX_ENUM]
Which of the device features is the client using.
Definition ipc_server.h:179
uint64_t * plane_detection_ids
Array of plane detection ids with plane_detection_size entries.
Definition ipc_server.h:191
uint32_t local_floor_space_overseer_index
Index of localfloorspace in space overseer.
Definition ipc_server.h:170
struct xrt_device * xdevs[XRT_SYSTEM_MAX_DEVICES]
Array of devices.
Definition ipc_server.h:121
struct xrt_compositor * xc
Compositor for this client.
Definition ipc_server.h:133
struct xrt_hand_tracker * xhts[16]
Hand trackers owned by this client.
Definition ipc_server.h:126
struct xrt_future * xfts[128]
Ptrs to the futures.
Definition ipc_server.h:151
Wrapper for a socket and flags.
Definition ipc_message_channel.h:30
Definition ipc_server_interface.h:52
Platform-specific mainloop object for the IPC server.
Definition ipc_server.h:227
bool launched_by_socket
Were we launched by socket activation, instead of explicitly?
Definition ipc_server.h:306
pthread_cond_t accept_cond
Condition variable for accepting clients.
Definition ipc_server.h:278
char * pipe_name
Name of the Pipe that we accept connections on.
Definition ipc_server.h:326
int last_accepted_fd
The last client fd we accepted, to acknowledge client acceptance.
Definition ipc_server.h:269
int epoll_fd
For waiting on various events in the main thread.
Definition ipc_server.h:231
pthread_mutex_t accept_mutex
Mutex for accepting clients.
Definition ipc_server.h:289
int pipe_read
File descriptor for the read end of our pipe for submitting new clients.
Definition ipc_server.h:241
int listen_socket
Socket that we accept connections on.
Definition ipc_server.h:303
int pipe_write
File descriptor for the write end of our pipe for submitting new clients.
Definition ipc_server.h:248
char * socket_filename
The socket filename we bound to, if any.
Definition ipc_server.h:309
pthread_mutex_t client_push_mutex
Mutex for being able to register oneself as a new client.
Definition ipc_server.h:259
HANDLE pipe_handle
Named Pipe that we accept connections on.
Definition ipc_server.h:323
Main IPC object for the server.
Definition ipc_server.h:369
void * callback_data
User data passed to callbacks.
Definition ipc_server.h:449
struct u_process * process
Handle for the current process, e.g. pidfile on linux.
Definition ipc_server.h:373
const struct ipc_server_callbacks * callbacks
Callbacks for server events.
Definition ipc_server.h:444
struct xrt_system_compositor * xsysc
System compositor.
Definition ipc_server.h:387
struct xrt_space_overseer * xso
Space overseer.
Definition ipc_server.h:384
uint32_t id_generator
Generator for IDs.
Definition ipc_server.h:428
struct xrt_system * xsys
The XRT interfaces level system.
Definition ipc_server.h:378
struct xrt_system_devices * xsysd
System devices.
Definition ipc_server.h:381
int64_t start_of_time_timestamp_ns
Global start of time timestamp.
Definition ipc_server.h:419
bool no_stdin
Disable listening on stdin for server stop.
Definition ipc_server.h:452
A big struct that contains all data that is shared to a client, no pointers allowed in this.
Definition ipc_protocol.h:258
Information about a single swapchain.
Definition ipc_server.h:80
Definition ipc_server.h:210
A wrapper around a native mutex.
Definition os_threading.h:69
A wrapper around a native thread.
Definition os_threading.h:298
Definition u_process.c:43
Main compositor server interface.
Definition xrt_compositor.h:2274
Compositor semaphore used for synchronization, needs to be as capable as a Vulkan pipeline semaphore.
Definition xrt_compositor.h:829
Common compositor client interface/base.
Definition xrt_compositor.h:1030
A single HMD or input device.
Definition xrt_device.h:311
A future is a concurrency primitive that provides a mechanism to access results of asynchronous opera...
Definition xrt_future.h:75
A hand tracker that owns device/source selection policy.
Definition xrt_hand_tracker.h:76
This interface acts as a root object for Monado.
Definition xrt_instance.h:121
The XRT representation of XrSession, this object does not have all of the functionality of a session,...
Definition xrt_session.h:277
Object that oversees and manages spaces, one created for each XR system.
Definition xrt_space.h:97
A space very similar to a OpenXR XrSpace but not a full one-to-one mapping, but used to power XrSpace...
Definition xrt_space.h:32
Common swapchain interface/base.
Definition xrt_compositor.h:577
The system compositor handles composition for a system.
Definition xrt_compositor.h:2502
A collection of xrt_device, and an interface for identifying the roles they have been assigned.
Definition xrt_system.h:215
Properties provided by the system.
Definition xrt_system.h:45
A system is a collection of devices, policies and optionally a compositor that is organised into a ch...
Definition xrt_system.h:64
A tracking system or device origin.
Definition xrt_tracking.h:78
Hashmap for integer values header.
Basic logging functionality.
Header holding common defines.
int xrt_ipc_handle_t
The type for an IPC handle.
Definition xrt_handles.h:75
Header for limits of the XRT interfaces.
Header defining xrt space and space overseer.
Header for system objects.