flowey_lib_common/
check_needs_relaunch.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Check if shell must be relaunched to refresh environment variables

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

new_simple_flow_node!(struct Node);

#[derive(Serialize, Deserialize)]
pub enum BinOrEnv {
    Bin(String),
    Env(String, String),
}

flowey_request! {
    pub struct Params {
        /// Ensure requested binary is available on path or environment variable contains expected value
        pub check: ReadVar<Option<BinOrEnv>>,
        pub done: Vec<WriteVar<SideEffect>>,
    }
}

impl SimpleFlowNode for Node {
    type Request = Params;

    fn imports(_dep: &mut ImportCtx<'_>) {
        // no deps
    }

    fn process_request(request: Self::Request, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
        if !matches!(ctx.backend(), FlowBackend::Local) {
            anyhow::bail!("only supported on the local backend at this time");
        }

        let Params { check, done } = request;

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

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

        let check_install = {
            move |_: &mut RustRuntimeServices<'_>, bin: &String| {
                if which::which(bin).is_err() {
                    anyhow::bail!(format!("did not find {} on $PATH", bin));
                }

                anyhow::Ok(())
            }
        };

        let check_env = {
            move |_: &mut RustRuntimeServices<'_>, env: &String, expected: &String| {
                let sh = xshell::Shell::new()?;
                let env = sh.var(env)?;

                if !env.contains(expected) {
                    anyhow::bail!(format!("did not find '{}' in {}", expected, env));
                }

                anyhow::Ok(())
            }
        };

        ctx.emit_rust_step("ensure binaries are available on path", move |ctx| {
            done.claim(ctx);
            let check = check.claim(ctx);

            move |rt| {
                let check = rt.read(check);
                if check.is_none() {
                    return Ok(());
                }

                let check = check.unwrap();
                if match check {
                    BinOrEnv::Bin(bin) => {
                        check_install(rt, &bin)
                    }
                    BinOrEnv::Env(env, expected) => {
                        check_env(rt, &env, &expected)
                    }
                }.is_err() {
                    let args = std::env::args().collect::<Vec<_>>().join(" ");
                    anyhow::bail!("To ensure installed dependencies are available on your $PATH, please restart your shell, and re-run: `{args}`");
                }
                Ok(())
            }
        });

        Ok(())
    }
}