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

//! Artifact: `openhcl_boot` executable + debug symbols

/// Publish the artifact.
pub mod publish {
    use crate::build_openhcl_boot::OpenhclBootOutput;
    use flowey::node::prelude::*;

    flowey_request! {
        pub struct Request {
            pub openhcl_boot_bin: ReadVar<OpenhclBootOutput>,
            pub artifact_dir: ReadVar<PathBuf>,
            pub done: WriteVar<SideEffect>,
        }
    }

    new_simple_flow_node!(struct Node);

    impl SimpleFlowNode for Node {
        type Request = Request;

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

        fn process_request(request: Self::Request, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
            let Request {
                openhcl_boot_bin,
                artifact_dir,
                done,
            } = request;

            let files = openhcl_boot_bin.map(ctx, |OpenhclBootOutput { bin, dbg }| {
                vec![
                    ("openhcl_boot".into(), bin),
                    ("openhcl_boot.dbg".into(), dbg),
                ]
            });

            ctx.req(flowey_lib_common::copy_to_artifact_dir::Request {
                debug_label: "openhcl_boot".into(),
                files,
                artifact_dir,
                done,
            });

            Ok(())
        }
    }
}