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

//! Tweak `.cargo/config.toml` to deny warnings.

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

flowey_request! {
    pub enum Request {
        DenyWarnings(bool),
        Done(WriteVar<SideEffect>),
    }
}

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 mut done = Vec::new();
        let mut deny_warnings = None;

        for req in requests {
            match req {
                Request::Done(v) => done.push(v),
                Request::DenyWarnings(v) => {
                    same_across_all_reqs("DenyWarnings", &mut deny_warnings, v)?
                }
            }
        }

        let deny_warnings =
            deny_warnings.ok_or(anyhow::anyhow!("Missing essential request: DenyWarnings"))?;

        // -- end of req processing -- //

        if done.is_empty() {
            return Ok(());
        }

        if !deny_warnings {
            ctx.emit_side_effect_step([], done);
            return Ok(());
        }

        let openvmm_repo_path = ctx.reqv(crate::git_checkout_openvmm_repo::req::GetRepoDir);

        ctx.emit_rust_step("set '-Dwarnings' in .cargo/config.toml", move |ctx| {
            done.claim(ctx);
            let openvmm_repo_path = openvmm_repo_path.claim(ctx);
            move |rt| {
                let path = rt.read(openvmm_repo_path).join(".cargo/config.toml");
                let data = fs_err::read_to_string(&path)?;
                let data = data.replace("### ENABLE_IN_CI", "");
                fs_err::write(path, data)?;
                Ok(())
            }
        });

        Ok(())
    }
}