21个不稳定版本 (8个破坏性版本)
0.9.0 | 2024年4月3日 |
---|---|
0.8.0 | 2024年3月30日 |
0.7.2 | 2024年2月21日 |
0.7.0 | 2023年12月7日 |
0.1.2 | 2021年11月2日 |
#8 in 可视化
18,043 每月下载量
在 22 个crate中使用(17个直接使用)
115KB
2K SLoC
描述
该库提供了对 graphviz 格式图形的基本访问,并具有导入或导出图形的能力。
基础示例
解析 dot 源代码
use dot_generator::*;
use dot_structures::*;
fn parse_test() {
let g: Graph = parse(
r#"
strict digraph t {
aa[color=green]
subgraph v {
aa[shape=square]
subgraph vv{a2 -> b2}
aaa[color=red]
aaa -> bbb
}
aa -> be -> subgraph v { d -> aaa}
aa -> aaa -> v
}
"#,
)
.unwrap();
assert_eq!(
g,
graph!(strict di id!("t");
node!("aa";attr!("color","green")),
subgraph!("v";
node!("aa"; attr!("shape","square")),
subgraph!("vv"; edge!(node_id!("a2") => node_id!("b2"))),
node!("aaa";attr!("color","red")),
edge!(node_id!("aaa") => node_id!("bbb"))
),
edge!(node_id!("aa") => node_id!("be") => subgraph!("v"; edge!(node_id!("d") => node_id!("aaa")))),
edge!(node_id!("aa") => node_id!("aaa") => node_id!("v"))
)
)
}
将图形打印为 dot 源代码
use dot_generator::*;
use dot_structures::*;
use graphviz_rust::printer::{DotPrinter, PrinterContext};
fn print_test() {
let mut g = graph!(strict di id!("id"));
assert_eq!(
"strict digraph id {}".to_string(),
g.print(&mut PrinterContext::default())
);
}
使用命令行引擎将图形转换为外部格式
use dot_generator::*;
use dot_structures::*;
use graphviz_rust::{
attributes::*,
cmd::{CommandArg, Format},
exec, parse,
printer::{DotPrinter, PrinterContext},
};
fn output_test() {
let mut g = graph!(id!("id");
node!("nod"),
subgraph!("sb";
edge!(node_id!("a") => subgraph!(;
node!("n";
NodeAttributes::color(color_name::black), NodeAttributes::shape(shape::egg))
))
),
edge!(node_id!("a1") => node_id!(esc "a2"))
);
let graph_svg = exec(
g,
&mut PrinterContext::default(),
vec![Format::Svg.into()],
)
.unwrap();
}
结构
结构力求与 dot 表示法 保持一致,因此具有直接的对应关系。结构可以在 dot_structures::*
中找到,具有以下表示
strict digraph t { : graph with t as id
aa[color=green] : node aa and attributes in []
subgraph v { : subgraph v
aa[shape=square] : node aa in subgraph
subgraph vv{a2 -> b2} : another subgraph carrying edge inside( a type of the edge is Pair)
aaa[color=red]
aaa -> subgraph { d -> aaa} : subgraph id is anonymous id
}
aa -> be -> d -> aaa : other edge with a type Chain
}
生成 dot 结构
该库提供了一套宏,简化了图形构建的过程。每个宏的详细信息,包括示例,可以在宏的文档中找到,并在 dot_generator::*
中找到。
示例
assert_eq!(
node!("node_id"; attr!("atr1","val1"),attr!("atr2","val2")),
node!(
"node_id",
vec![attr!("atr1", "val1"), attr!("atr2", "val2")]
)
);
fn graph_test() {
use dot_generator::*;
use dot_structures::*;
let g = r#"
strict digraph t {
aa[color=green]
subgraph v {
aa[shape=square]
subgraph vv{a2 -> b2}
aaa[color=red]
aaa -> bbb
}
aa -> be -> subgraph v { d -> aaa}
aa -> aaa -> v
}
"#;
graph!(strict di id!("t");
node!("aa";attr!("color","green")),
subgraph!("v";
node!("aa"; attr!("shape","square")),
subgraph!("vv"; edge!(node_id!("a2") => node_id!("b2"))),
node!("aaa";attr!("color","red")),
edge!(node_id!("aaa") => node_id!("bbb"))
),
edge!(node_id!("aa") => node_id!("be") => subgraph!("v"; edge!(node_id!("d") => node_id!("aaa")))),
edge!(node_id!("aa") => node_id!("aaa") => node_id!("v"))
);
}
属性
graphviz 提供了大量的可能 属性,为了支持它,该库提供了一套简化在它们之间导航的结构,即
- 可以使用宏
attr!(id,id)
轻松地将自定义属性组合在一起,尽管还有其他可能的格式 - 使用命名属性,如
graphviz_rust::attributes::color
用于color
属性 - 使用特定的结构
graphviz_rust::attributes::{EdgeAttributes,SubgraphAttributes GraphAttributes, NodeAttributes}
将属性分组并显示属于哪个结构。
use dot_generator::*;
use dot_structures::*;
use graphviz_rust::attributes::{
color, color_name, GraphAttributes, NodeAttributes,
};
use into_attr::IntoAttribute;
fn test() {
assert_eq!(GraphAttributes::center(true), attr!("center", true));
assert_eq!(
NodeAttributes::color(color_name::antiquewhite1),
attr!("color", "antiquewhite1")
);
assert_eq!(color::default().into_attr(), attr!("color", "black"));
}
按照 dot 格式转换为字符串
调用特质 DotPrinter
将图结构转换为字符串。
use dot_generator::*;
use dot_structures::*;
use graphviz_rust::printer::{DotPrinter, PrinterContext};
fn subgraph_test() {
let mut ctx = PrinterContext::default();
let s =
subgraph!("id"; node!("abc"), edge!(node_id!("a") => node_id!("b")));
assert_eq!(
s.print(&mut ctx),
"subgraph id {\n abc\n a -- b \n}".to_string()
);
}
该模块允许使用 PrinterContext
调整一些参数,例如缩进步长或行分隔符。
fn ctx() {
use self::graphviz_rust::printer::PrinterContext;
let mut ctx = PrinterContext::default();
ctx.always_inline(); // everything in one line
ctx.with_semi(); // semicolon at the end of every element
ctx.with_indent_step(4); // indent 4 (default 2)
ctx.with_inline_size(60); // size indicating the line needs to break into multilines
}
使用 cmd 引擎的外部格式和其他
库提供了从 rust 代码中使用 命令命令 的能力。详细信息请参阅 graphviz_rust::{exec}
和 graphviz_rust::{exec_dot}
方法
fn output_test() {
let mut g = graph!(id!("id"));
exec(
g,
PrinterContext::default(),
vec![
Format::Svg.into(),
CommandArg::Output("path_to_file".to_string()),
],
);
}
注意事项
应安装 命令客户端
因为库通过 cmd 客户端执行命令,因此客户端应预先安装,否则将弹出错误:未找到文件或目录
或 程序未找到
(取决于操作系统)。
依赖关系
~4–13MB
~170K SLoC