patch 4.0
This commit is contained in:
22
script/dooba/docs/start.dot
Executable file
22
script/dooba/docs/start.dot
Executable file
@ -0,0 +1,22 @@
|
||||
digraph start_flow {
|
||||
start -> "提供IP PORT?"
|
||||
"提供IP PORT?" -> "检查IP PORT" [label = "是"]
|
||||
"检查IP PORT" -> DONE [label = "成功"]
|
||||
"检查IP PORT" -> FAIL [label = "失败"]
|
||||
"提供IP PORT?" -> "提供dataID?" [label = "否"]
|
||||
"提供dataID?" -> "获取lms列表" [label = "是"]
|
||||
"获取lms列表" -> "检查IP PORT" [label = "成功"]
|
||||
"获取lms列表" -> FAIL [label = "失败"]
|
||||
"提供dataID?" -> "获取dataID列表" [label = "否"]
|
||||
"获取dataID列表" -> "用户选择dataID" [label = "成功"]
|
||||
"获取dataID列表" -> FAIL [label = "失败"]
|
||||
"用户选择dataID" -> "获取lms列表" [label = "是"]
|
||||
"用户选择dataID" -> FAIL [label = "否"]
|
||||
|
||||
start[shape=circle,style=filled,fillcolor=CYAN]
|
||||
{
|
||||
FAIL[shape=circle,style=filled,fillcolor=RED];
|
||||
DONE[shape=circle,style=filled,fillcolor=GREEN];
|
||||
rank=same;
|
||||
}
|
||||
}
|
||||
BIN
script/dooba/docs/start.png
Executable file
BIN
script/dooba/docs/start.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 67 KiB |
55
script/dooba/docs/working_flow.dot
Executable file
55
script/dooba/docs/working_flow.dot
Executable file
@ -0,0 +1,55 @@
|
||||
digraph dooba {
|
||||
rankdir=LR;
|
||||
graph [fontsize=10 fontname="Verdana" compound=true];
|
||||
node [shape=record fontsize=10 fontname="Verdana"];
|
||||
edge [ fontsize=10 fontname="Verdana" ];
|
||||
subgraph cluster_gallery {
|
||||
label="dooba v0.1";
|
||||
style=filled;
|
||||
color=cyan;
|
||||
node [ style=filled, color=white ];
|
||||
gallery -> {sql_rt, sql_cnt, cs_rt, ups_rt} [label = widget];
|
||||
}
|
||||
subgraph cluster_ups {
|
||||
style=filled;
|
||||
color=lightgrey;
|
||||
node [ style=filled, color=white ];
|
||||
ups -> {ups_cnt, ups_queue_rt, ups_commit_rt, ups_flush_rt} [label = widget];
|
||||
}
|
||||
subgraph cluster_cs {
|
||||
style=filled;
|
||||
color=lightgrey;
|
||||
node [ style=filled, color=white ];
|
||||
cs -> {cs_cache, cs_io_cnt, cs_get_rt, cs_scan_rt} [label = widget];
|
||||
}
|
||||
subgraph cluster_ms {
|
||||
style=filled;
|
||||
color=lightgrey;
|
||||
node [ style=filled, color=white ];
|
||||
ms -> {ms_sql_cnt, ms_sql_rt, other} [label = widget];
|
||||
}
|
||||
subgraph cluster_rs {
|
||||
style=filled;
|
||||
color=lightgrey;
|
||||
node [ style=filled, color=white ];
|
||||
rs -> {} [label=widget];
|
||||
}
|
||||
subgraph cluster_custom {
|
||||
style=filled;
|
||||
color=lightgrey;
|
||||
node [ style=filled, color=white ];
|
||||
custom -> {} [label=widget];
|
||||
}
|
||||
|
||||
dooba -> { header, main, status_bar};
|
||||
main -> gallery [ltail=cluster_gallery];
|
||||
main -> ups [ltail=cluster_ups];
|
||||
main -> cs [ltail=cluster_cs];
|
||||
main -> ms [ltail=cluster_ms];
|
||||
main -> rs [ltail=cluster_rs];
|
||||
main -> custom [ltail=cluster_custom];
|
||||
|
||||
header [shape=record, label="<f0> [header] | appname | ... | ..."];
|
||||
status_bar [shape=record, label="<f0> [status_bar] | run_time | up_time | cluster | ..."];
|
||||
{ rank=1; header, status_bar }
|
||||
}
|
||||
BIN
script/dooba/docs/working_flow.png
Executable file
BIN
script/dooba/docs/working_flow.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 68 KiB |
Reference in New Issue
Block a user