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

//! A node which returns a PathBuf to the "magic path" where OpenVMM code
//! expects certain binary dependencies to be symlinked / extracted into.
//!
//! NOTE: This must remain a separate node, as out-of-tree pipelines will
//! override this node to specify a different magicpath when building openhcl
//! from an overlay repo!

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

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

new_flow_node!(struct Node);

impl FlowNode for Node {
    type Request = Request;

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

    fn emit(requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
        let repo_path = ctx.reqv(crate::git_checkout_openvmm_repo::req::GetRepoDir);

        ctx.emit_minor_rust_step("report openvmm magicpath dir", |ctx| {
            let repo_path = repo_path.claim(ctx);
            let requests = requests
                .into_iter()
                .map(|x| x.0.claim(ctx))
                .collect::<Vec<_>>();
            |rt| {
                let path = rt.read(repo_path).join(".packages");
                rt.write_all(requests, &path);
            }
        });

        Ok(())
    }
}