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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#![crate_name="mml"]
#![crate_type= "lib"]
#![doc(html_root_url = "https://docs.rs/mml/0.1.41")]
#![cfg_attr(feature = "nightly", feature(plugin))]
#![cfg_attr(feature = "lints", plugin(clippy))]
#![cfg_attr(feature = "lints", deny(warnings))]
#![cfg_attr(not(any(feature = "lints", feature = "nightly")), deny())]
#![deny(
missing_debug_implementations,
missing_copy_implementations,
trivial_casts,
trivial_numeric_casts,
unused_import_braces,
unused_qualifications
)]
extern crate syntex_syntax;
extern crate syntex_errors;
extern crate itertools;
extern crate walkdir;
extern crate dot;
pub mod prelude;
pub mod core;
use std::process::{Command, Stdio};
use std::io::{self, Write, Read};
use std::path::Path;
use std::fs::{self, File};
use std::ffi::OsStr;
use std::rc::Rc;
use syntex_errors::emitter::ColorConfig;
use syntex_errors::Handler;
use syntex_syntax::codemap::CodeMap;
use syntex_syntax::parse::{self, ParseSess};
use syntex_syntax::{ast, ptr};
use walkdir::WalkDir;
use core::ListItem;
pub const DEFAULT_NAME_DOT: &'static str = "ml.dot";
pub const DEFAULT_NAME_PNG: &'static str = "ml.svg";
fn file2crate<P: AsRef<Path>>(path: P) -> io::Result<ast::Crate> {
let codemap = Rc::new(CodeMap::new());
let tty_handler =
Handler::with_tty_emitter(ColorConfig::Auto, true, false, Some(codemap.clone()));
let parse_session: ParseSess = ParseSess::with_span_handler(tty_handler, codemap.clone());
let parse = parse::parse_crate_from_file(path.as_ref(), &parse_session);
let ast: ast::Crate = parse.unwrap();
Ok(ast)
}
fn items2chars(list: Vec<ptr::P<ast::Item>>) -> io::Result<Vec<u8>> {
let mut f: Vec<u8> = Vec::new();
let it: ListItem = ListItem::from(list.iter().peekable());
dot::render(&it, &mut f).and_then(|()| Ok(f))
}
pub fn rs2dot<P: AsRef<Path>>(path: P) -> io::Result<Vec<u8>> {
file2crate(path).and_then(|parse: ast::Crate| items2chars(parse.module.items))
}
pub fn src2dot<P: AsRef<Path>>(path: P) -> io::Result<Vec<u8>> {
items2chars(WalkDir::new(path).into_iter()
.filter_map(|entry: Result<walkdir::DirEntry, _>| entry.ok())
.filter(|entry| entry.file_type().is_file())
.filter_map(|entry: walkdir::DirEntry| {
let path: &Path = entry.path();
if path.extension().eq(&Some(OsStr::new("rs"))) {
file2crate(path).ok().and_then(|parse| Some(parse.module.items))
} else {
None
}
})
.collect::<Vec<Vec<ptr::P<ast::Item>>>>()
.concat())
}
fn content2svg(buf: Vec<u8>) -> io::Result<Vec<u8>> {
Command::new("dot").arg("-Tsvg")
.stdin(Stdio::piped()).stdout(Stdio::piped())
.spawn()
.and_then(|child| {
let mut ret = vec![];
child.stdin.unwrap().write_all(buf.as_slice()).unwrap();
child.stdout.unwrap().read_to_end(&mut ret).unwrap();
Ok(ret)
})
}
pub fn rs2svg<P: AsRef<Path>>(path: P) -> io::Result<Vec<u8>> {
rs2dot(path).and_then(|buf| content2svg(buf))
}
pub fn src2svg<P: AsRef<Path>>(path: P) -> io::Result<Vec<u8>> {
src2dot(path).and_then(|buf| content2svg(buf))
}
pub fn src2both<P: AsRef<Path>>(src: P, dest: P) -> io::Result<()> {
let _ = fs::create_dir_all(dest.as_ref())?;
let mut file_dot = File::create(dest.as_ref().join(DEFAULT_NAME_DOT))?;
let mut file_svg = File::create(dest.as_ref().join(DEFAULT_NAME_PNG))?;
let content_dot: Vec<u8> = src2dot(src)?;
let _ = file_dot.write_all(content_dot.as_slice())?;
let content_svg: Vec<u8> = content2svg(content_dot)?;
let _ = file_svg.write_all(content_svg.as_slice())?;
Ok(())
}