incodoc 0.8.0

Incorporeal document format.
Documentation
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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
use crate::*;

/// A recursive table of contents.
#[derive(Clone, Hash, Debug, Eq, PartialEq, Ord, PartialOrd)]
pub struct TableOfContentsItem {
    /// Title of this item.
    pub title: String,
    /// Link to the items destination in the document.
    pub link: String,
    /// What type of content this item refers to.
    pub item_type: TableOfContentsItemType,
    /// Sub items in this table.
    pub children: Vec<TableOfContentsItem>,
}

/// Describes the type of content an item in a table of contents refers to.
#[derive(Clone, Copy, Hash, Debug, Eq, PartialEq, Ord, PartialOrd)]
pub enum TableOfContentsItemType {
    Document,
    Section,
    Paragraph,
    Nav,
    Quote,
    FootnoteDefinition,
    List,
    Table,
    CodeBlock,
    Link,
    Emphasis,
    MText,
}

/// Defines the behaviour of the filter when generating a table of contents.
#[derive(Clone, Copy, Hash, Debug, Eq, PartialEq, Ord, PartialOrd)]
pub enum TableOfContentsFilterType {
    /// Stop when a type is not in the filter, don't look any further.
    HardStop,
    /// Include a vertex when its children need including, even when its type is absent from the
    /// filter.
    IncludeWithChildren,
}

/// Generate a table of contents from a part of a document.
pub trait GetTableOfContents {
    /// If a filter is supplied, an item must be of a type present in the filter to get included.
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem>;
}

pub trait InsertTableOfContentsSectionIDs {
    fn insert_table_of_contents_section_ids(&mut self);
}

fn push_toci(children: &mut Vec<TableOfContentsItem>, res: Option<TableOfContentsItem>) {
    if let Some(item) = res {
        children.push(item);
    }
}

fn heading_title_and_id(heading: &Heading, title: &mut String, id: &mut String, id_is_link: bool) {
    if id_is_link {
        id.push('#');
    }
    for item in &heading.items {
        match item {
            EmOrText::Text(string) => {
                title.push_str(string);
                id.push_str(&string.to_lowercase().replace(" ", "-"));
            },
            EmOrText::Em(em) => {
                title.push_str(&em.text);
                id.push_str(&em.text.to_lowercase().replace(" ", "-"));
            },
        }
    }
}

fn id_to_link(id: &str) -> String {
    let mut res = String::from("#");
    res.push_str(id);
    res
}

impl GetTableOfContents for Doc {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        if let Some((filter, ftype)) = filter
            && !filter.contains(&TableOfContentsItemType::Document)
            && *ftype == TableOfContentsFilterType::HardStop
        {
            return None;
        }
        let mut children = Vec::new();
        for nav in &self.navs {
            push_toci(&mut children, nav.get_table_of_contents(filter));
        }
        for item in &self.items {
            match item {
                DocItem::Paragraph(par) => push_toci(
                    &mut children,
                    par.get_table_of_contents(filter)
                ),
                DocItem::Section(section) => push_toci(
                    &mut children,
                    section.get_table_of_contents(filter)
                ),
            }
        }
        if children.is_empty()
            && let Some((filter, ftype)) = filter
            && !filter.contains(&TableOfContentsItemType::Document)
            && *ftype == TableOfContentsFilterType::IncludeWithChildren
        {
            return None;
        }
        Some(TableOfContentsItem {
            title: "Table of Contents".to_string(),
            link: ".".to_string(),
            item_type: TableOfContentsItemType::Document,
            children,
        })
    }
}

impl GetTableOfContents for Section {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        let mut title = String::new();
        let mut link = String::new();
        let item_type = if self.tags.contains("footnote-def") {
            title += "Footnote definition: ";
            TableOfContentsItemType::FootnoteDefinition
        } else if self.tags.contains("blockquote") || self.tags.contains("blockquote-typed") {
            title += "Quote: ";
            TableOfContentsItemType::Quote
        } else {
            TableOfContentsItemType::Section
        };
        if let Some((filter, ftype)) = filter
            && !filter.contains(&item_type)
            && *ftype == TableOfContentsFilterType::HardStop
        {
            return None;
        }
        let mut children = Vec::new();
        for item in &self.items {
            match item {
                SectionItem::Paragraph(par) => push_toci(
                    &mut children,
                    par.get_table_of_contents(filter)
                ),
                SectionItem::Section(section) => push_toci(
                    &mut children,
                    section.get_table_of_contents(filter)
                ),
            }
        }
        if children.is_empty()
            && let Some((filter, ftype)) = filter
            && !filter.contains(&item_type)
            && *ftype == TableOfContentsFilterType::IncludeWithChildren
        {
            return None;
        }
        heading_title_and_id(&self.heading, &mut title, &mut link, true);
        if let Some(PropVal::String(id)) = self.props.get("id") {
            link = id_to_link(id);
        }
        if title.ends_with(": ") {
            title.pop();
            title.pop();
        }
        Some(TableOfContentsItem {
            title,
            link,
            item_type,
            children,
        })
    }
}

impl GetTableOfContents for Paragraph {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        if let Some((filter, ftype)) = filter
            && !filter.contains(&TableOfContentsItemType::Paragraph)
            && *ftype == TableOfContentsFilterType::HardStop
        {
            return None;
        }
        let mut children = Vec::new();
        for item in &self.items {
            match item {
                ParagraphItem::Text(_) => { },
                ParagraphItem::MText(mtext) => push_toci(
                    &mut children,
                    mtext.get_table_of_contents(filter)
                ),
                ParagraphItem::Em(em) => push_toci(&mut children, em.get_table_of_contents(filter)),
                ParagraphItem::Code(code_result) => push_toci(
                    &mut children,
                    code_result.get_table_of_contents(filter)
                ),
                ParagraphItem::Link(link) => push_toci(
                    &mut children,
                    link.get_table_of_contents(filter)
                ),
                ParagraphItem::List(list) => push_toci(
                    &mut children,
                    list.get_table_of_contents(filter)
                ),
                ParagraphItem::Table(table) => push_toci(
                    &mut children,
                    table.get_table_of_contents(filter)
                ),
            }
        }
        if children.is_empty()
            && let Some((filter, ftype)) = filter
            && !filter.contains(&TableOfContentsItemType::Paragraph)
            && *ftype == TableOfContentsFilterType::IncludeWithChildren
        {
            return None;
        }
        if let Some(PropVal::String(id)) = self.props.get("id") {
            Some(TableOfContentsItem {
                title: id.to_string(),
                link: id_to_link(id),
                item_type: TableOfContentsItemType::Paragraph,
                children,
            })
        } else if !children.is_empty() {
            Some(TableOfContentsItem {
                title: "paragraph".to_string(),
                link: "".to_string(),
                item_type: TableOfContentsItemType::Paragraph,
                children,
            })
        } else {
            None
        }
    }
}

impl GetTableOfContents for Emphasis {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        if let Some((filter, _)) = filter
            && !filter.contains(&TableOfContentsItemType::Emphasis)
        {
            return None;
        }
        if let Some(PropVal::String(id)) = self.props.get("id") {
            Some(TableOfContentsItem {
                title: self.text.to_string(),
                link: id_to_link(id),
                item_type: TableOfContentsItemType::Emphasis,
                children: vec![],
            })
        } else {
            None
        }
    }
}

impl GetTableOfContents for List {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        if let Some((filter, ftype)) = filter
            && !filter.contains(&TableOfContentsItemType::List)
            && *ftype == TableOfContentsFilterType::HardStop
        {
            return None;
        }
        let mut children = Vec::new();
        for par in &self.items {
            push_toci(&mut children, par.get_table_of_contents(filter));
        }
        if children.is_empty()
            && let Some((filter, ftype)) = filter
            && !filter.contains(&TableOfContentsItemType::List)
            && *ftype == TableOfContentsFilterType::IncludeWithChildren
        {
            return None;
        }
        if let Some(PropVal::String(id)) = self.props.get("id") {
            Some(TableOfContentsItem {
                title: id.to_string(),
                link: id_to_link(id),
                item_type: TableOfContentsItemType::List,
                children,
            })
        } else if !children.is_empty() {
            Some(TableOfContentsItem {
                title: "list".to_string(),
                link: "".to_string(),
                item_type: TableOfContentsItemType::List,
                children,
            })
        } else {
            None
        }
    }
}

impl GetTableOfContents for Nav {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        if let Some((filter, _)) = filter && !filter.contains(&TableOfContentsItemType::Nav) {
            return None;
        }
        if let Some(PropVal::String(id)) = self.props.get("id") {
            Some(TableOfContentsItem {
                title: self.description.to_string(),
                link: id_to_link(id),
                item_type: TableOfContentsItemType::Nav,
                children: vec![],
            })
        } else {
            None
        }
    }
}

impl GetTableOfContents for Link {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        if let Some((filter, _)) = filter && !filter.contains(&TableOfContentsItemType::Link) {
            return None;
        }
        if let Some(PropVal::String(id)) = self.props.get("id") {
            let mut title = String::new();
            for item in &self.items {
                match item {
                    EmOrText::Text(string) => title += string,
                    EmOrText::Em(em) => title += &em.text,
                }
            }
            Some(TableOfContentsItem {
                title,
                link: id_to_link(id),
                item_type: TableOfContentsItemType::Link,
                children: vec![],
            })
        } else {
            None
        }
    }
}

impl GetTableOfContents for Result<CodeBlock, CodeIdentError> {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        if let Some((filter, _)) = filter
            && !filter.contains(&TableOfContentsItemType::CodeBlock)
        {
            return None;
        }
        if let Ok(code_block) = self {
            if let Some(PropVal::String(id)) = code_block.props.get("id") {
                Some(TableOfContentsItem {
                    title: id.to_string(),
                    link: id_to_link(id),
                    item_type: TableOfContentsItemType::CodeBlock,
                    children: vec![],
                })
            } else {
                None
            }
        } else {
            None
        }
    }
}

impl GetTableOfContents for Table {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        if let Some((filter, ftype)) = filter
            && !filter.contains(&TableOfContentsItemType::Table)
            && *ftype == TableOfContentsFilterType::HardStop
        {
            return None;
        }
        let mut children = Vec::new();
        for row in &self.rows {
            for par in &row.items {
                push_toci(&mut children, par.get_table_of_contents(filter));
            }
        }
        if children.is_empty()
            && let Some((filter, ftype)) = filter
            && !filter.contains(&TableOfContentsItemType::Table)
            && *ftype == TableOfContentsFilterType::IncludeWithChildren
        {
            return None;
        }
        if let Some(PropVal::String(id)) = self.props.get("id") {
            Some(TableOfContentsItem {
                title: id.to_string(),
                link: id_to_link(id),
                item_type: TableOfContentsItemType::Table,
                children,
            })
        } else if !children.is_empty() {
            Some(TableOfContentsItem {
                title: "table".to_string(),
                link: "".to_string(),
                item_type: TableOfContentsItemType::Table,
                children,
            })
        } else {
            None
        }
    }
}

impl GetTableOfContents for TextWithMeta {
    fn get_table_of_contents(
        &self,
        filter: &Option<(HashSet<TableOfContentsItemType>, TableOfContentsFilterType)>,
    ) -> Option<TableOfContentsItem> {
        if let Some((filter, _)) = filter && !filter.contains(&TableOfContentsItemType::MText) {
            return None;
        }
        if let Some(PropVal::String(id)) = self.props.get("id") {
            Some(TableOfContentsItem {
                title: id.to_string(),
                link: id_to_link(id),
                item_type: TableOfContentsItemType::MText,
                children: vec![],
            })
        } else {
            None
        }
    }
}

impl InsertTableOfContentsSectionIDs for Doc {
    fn insert_table_of_contents_section_ids(&mut self) {
        for item in &mut self.items {
            if let DocItem::Section(section) = item {
                section.insert_table_of_contents_section_ids();
            }
        }
    }
}

impl InsertTableOfContentsSectionIDs for Section {
    fn insert_table_of_contents_section_ids(&mut self) {
        let (mut title, mut link) = (String::new(), String::new());
        if !self.props.contains_key("id") {
            heading_title_and_id(&self.heading, &mut title, &mut link, false);
            self.props.insert("id".to_string(), PropVal::String(link));
        }
        for item in &mut self.items {
            if let SectionItem::Section(section) = item {
                section.insert_table_of_contents_section_ids();
            }
        }
    }
}