flowey_cli/cli/debug/
mod.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

pub mod dump_stage0_dag;
pub mod interrogate;
pub mod list_nodes;
pub mod list_patches;

/// Debug commands internal to flowey. Unless you're debugging / developing
/// flowey internals, it's unlikely you'll need to use these.
#[derive(clap::Subcommand)]
pub enum DebugCommands {
    DumpStage0Dag(dump_stage0_dag::DumpStage0Dag),
    Interrogate(interrogate::Interrogate),
    ListNodes(list_nodes::ListNodes),
    ListPatches(list_patches::ListPatches),
}

impl DebugCommands {
    pub fn run(self) -> anyhow::Result<()> {
        match self {
            DebugCommands::Interrogate(cmd) => cmd.run(),
            DebugCommands::ListNodes(cmd) => cmd.run(),
            DebugCommands::ListPatches(cmd) => cmd.run(),
            DebugCommands::DumpStage0Dag(cmd) => cmd.run(),
        }
    }
}