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

//! Globally install a set of dependencies required to build Rust code in the
//! OpenVMM repo.
//!
//! Notably - this node installs both the required Rust toolchain, as well as a
//! protobuf compiler (which is transitively required by most OpenVMM crates).

use flowey::node::prelude::*;

flowey_request! {
    pub struct Request(pub WriteVar<SideEffect>);
}

new_flow_node!(struct Node);

impl FlowNode for Node {
    type Request = Request;

    fn imports(ctx: &mut ImportCtx<'_>) {
        ctx.import::<crate::init_openvmm_magicpath_protoc::Node>();
        ctx.import::<crate::init_openvmm_cargo_config_deny_warnings::Node>();
        ctx.import::<flowey_lib_common::install_rust::Node>();
    }

    fn emit(requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
        if requests.is_empty() {
            return Ok(());
        }

        let side_effects = [
            ctx.reqv(crate::init_openvmm_cargo_config_deny_warnings::Request::Done),
            ctx.reqv(crate::init_openvmm_magicpath_protoc::Request),
            ctx.reqv(flowey_lib_common::install_rust::Request::EnsureInstalled),
        ];

        ctx.emit_side_effect_step(side_effects, requests.into_iter().map(|x| x.0));

        Ok(())
    }
}