Send the graphics device info from streaming agent to the vd_agent

Adds the graphics device info from the streaming device(s) to the
VDAgentGraphicsDeviceInfo message sent to the vd_agent.

Signed-off-by: Lukáš Hrázký <lhrazky@redhat.com>
Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
Lukáš Hrázký 2018-12-14 11:19:46 +01:00
parent e032e93411
commit c8e949cea1
3 changed files with 86 additions and 2 deletions

View File

@ -346,6 +346,8 @@ handle_msg_device_display_info(StreamDevice *dev, SpiceCharDeviceInstance *sin)
dev->device_display_info.device_address,
dev->device_display_info.device_display_id);
reds_send_device_display_info(red_char_device_get_server(RED_CHAR_DEVICE(dev)));
return true;
}
@ -805,6 +807,22 @@ stream_device_init(StreamDevice *dev)
dev->msg_len = sizeof(*dev->msg);
}
StreamDeviceDisplayInfo *stream_device_get_device_display_info(StreamDevice *dev)
{
return &dev->device_display_info;
}
int32_t stream_device_get_stream_channel_id(StreamDevice *dev)
{
if (dev->stream_channel == NULL) {
return -1;
}
int32_t channel_id;
g_object_get(dev->stream_channel, "id", &channel_id, NULL);
return channel_id;
}
static StreamDevice *
stream_device_new(SpiceCharDeviceInstance *sin, RedsState *reds)
{

View File

@ -56,6 +56,13 @@ StreamDevice *stream_device_connect(RedsState *reds, SpiceCharDeviceInstance *si
*/
void stream_device_create_channel(StreamDevice *dev);
StreamDeviceDisplayInfo *stream_device_get_device_display_info(StreamDevice *dev);
/**
* Returns -1 if the StreamDevice doesn't have a channel yet.
*/
int32_t stream_device_get_stream_channel_id(StreamDevice *dev);
G_END_DECLS
#endif /* STREAM_DEVICE_H */

View File

@ -902,14 +902,33 @@ void reds_send_device_display_info(RedsState *reds)
}
g_debug("Sending device display info to the agent:");
size_t message_size = sizeof(VDAgentGraphicsDeviceInfo);
QXLInstance *qxl;
RedCharDevice *dev;
size_t message_size = sizeof(VDAgentGraphicsDeviceInfo);
// size for the qxl device info
FOREACH_QXL_INSTANCE(reds, qxl) {
message_size +=
(sizeof(VDAgentDeviceDisplayInfo) + strlen(red_qxl_get_device_address(qxl)) + 1) *
red_qxl_get_monitors_count(qxl);
}
// size for the stream device info
GLIST_FOREACH(reds->char_devices, RedCharDevice, dev) {
if (IS_STREAM_DEVICE(dev)) {
size_t device_address_len =
strlen(stream_device_get_device_display_info(STREAM_DEVICE(dev))->device_address);
if (device_address_len == 0) {
// the device info wasn't set (yet), don't send it
continue;
}
message_size += (sizeof(VDAgentDeviceDisplayInfo) + device_address_len + 1);
}
}
RedCharDeviceWriteBuffer *char_dev_buf = vdagent_new_write_buffer(reds->agent_dev,
VD_AGENT_GRAPHICS_DEVICE_INFO,
message_size,
@ -925,6 +944,8 @@ void reds_send_device_display_info(RedsState *reds)
graphics_device_info->count = 0;
VDAgentDeviceDisplayInfo *device_display_info = graphics_device_info->display_info;
// add the qxl devices to the message
FOREACH_QXL_INSTANCE(reds, qxl) {
for (size_t i = 0; i < red_qxl_get_monitors_count(qxl); ++i) {
device_display_info->channel_id = qxl->id;
@ -936,7 +957,45 @@ void reds_send_device_display_info(RedsState *reds)
device_display_info->device_address_len =
strlen((char*) device_display_info->device_address) + 1;
g_debug(" channel_id: %u monitor_id: %u, device_address: %s, device_display_id: %u",
g_debug(" (qxl) channel_id: %u monitor_id: %u, device_address: %s, device_display_id: %u",
device_display_info->channel_id,
device_display_info->monitor_id,
device_display_info->device_address,
device_display_info->device_display_id);
device_display_info = (VDAgentDeviceDisplayInfo*) ((char*) device_display_info +
sizeof(VDAgentDeviceDisplayInfo) + device_display_info->device_address_len);
graphics_device_info->count++;
}
}
// add the stream devices to the message
GLIST_FOREACH(reds->char_devices, RedCharDevice, dev) {
if (IS_STREAM_DEVICE(dev)) {
StreamDevice *stream_dev = STREAM_DEVICE(dev);
StreamDeviceDisplayInfo *info = stream_device_get_device_display_info(stream_dev);
size_t device_address_len = strlen(info->device_address);
if (device_address_len == 0) {
// the device info wasn't set (yet), don't send it
continue;
}
int32_t channel_id = stream_device_get_stream_channel_id(stream_dev);
if (channel_id == -1) {
g_warning("DeviceDisplayInfo set but no stream channel exists");
continue;
}
device_display_info->channel_id = channel_id;
device_display_info->monitor_id = info->stream_id;
device_display_info->device_display_id = info->device_display_id;
strcpy((char*) device_display_info->device_address, info->device_address);
device_display_info->device_address_len = device_address_len + 1;
g_debug(" (stream) channel_id: %u monitor_id: %u, device_address: %s, device_display_id: %u",
device_display_info->channel_id,
device_display_info->monitor_id,
device_display_info->device_address,