| use std::{fs::File, io::Write, path::Path}; |
|
|
| use dora_core::descriptor::Descriptor; |
| use eyre::Context; |
|
|
| const MERMAID_TEMPLATE: &str = include_str!("mermaid-template.html"); |
|
|
| pub(crate) fn create(dataflow: std::path::PathBuf, mermaid: bool, open: bool) -> eyre::Result<()> { |
| if mermaid { |
| let visualized = visualize_as_mermaid(&dataflow)?; |
| println!("{visualized}"); |
| println!( |
| "Paste the above output on https://mermaid.live/ or in a \ |
| ```mermaid code block on GitHub to display it." |
| ); |
| } else { |
| let html = visualize_as_html(&dataflow)?; |
|
|
| let working_dir = std::env::current_dir().wrap_err("failed to get current working dir")?; |
| let graph_filename = match dataflow.file_stem().and_then(|n| n.to_str()) { |
| Some(name) => format!("{name}-graph"), |
| None => "graph".into(), |
| }; |
| let mut extra = 0; |
| let path = loop { |
| let adjusted_file_name = if extra == 0 { |
| format!("{graph_filename}.html") |
| } else { |
| format!("{graph_filename}.{extra}.html") |
| }; |
| let path = working_dir.join(&adjusted_file_name); |
| if path.exists() { |
| extra += 1; |
| } else { |
| break path; |
| } |
| }; |
|
|
| let mut file = File::create(&path).context("failed to create graph HTML file")?; |
| file.write_all(html.as_bytes())?; |
|
|
| println!( |
| "View graph by opening the following in your browser:\n file://{}", |
| path.display() |
| ); |
|
|
| if open { |
| webbrowser::open(path.as_os_str().to_str().unwrap())?; |
| } |
| } |
| Ok(()) |
| } |
|
|
| pub fn visualize_as_html(dataflow: &Path) -> eyre::Result<String> { |
| let mermaid = visualize_as_mermaid(dataflow)?; |
| Ok(MERMAID_TEMPLATE.replacen("____insert____", &mermaid, 1)) |
| } |
|
|
| pub fn visualize_as_mermaid(dataflow: &Path) -> eyre::Result<String> { |
| let descriptor = Descriptor::blocking_read(dataflow) |
| .with_context(|| format!("failed to read dataflow at `{}`", dataflow.display()))?; |
| let visualized = descriptor |
| .visualize_as_mermaid() |
| .context("failed to visualize descriptor")?; |
|
|
| Ok(visualized) |
| } |
|
|