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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#![deny(missing_docs, warnings)]
use failure::Fail;
use lazy_static::lazy_static;
use log::*;
use mdbook::book::{Book, Chapter};
use mdbook::preprocess::{Preprocessor, PreprocessorContext};
use mdbook::BookItem;
use regex::Regex;
use std::path::{Path, PathBuf};
static _ESCAPE_CHAR: &'static str = "/";
pub struct Bookimport;
impl Preprocessor for Bookimport {
fn name(&self) -> &str {
"mdbook-bookimport"
}
fn run(
&self,
ctx: &PreprocessorContext,
mut book: Book,
) -> Result<Book, mdbook::errors::Error> {
debug!("Running `run` method in bookimport Preprocessor trait impl");
let book_src_dir = ctx.root.join(&ctx.config.book.src);
for section in book.sections.iter_mut() {
process_chapter(section, &book_src_dir)?;
}
Ok(book)
}
}
fn process_chapter(book_item: &mut BookItem, book_src_dir: &PathBuf) -> mdbook::errors::Result<()> {
if let BookItem::Chapter(ref mut chapter) = book_item {
debug!("Processing chapter {}", chapter.name);
let chapter_dir = chapter
.path
.parent()
.map(|dir| book_src_dir.join(dir))
.expect("All book items have a parent");
let mut content = chapter.content.clone();
let simports = BookImport::find_unescaped_bookimports(chapter);
for simport in simports.iter().rev() {
let new_content = match simport.read_content_between_tags(&chapter_dir) {
Ok(new_content) => new_content,
Err(err) => panic!("Error reading content for bookimport: {:#?}", err),
};
content = content.replace(simport.full_simport_text, &new_content);
}
chapter.content = content;
for sub_item in chapter.sub_items.iter_mut() {
process_chapter(sub_item, book_src_dir)?;
}
}
Ok(())
}
#[derive(Debug, PartialEq)]
struct BookImport<'a> {
host_chapter: &'a Chapter,
file: PathBuf,
full_simport_text: &'a str,
tag: &'a str,
start: usize,
end: usize,
}
lazy_static! {
static ref SUPERIMPORT_REGEX: Regex = Regex::new(
r"(?x) # (?x) means insignificant whitespace mode
# allows us to put comments and space things out.
/\{\{\#.*\}\} # escaped import such as `/{{ #bookimport some-file.txt@some-tag }}`
| # OR
# Non escaped import -> `{{ #bookimport some-file.txt@some-tag }}`
\{\{\s* # opening braces and whitespace
\#bookimport # #bookimport
\s+ # separating whitespace
(?P<file>[a-zA-Z0-9\s_.\-/\\]+) # some-file.txt
@ # @ symbol that denotes the name of a tag
(?P<tag>[a-zA-Z0-9_.\-]+) # some-tag (alphanumeric underscores and dashes)
\s*\}\} # whitespace and closing braces
"
).unwrap();
}
impl<'a> BookImport<'a> {
fn find_unescaped_bookimports(chapter: &Chapter) -> Vec<BookImport> {
let mut simports = vec![];
let matches = SUPERIMPORT_REGEX.captures_iter(chapter.content.as_str());
for capture_match in matches {
let full_capture = capture_match.get(0).unwrap();
let full_simport_text = &chapter.content[full_capture.start()..full_capture.end()];
if full_simport_text.starts_with(r"/") {
continue;
}
let file = capture_match["file"].into();
let tag = capture_match.get(2).unwrap();
let simport = BookImport {
host_chapter: chapter,
file,
full_simport_text,
tag: &chapter.content[tag.start()..tag.end()],
start: full_capture.start(),
end: full_capture.end(),
};
simports.push(simport);
}
simports
}
}
#[derive(Debug, Fail, PartialEq)]
enum TagError {
#[fail(display = "Could not find `@book start {}`", tag)]
#[allow(unused)]
MissingStartTag { tag: String },
}
impl<'a> BookImport<'a> {
fn read_content_between_tags(&self, chapter_dir: &PathBuf) -> Result<String, TagError> {
debug!(
r#"Reading content in chapter "{}" for bookimport "{:#?}" "#,
self.host_chapter.name, self.full_simport_text
);
let path = Path::join(&chapter_dir, &self.file);
let content = String::from_utf8(::std::fs::read(&path).unwrap()).unwrap();
let start_regex = Regex::new(&format!(
r"(?x) # Insignificant whitespace mode (allows for comments)
@book
\s+ # Separating whitespace
start
\s+ # Separating whitespace
{tag}
.*? # Characters between start import tag and end of line
[\n\r] # New line right before the start import tag
(?P<content_to_import> # Everything in between the start and end import lines
(.|\n|\r)*
)
[\n\r] # New line right before the end import tag
.*? # Characters between start of end import line and end import tag
@book
\s+ # Separating whitespace
end
\s+ # Separating whitespace
{tag}
",
tag = regex::escape(self.tag)
))
.unwrap();
let captures = start_regex.captures(&content).unwrap();
let content_between_tags = captures["content_to_import"].to_string();
Ok(content_between_tags)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn parse_simports_from_chapter() {
let tag_import_chapter = make_tag_import_chapter();
let simports = BookImport::find_unescaped_bookimports(&tag_import_chapter);
let expected_simports = vec![BookImport {
host_chapter: &tag_import_chapter,
file: "./fixture.css".into(),
full_simport_text: "{{#bookimport ./fixture.css@cool-css }}",
tag: "cool-css",
start: 20,
end: 59,
}];
assert_eq!(simports, expected_simports);
}
#[test]
fn ignore_escaped_simport() {
let escaped_import_chapter = make_escaped_import_chapter();
let simports = BookImport::find_unescaped_bookimports(&escaped_import_chapter);
assert_eq!(simports.len(), 0);
}
#[test]
fn content_between_tags() {
let tag_import_chapter = make_tag_import_chapter();
let simport = &BookImport::find_unescaped_bookimports(&tag_import_chapter)[0];
let chapter_dir = "book/src/test-cases/tag-import";
let chapter_dir = format!("{}/{}", env!("CARGO_MANIFEST_DIR"), chapter_dir);
let content_between_tags = simport.read_content_between_tags(&chapter_dir.into());
let expected_content = r#"
.this-will-be-included {
display: block;
}
"#;
assert_eq!(content_between_tags.unwrap(), expected_content);
}
#[test]
fn replace_chapter() {
let tag_import_chapter = make_tag_import_chapter();
let mut item = BookItem::Chapter(tag_import_chapter);
process_chapter(&mut item, &"".into()).unwrap();
let expected_content = r#"# Tag Import
```md
.this-will-be-included {
display: block;
}
```
"#;
match item {
BookItem::Chapter(tag_import_chapter) => {
assert_eq!(tag_import_chapter.content.as_str(), expected_content);
}
_ => panic!(""),
};
}
#[test]
fn replace_escaped_simport() {
let escaped_import_chapter = make_escaped_import_chapter();
let expected_content = r#"# Escaped Bookimport
```
/{{#bookimport ./ignored.txt@foo-bar}}
```
"#;
let mut item = BookItem::Chapter(escaped_import_chapter);
process_chapter(&mut item, &"".into()).unwrap();
match item {
BookItem::Chapter(escaped_chapter) => {
assert_eq!(escaped_chapter.content.as_str(), expected_content);
}
_ => panic!(""),
};
}
fn make_tag_import_chapter() -> Chapter {
let chapter = "book/src/test-cases/tag-import/README.md";
let tag_import_chapter = Chapter::new(
"Tag Import",
include_str!("../book/src/test-cases/tag-import/README.md").to_string(),
&format!("{}/{}", env!("CARGO_MANIFEST_DIR"), chapter),
vec![],
);
tag_import_chapter
}
fn make_escaped_import_chapter() -> Chapter {
let chapter = "book/src/test-cases/escaped/README.md";
let tag_import_chapter = Chapter::new(
"Escaped",
include_str!("../book/src/test-cases/escaped/README.md").to_string(),
&format!("{}/{}", env!("CARGO_MANIFEST_DIR"), chapter),
vec![],
);
tag_import_chapter
}
}