uidevices/
resolver.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Resolver for UI devices.

use crate::keyboard::Keyboard;
use crate::mouse::Mouse;
use crate::video::Video;
use async_trait::async_trait;
use thiserror::Error;
use uidevices_resources::SynthKeyboardHandle;
use uidevices_resources::SynthMouseHandle;
use uidevices_resources::SynthVideoHandle;
use vm_resource::AsyncResolveResource;
use vm_resource::ResolveError;
use vm_resource::ResourceResolver;
use vm_resource::declare_static_async_resolver;
use vm_resource::kind::VmbusDeviceHandleKind;
use vmbus_channel::resources::ResolveVmbusDeviceHandleParams;
use vmbus_channel::resources::ResolvedVmbusDevice;
use vmbus_channel::simple::SimpleDeviceWrapper;

/// A resolver for [`SynthVideoHandle`], [`SynthKeyboardHandle`], and
/// [`SynthMouseHandle`].
pub struct VmbusUiResolver;

declare_static_async_resolver! {
    VmbusUiResolver,
    (VmbusDeviceHandleKind, SynthVideoHandle),
    (VmbusDeviceHandleKind, SynthKeyboardHandle),
    (VmbusDeviceHandleKind, SynthMouseHandle),
}

/// Error returned when resolving video device handles.
#[derive(Debug, Error)]
#[expect(missing_docs)]
pub enum VideoError {
    #[error("failed to create video device")]
    Video(#[source] anyhow::Error),
    #[error("failed to resolve framebuffer")]
    Framebuffer(#[source] ResolveError),
}

#[async_trait]
impl AsyncResolveResource<VmbusDeviceHandleKind, SynthVideoHandle> for VmbusUiResolver {
    type Output = ResolvedVmbusDevice;
    type Error = VideoError;

    async fn resolve(
        &self,
        resolver: &ResourceResolver,
        resource: SynthVideoHandle,
        input: ResolveVmbusDeviceHandleParams<'_>,
    ) -> Result<Self::Output, Self::Error> {
        let framebuffer = resolver
            .resolve(resource.framebuffer, ())
            .await
            .map_err(VideoError::Framebuffer)?;
        let device = SimpleDeviceWrapper::new(
            input.driver_source.simple(),
            Video::new(framebuffer.0).map_err(VideoError::Video)?,
        );
        Ok(device.into())
    }
}

/// Error returned when resolving input device handles.
#[derive(Debug, Error)]
#[expect(missing_docs)]
pub enum InputError {
    #[error("failed to resolve input source")]
    InputSource(#[source] ResolveError),
}

#[async_trait]
impl AsyncResolveResource<VmbusDeviceHandleKind, SynthKeyboardHandle> for VmbusUiResolver {
    type Output = ResolvedVmbusDevice;
    type Error = InputError;

    async fn resolve(
        &self,
        resolver: &ResourceResolver,
        resource: SynthKeyboardHandle,
        input: ResolveVmbusDeviceHandleParams<'_>,
    ) -> Result<Self::Output, Self::Error> {
        let source = resolver
            .resolve(resource.source, "synthkbd")
            .await
            .map_err(InputError::InputSource)?;
        let device =
            SimpleDeviceWrapper::new(input.driver_source.simple(), Keyboard::new(source.0));
        Ok(device.into())
    }
}

#[async_trait]
impl AsyncResolveResource<VmbusDeviceHandleKind, SynthMouseHandle> for VmbusUiResolver {
    type Output = ResolvedVmbusDevice;
    type Error = InputError;

    async fn resolve(
        &self,
        resolver: &ResourceResolver,
        resource: SynthMouseHandle,
        input: ResolveVmbusDeviceHandleParams<'_>,
    ) -> Result<Self::Output, Self::Error> {
        let source = resolver
            .resolve(resource.source, "synthmouse")
            .await
            .map_err(InputError::InputSource)?;
        let device = SimpleDeviceWrapper::new(input.driver_source.simple(), Mouse::new(source.0));
        Ok(device.into())
    }
}