underhill_core/
vmbus_relay_unit.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use inspect::Inspect;
use pal_async::task::Spawn;
use state_unit::NameInUse;
use state_unit::SpawnedUnit;
use state_unit::StateUnit;
use state_unit::UnitBuilder;
use state_unit::run_async_unit;
use vmbus_relay::HostVmbusTransport;
use vmcore::save_restore::RestoreError;
use vmcore::save_restore::SaveError;
use vmcore::save_restore::SavedStateBlob;

/// A handle to a vmbus relay that is registered as a state unit.
///
/// FUTURE: incorporate the state unit handling directly into [`HostVmbusTransport`].
pub struct VmbusRelayHandle {
    unit: SpawnedUnit<VmbusRelayUnit>,
}

impl VmbusRelayHandle {
    /// Makes a new handle, registering the server via `builder`.
    pub fn new(
        spawner: &impl Spawn,
        builder: UnitBuilder<'_>,
        relay: HostVmbusTransport,
    ) -> Result<Self, NameInUse> {
        let unit = builder.spawn(spawner, |recv| run_async_unit(VmbusRelayUnit(relay), recv))?;
        Ok(Self { unit })
    }

    /// Tears down the vmbus relay, leaving any host state untouched.
    pub async fn teardown(self) {
        self.unit.remove().await;
    }
}

/// A newtype over [`HostVmbusTransport`] implementing [`StateUnit`].
#[derive(Inspect)]
#[inspect(transparent)]
struct VmbusRelayUnit(HostVmbusTransport);

impl StateUnit for &'_ VmbusRelayUnit {
    async fn start(&mut self) {
        self.0.start();
    }

    async fn stop(&mut self) {
        self.0.stop().await;
    }

    async fn reset(&mut self) -> anyhow::Result<()> {
        Ok(())
    }

    async fn save(&mut self) -> Result<Option<SavedStateBlob>, SaveError> {
        Ok(Some(SavedStateBlob::new(self.0.save().await)))
    }

    async fn restore(&mut self, state: SavedStateBlob) -> Result<(), RestoreError> {
        self.0
            .restore(state.parse()?)
            .await
            .map_err(RestoreError::Other)
    }

    async fn post_restore(&mut self) -> anyhow::Result<()> {
        Ok(())
    }
}