aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/codegen/gen_assists_docs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/codegen/gen_assists_docs.rs')
-rw-r--r--xtask/src/codegen/gen_assists_docs.rs210
1 files changed, 106 insertions, 104 deletions
diff --git a/xtask/src/codegen/gen_assists_docs.rs b/xtask/src/codegen/gen_assists_docs.rs
index 4bd6b5f0c..526941f73 100644
--- a/xtask/src/codegen/gen_assists_docs.rs
+++ b/xtask/src/codegen/gen_assists_docs.rs
@@ -1,102 +1,113 @@
1//! Generates `assists.md` documentation. 1//! Generates `assists.md` documentation.
2 2
3use std::{fs, path::Path}; 3use std::{fmt, fs, path::Path};
4 4
5use crate::{ 5use crate::{
6 codegen::{self, extract_comment_blocks_with_empty_lines, Mode}, 6 codegen::{self, extract_comment_blocks_with_empty_lines, Location, Mode},
7 project_root, rust_files, Result, 7 project_root, rust_files, Result,
8}; 8};
9 9
10pub fn generate_assists_tests(mode: Mode) -> Result<()> {
11 let assists = Assist::collect()?;
12 generate_tests(&assists, mode)
13}
14
10pub fn generate_assists_docs(mode: Mode) -> Result<()> { 15pub fn generate_assists_docs(mode: Mode) -> Result<()> {
11 let assists = collect_assists()?; 16 let assists = Assist::collect()?;
12 generate_tests(&assists, mode)?; 17 let contents = assists.into_iter().map(|it| it.to_string()).collect::<Vec<_>>().join("\n\n");
13 generate_docs(&assists, mode)?; 18 let contents = contents.trim().to_string() + "\n";
14 Ok(()) 19 let dst = project_root().join("docs/user/generated_assists.adoc");
20 codegen::update(&dst, &contents, mode)
15} 21}
16 22
17#[derive(Debug)] 23#[derive(Debug)]
18struct Assist { 24struct Assist {
19 id: String, 25 id: String,
26 location: Location,
20 doc: String, 27 doc: String,
21 before: String, 28 before: String,
22 after: String, 29 after: String,
23} 30}
24 31
25fn hide_hash_comments(text: &str) -> String { 32impl Assist {
26 text.split('\n') // want final newline 33 fn collect() -> Result<Vec<Assist>> {
27 .filter(|&it| !(it.starts_with("# ") || it == "#")) 34 let mut res = Vec::new();
28 .map(|it| format!("{}\n", it)) 35 for path in rust_files(&project_root().join(codegen::ASSISTS_DIR)) {
29 .collect() 36 collect_file(&mut res, path.as_path())?;
30}
31
32fn reveal_hash_comments(text: &str) -> String {
33 text.split('\n') // want final newline
34 .map(|it| {
35 if it.starts_with("# ") {
36 &it[2..]
37 } else if it == "#" {
38 ""
39 } else {
40 it
41 }
42 })
43 .map(|it| format!("{}\n", it))
44 .collect()
45}
46
47fn collect_assists() -> Result<Vec<Assist>> {
48 let mut res = Vec::new();
49 for path in rust_files(&project_root().join(codegen::ASSISTS_DIR)) {
50 collect_file(&mut res, path.as_path())?;
51 }
52 res.sort_by(|lhs, rhs| lhs.id.cmp(&rhs.id));
53 return Ok(res);
54
55 fn collect_file(acc: &mut Vec<Assist>, path: &Path) -> Result<()> {
56 let text = fs::read_to_string(path)?;
57 let comment_blocks = extract_comment_blocks_with_empty_lines(&text);
58
59 for block in comment_blocks {
60 // FIXME: doesn't support blank lines yet, need to tweak
61 // `extract_comment_blocks` for that.
62 let mut lines = block.iter();
63 let first_line = lines.next().unwrap();
64 if !first_line.starts_with("Assist: ") {
65 continue;
66 }
67 let id = first_line["Assist: ".len()..].to_string();
68 assert!(
69 id.chars().all(|it| it.is_ascii_lowercase() || it == '_'),
70 "invalid assist id: {:?}",
71 id
72 );
73
74 let doc = take_until(lines.by_ref(), "```").trim().to_string();
75 assert!(
76 doc.chars().next().unwrap().is_ascii_uppercase() && doc.ends_with('.'),
77 "\n\n{}: assist docs should be proper sentences, with capitalization and a full stop at the end.\n\n{}\n\n",
78 id, doc,
79 );
80
81 let before = take_until(lines.by_ref(), "```");
82
83 assert_eq!(lines.next().unwrap().as_str(), "->");
84 assert_eq!(lines.next().unwrap().as_str(), "```");
85 let after = take_until(lines.by_ref(), "```");
86 acc.push(Assist { id, doc, before, after })
87 } 37 }
38 res.sort_by(|lhs, rhs| lhs.id.cmp(&rhs.id));
39 return Ok(res);
40
41 fn collect_file(acc: &mut Vec<Assist>, path: &Path) -> Result<()> {
42 let text = fs::read_to_string(path)?;
43 let comment_blocks = extract_comment_blocks_with_empty_lines("Assist", &text);
44
45 for block in comment_blocks {
46 // FIXME: doesn't support blank lines yet, need to tweak
47 // `extract_comment_blocks` for that.
48 let id = block.id;
49 assert!(
50 id.chars().all(|it| it.is_ascii_lowercase() || it == '_'),
51 "invalid assist id: {:?}",
52 id
53 );
54 let mut lines = block.contents.iter();
55
56 let doc = take_until(lines.by_ref(), "```").trim().to_string();
57 assert!(
58 doc.chars().next().unwrap().is_ascii_uppercase() && doc.ends_with('.'),
59 "\n\n{}: assist docs should be proper sentences, with capitalization and a full stop at the end.\n\n{}\n\n",
60 id, doc,
61 );
62
63 let before = take_until(lines.by_ref(), "```");
64
65 assert_eq!(lines.next().unwrap().as_str(), "->");
66 assert_eq!(lines.next().unwrap().as_str(), "```");
67 let after = take_until(lines.by_ref(), "```");
68 let location = Location::new(path.to_path_buf(), block.line);
69 acc.push(Assist { id, location, doc, before, after })
70 }
88 71
89 fn take_until<'a>(lines: impl Iterator<Item = &'a String>, marker: &str) -> String { 72 fn take_until<'a>(lines: impl Iterator<Item = &'a String>, marker: &str) -> String {
90 let mut buf = Vec::new(); 73 let mut buf = Vec::new();
91 for line in lines { 74 for line in lines {
92 if line == marker { 75 if line == marker {
93 break; 76 break;
77 }
78 buf.push(line.clone());
94 } 79 }
95 buf.push(line.clone()); 80 buf.join("\n")
96 } 81 }
97 buf.join("\n") 82 Ok(())
98 } 83 }
99 Ok(()) 84 }
85}
86
87impl fmt::Display for Assist {
88 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
89 let before = self.before.replace("<|>", "┃"); // Unicode pseudo-graphics bar
90 let after = self.after.replace("<|>", "┃");
91 writeln!(
92 f,
93 "[discrete]\n=== `{}`
94**Source:** {}
95
96{}
97
98.Before
99```rust
100{}```
101
102.After
103```rust
104{}```",
105 self.id,
106 self.location,
107 self.doc,
108 hide_hash_comments(&before),
109 hide_hash_comments(&after)
110 )
100 } 111 }
101} 112}
102 113
@@ -127,33 +138,24 @@ r#####"
127 codegen::update(&project_root().join(codegen::ASSISTS_TESTS), &buf, mode) 138 codegen::update(&project_root().join(codegen::ASSISTS_TESTS), &buf, mode)
128} 139}
129 140
130fn generate_docs(assists: &[Assist], mode: Mode) -> Result<()> { 141fn hide_hash_comments(text: &str) -> String {
131 let mut buf = String::from( 142 text.split('\n') // want final newline
132 "# Assists\n\nCursor position or selection is signified by `┃` character.\n\n", 143 .filter(|&it| !(it.starts_with("# ") || it == "#"))
133 ); 144 .map(|it| format!("{}\n", it))
134 145 .collect()
135 for assist in assists { 146}
136 let before = assist.before.replace("<|>", "┃"); // Unicode pseudo-graphics bar
137 let after = assist.after.replace("<|>", "┃");
138 let docs = format!(
139 "
140## `{}`
141
142{}
143
144```rust
145// BEFORE
146{}
147// AFTER
148{}```
149",
150 assist.id,
151 assist.doc,
152 hide_hash_comments(&before),
153 hide_hash_comments(&after)
154 );
155 buf.push_str(&docs);
156 }
157 147
158 codegen::update(&project_root().join(codegen::ASSISTS_DOCS), &buf, mode) 148fn reveal_hash_comments(text: &str) -> String {
149 text.split('\n') // want final newline
150 .map(|it| {
151 if it.starts_with("# ") {
152 &it[2..]
153 } else if it == "#" {
154 ""
155 } else {
156 it
157 }
158 })
159 .map(|it| format!("{}\n", it))
160 .collect()
159} 161}