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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
use crate::{codegen::Target, Objects, Reporter};

/// A high-level representation of the contents of a flatbuffer docstring.
#[derive(Debug, Clone, Default)]
pub struct Docs {
    /// All docmentation lines, including the leading tag, if any.
    ///
    /// If the tag is the empty string, it means the line is untagged.
    ///
    /// Each line excludes the leading space and trailing newline.
    /// * `/// COMMENT\n`      =>  `("", "COMMENT")`
    /// * `/// \py COMMENT\n`  =>  `("py", "COMMENT")`.
    lines: Vec<(String, String)>,
}

impl Docs {
    pub fn from_raw_docs(
        reporter: &Reporter,
        virtpath: &str,
        fqname: &str,
        docs: Option<flatbuffers::Vector<'_, flatbuffers::ForwardsUOffset<&'_ str>>>,
    ) -> Self {
        Self::from_lines(
            reporter,
            virtpath,
            fqname,
            docs.into_iter().flat_map(|doc| doc.into_iter()),
        )
    }

    pub fn from_lines<'a>(
        reporter: &Reporter,
        virtpath: &str,
        fqname: &str,
        lines: impl Iterator<Item = &'a str>,
    ) -> Self {
        let lines: Vec<(String, String)> = lines.map(parse_line).collect();

        for (tag, comment) in &lines {
            assert!(is_known_tag(tag), "Unknown tag: '\\{tag} {comment}'");

            if tag.is_empty() {
                find_and_recommend_doclinks(reporter, virtpath, fqname, comment);
            }
        }

        Self { lines }
    }

    /// Get the first line of the documentation untagged.
    pub fn first_line(
        &self,
        reporter: &Reporter,
        objects: &Objects,
        target: Target,
    ) -> Option<String> {
        let (tag, line) = self.lines.first()?;
        assert!(
            tag.is_empty(),
            "Expected no tag on first line of docstring. Found: /// \\{tag} {line}"
        );
        Some(translate_doc_line(reporter, objects, line, target))
    }

    /// Get all doc lines that start with the given tag.
    ///
    /// For instance, pass `"example"` to get all lines that start with `"\example"`.
    pub fn only_lines_tagged(&self, tag: &str) -> Vec<&str> {
        assert!(is_known_tag(tag), "Unknown tag: '{tag}'");
        self.lines
            .iter()
            .filter_map(
                |(t, line)| {
                    if t == tag {
                        Some(line.as_str())
                    } else {
                        None
                    }
                },
            )
            .collect()
    }

    /// Get all doc lines that are untagged, or has a tag matching the given target.
    ///
    /// For instance, pass [`Target::Python`] to get all lines that are untagged or starts with `"\py"`.
    ///
    /// The tagged lines (`\py`) are left as is, but untagged lines will have Rerun doclinks translated to the target language.
    pub(super) fn lines_for(
        &self,
        reporter: &Reporter,
        objects: &Objects,
        target: Target,
    ) -> Vec<String> {
        let target_tag = match target {
            Target::Cpp => "cpp",
            Target::Python => "py",
            Target::Rust => "rs",
            Target::WebDocsMarkdown => "md",
        };
        assert!(
            is_known_tag(target_tag),
            "Unknown target tag: '{target_tag}'"
        );

        remove_extra_newlines(self.lines.iter().filter_map(|(tag, line)| {
            if tag.is_empty() {
                Some(translate_doc_line(reporter, objects, line, target))
            } else if tag == target_tag {
                // We don't expect doclinks in tagged lines, because tagged lines are usually
                // language-specific, and thus should have the correct format already.
                Some(line.to_owned())
            } else {
                None
            }
        }))
    }
}

fn remove_extra_newlines(lines: impl Iterator<Item = String>) -> Vec<String> {
    let mut lines: Vec<String> = lines.collect();

    // Remove duplicated blank lines:
    lines.dedup();

    // Remove trailing blank lines:
    while let Some(line) = lines.last() {
        if line.is_empty() {
            lines.pop();
        } else {
            break;
        }
    }

    lines
}

fn is_known_tag(tag: &str) -> bool {
    matches!(tag, "" | "example" | "cpp" | "py" | "rs" | "md")
}

/// Parses `" \tag The comment"` into `("tag", "The comment")`.
///
/// `" The comment"` becomes `("", "The comment")`.
fn parse_line(line: &str) -> (String, String) {
    if let Some(line) = line.strip_prefix(" \\") {
        // \tagged comment
        let tag = line.split_whitespace().next().unwrap().to_owned();
        let line = &line[tag.len()..];
        if let Some(line) = line.strip_prefix(' ') {
            // Removed space between tag and comment.
            (tag, line.to_owned())
        } else {
            assert!(line.is_empty());
            (tag, String::new())
        }
    } else if let Some(line) = line.strip_prefix(' ') {
        // Removed space between `///` and comment.
        (String::new(), line.to_owned())
    } else {
        assert!(
            line.is_empty(),
            "Comments should start with a single space; found {line:?}"
        );
        (String::new(), String::new())
    }
}

/// Look for things that look like doclinks to other types, but aren't in brackets.
fn find_and_recommend_doclinks(
    reporter: &Reporter,
    virtpath: &str,
    fqname: &str,
    full_comment: &str,
) {
    let mut comment = full_comment;
    while let Some(start) = comment.find('`') {
        comment = &comment[start + 1..];
        if let Some(end) = comment.find('`') {
            let content = &comment[..end];

            let looks_like_type_name = content.len() > 5
                && content.chars().all(|c| c.is_ascii_alphanumeric())
                && content.chars().next().unwrap().is_ascii_uppercase()

                // TODO(emilk): support references to things outside the default `rerun.scope`.
                && !matches!(content, "ViewContents" | "VisibleTimeRanges" | "QueryExpression")

                // In some blueprint code we refer to stuff in Rerun.
                && !matches!(content, "ChunkStore" | "ContainerId" | "EntityPathFilter" | "Spatial2DView" | "ViewId" | "View")

                // Doc links to OpenStreetMap may show up
                && !matches!(content, "OpenStreetMap");

            if looks_like_type_name {
                reporter.warn(virtpath, fqname, format!("`{content}` can be written as a doclink, e.g. [archetypes.{content}] in comment: /// {full_comment}"));
            }
            comment = &comment[end + 1..];
        } else {
            return;
        }
    }
}

use doclink_translation::translate_doc_line;

/// We support doclinks in our docstrings.
///
/// They need to follow this format:
/// ```fbs
/// /// See also [archetype.Image].
/// table Tensor { … }
/// ```
///
/// This module is all about translating these doclinks to the different [`Target`]s.
///
/// The code is not very efficient, but it is simple and works.
mod doclink_translation {
    use crate::{ObjectKind, Objects, Reporter};

    use super::Target;

    /// Convert Rerun-style doclinks to the target language.
    pub fn translate_doc_line(
        reporter: &Reporter,
        objects: &Objects,
        input: &str,
        target: Target,
    ) -> String {
        let mut out_tokens: Vec<String> = vec![];
        let mut within_backticks = false;

        let mut tokens = tokenize(input).into_iter().peekable();
        while let Some(token) = tokens.next() {
            if token == "`" {
                within_backticks = !within_backticks;
                out_tokens.push(token.to_owned());
                continue;
            }

            if within_backticks {
                out_tokens.push(token.to_owned());
                continue;
            }

            if token == "[" {
                // Potential start of a Rerun doclink
                let mut doclink_tokens = vec![token];
                for token in &mut tokens {
                    doclink_tokens.push(token);
                    if token == "]" {
                        break;
                    }
                }

                if tokens
                    .peek()
                    .is_some_and(|next_token| next_token.starts_with('('))
                {
                    // We are at the `)[` boundary of a markdown link, e.g. "[Rerun](https://rerun.io)",
                    // so this is not a rerun doclink after all.
                    out_tokens.extend(doclink_tokens.iter().map(|&s| s.to_owned()));
                    continue;
                }

                out_tokens.push(translate_doclink(
                    reporter,
                    objects,
                    &doclink_tokens,
                    target,
                ));
                continue;
            }

            // Normal boring token
            out_tokens.push(token.to_owned());
        }

        out_tokens.into_iter().collect()
    }

    fn translate_doclink(
        reporter: &Reporter,
        objects: &Objects,
        doclink_tokens: &[&str],
        target: Target,
    ) -> String {
        try_translate_doclink(objects, doclink_tokens, target).unwrap_or_else(|err| {
            let original_doclink: String = doclink_tokens.join("");

            // The worlds simplest heuristic, but at least it doesn't warn about things like [x, y, z, w].
            let looks_like_rerun_doclink =
                !original_doclink.contains(' ') && original_doclink.len() > 6;

            if looks_like_rerun_doclink {
                reporter.warn_no_context(format!(
                    "Looks like a Rerun doclink, but fails to parse: {original_doclink} - {err}"
                ));
            }

            original_doclink
        })
    }

    fn try_translate_doclink(
        objects: &Objects,
        doclink_tokens: &[&str],
        target: Target,
    ) -> Result<String, String> {
        let has_type_or_enum = doclink_tokens.iter().filter(|t| t == &&".").count() == 2;

        let mut tokens = doclink_tokens.iter();
        if tokens.next() != Some(&"[") {
            return Err("Missing opening bracket".to_owned());
        }
        let kind = *tokens.next().ok_or("Missing kind")?;
        if kind == "`" {
            return Err("Do not use backticks inside doclinks".to_owned());
        }
        if tokens.next() != Some(&".") {
            return Err("Missing dot".to_owned());
        }
        let type_name = *tokens.next().ok_or("Missing type name")?;

        let field_or_enum_name = if has_type_or_enum {
            if tokens.next() != Some(&".") {
                return Err("Missing dot".to_owned());
            }
            tokens.next()
        } else {
            None
        };

        if tokens.next() != Some(&"]") {
            return Err("Missing closing bracket".to_owned());
        }
        if tokens.next().is_some() {
            return Err("Trailing tokens".to_owned());
        }

        // Validate kind:
        if ObjectKind::ALL
            .iter()
            .all(|object_kind| object_kind.plural_snake_case() != kind)
        {
            return Err(format!(
                "Invalid kind {kind:?}. Valid are: {}",
                ObjectKind::ALL
                    .map(|object_kind| object_kind.plural_snake_case())
                    .join(", ")
            ));
        }

        let is_unreleased;
        let scope;
        {
            // Find the target object:
            let mut candidates = vec![];
            for obj in objects.values() {
                if obj.kind.plural_snake_case() == kind && obj.name == type_name {
                    candidates.push(obj);
                }
            }

            let Some(object) = candidates.first() else {
                return Err("No object found for doclink".to_owned());
            };

            if candidates.len() > 2 {
                use itertools::Itertools as _;
                return Err(format!(
                    "Multiple objects found for doclink: {}",
                    candidates.iter().map(|obj| &obj.fqname).format(", ")
                ));
            }

            scope = object.scope().unwrap_or_default();
            is_unreleased = object.is_attr_set(crate::ATTR_DOCS_UNRELEASED);
        }

        Ok(match target {
            Target::Cpp => {
                if let Some(field_or_enum_name) = field_or_enum_name {
                    format!("`{kind}::{type_name}::{field_or_enum_name}`")
                } else {
                    format!("`{kind}::{type_name}`")
                }
            }
            Target::Rust => {
                // https://doc.rust-lang.org/rustdoc/write-documentation/linking-to-items-by-name.html
                let kind_and_type = format!("{kind}::{type_name}");
                let object_path = if scope.is_empty() {
                    kind_and_type.clone()
                } else {
                    format!("{scope}::{kind_and_type}")
                };

                if let Some(field_or_enum_name) = field_or_enum_name {
                    format!(
                            "[`{kind_and_type}::{field_or_enum_name}`][crate::{object_path}::{field_or_enum_name}]"
                        )
                } else {
                    format!("[`{kind_and_type}`][crate::{object_path}]")
                }
            }
            Target::Python => {
                let kind_and_type = format!("{kind}.{type_name}");
                let object_path = if scope.is_empty() {
                    format!("rerun.{kind_and_type}")
                } else {
                    format!("rerun.{scope}.{kind_and_type}")
                };
                if let Some(field_or_enum_name) = field_or_enum_name {
                    format!("[`{kind_and_type}.{field_or_enum_name}`][{object_path}.{field_or_enum_name}]")
                } else {
                    format!("[`{kind_and_type}`][{object_path}]")
                }
            }
            Target::WebDocsMarkdown => {
                let kind_and_type = format!("{kind}.{type_name}");

                // TODO(andreas): We don't show blueprint components & archetypes in the web docs yet.
                if scope == "blueprint" && (kind == "components" || kind == "archetypes") {
                    return Ok(kind_and_type);
                }

                // For instance, https://rerun.io/docs/reference/types/views/spatial2d_view
                // TODO(emilk): relative links would be nicer for the local markdown files
                let type_name_snake_case = re_case::to_snake_case(type_name);
                let query = if is_unreleased {
                    "?speculative-link" // or our link checker will complain
                } else {
                    ""
                };

                let url = format!(
                    "https://rerun.io/docs/reference/types/{kind}/{type_name_snake_case}{query}"
                );
                if let Some(field_or_enum_name) = field_or_enum_name {
                    format!("[`{kind_and_type}#{field_or_enum_name}`]({url})")
                } else {
                    format!("[`{kind_and_type}`]({url})")
                }
            }
        })
    }

    pub(super) fn tokenize(input: &str) -> Vec<&str> {
        tokenize_with(input, &['[', ']', '`', '.'])
    }

    fn tokenize_with<'input>(mut input: &'input str, special_chars: &[char]) -> Vec<&'input str> {
        let mut tokens = vec![];
        while !input.is_empty() {
            if let Some(index) = input.find(|c| special_chars.contains(&c)) {
                if 0 < index {
                    tokens.push(&input[..index]);
                }
                tokens.push(&input[index..index + 1]);
                input = &input[index + 1..];
            } else {
                tokens.push(input);
                break;
            }
        }
        tokens
    }
}

#[cfg(test)]
mod tests {
    use crate::{
        codegen::Target,
        docs::doclink_translation::{tokenize, translate_doc_line},
        Attributes, Docs, Object, ObjectKind, Objects,
    };

    fn test_objects() -> Objects {
        Objects {
            objects: std::iter::once((
                "rerun.views.Spatial2DView".to_owned(),
                Object {
                    virtpath: "path".to_owned(),
                    filepath: "path".into(),
                    fqname: "rerun.views.Spatial2DView".to_owned(),
                    pkg_name: "test".to_owned(),
                    name: "Spatial2DView".to_owned(),
                    docs: Docs::default(),
                    kind: ObjectKind::View,
                    attrs: Attributes::default(),
                    fields: Vec::new(),
                    class: crate::ObjectClass::Struct,
                    datatype: None,
                },
            ))
            .collect(),
        }
    }

    #[test]
    fn test_tokenize() {
        assert_eq!(tokenize("This is a comment"), vec!["This is a comment"]);
        assert_eq!(
            tokenize("A vector `[1, 2, 3]` and a doclink [archetype.Image]."),
            vec![
                "A vector ",
                "`",
                "[",
                "1, 2, 3",
                "]",
                "`",
                " and a doclink ",
                "[",
                "archetype",
                ".",
                "Image",
                "]",
                "."
            ]
        );
    }

    #[test]
    fn test_translate_doclinks() {
        let objects = test_objects();
        let (_report, reporter) = crate::report::init();

        let input =
            "A vector `[1, 2, 3]` and a doclink [views.Spatial2DView] and a [url](www.rerun.io).";

        assert_eq!(
            translate_doc_line(&reporter, &objects, input, Target::Cpp),
            "A vector `[1, 2, 3]` and a doclink `views::Spatial2DView` and a [url](www.rerun.io)."
        );

        assert_eq!(
            translate_doc_line(
                &reporter,
                &objects,
                input,
                Target::Python
            ),
            "A vector `[1, 2, 3]` and a doclink [`views.Spatial2DView`][rerun.blueprint.views.Spatial2DView] and a [url](www.rerun.io)."
        );

        assert_eq!(
            translate_doc_line(
                &reporter,
                &objects,
                input,
                Target::Rust
            ),
            "A vector `[1, 2, 3]` and a doclink [`views::Spatial2DView`][crate::blueprint::views::Spatial2DView] and a [url](www.rerun.io)."
        );

        assert_eq!(
            translate_doc_line(
                &reporter,
                &objects,
                input,
                Target::WebDocsMarkdown
            ),
            "A vector `[1, 2, 3]` and a doclink [`views.Spatial2DView`](https://rerun.io/docs/reference/types/views/spatial2d_view) and a [url](www.rerun.io)."
        );
    }

    #[test]
    fn test_translate_doclinks_with_field() {
        let objects = test_objects();
        let (_report, reporter) = crate::report::init();

        let input =
            "A vector `[1, 2, 3]` and a doclink [views.Spatial2DView.position] and a [url](www.rerun.io).";

        assert_eq!(
            translate_doc_line(
                &reporter,
                &objects,
                input,
                Target::Cpp
            ),
            "A vector `[1, 2, 3]` and a doclink `views::Spatial2DView::position` and a [url](www.rerun.io)."
        );

        assert_eq!(
            translate_doc_line(
                &reporter,
                &objects,
                input,
                Target::Python
            ),
            "A vector `[1, 2, 3]` and a doclink [`views.Spatial2DView.position`][rerun.blueprint.views.Spatial2DView.position] and a [url](www.rerun.io)."
        );

        assert_eq!(
            translate_doc_line(
                &reporter,
                &objects,
                input,
                Target::Rust
            ),
            "A vector `[1, 2, 3]` and a doclink [`views::Spatial2DView::position`][crate::blueprint::views::Spatial2DView::position] and a [url](www.rerun.io)."
        );

        assert_eq!(
            translate_doc_line(
                &reporter,
                &objects,
                input,
                Target::WebDocsMarkdown
            ),
            "A vector `[1, 2, 3]` and a doclink [`views.Spatial2DView#position`](https://rerun.io/docs/reference/types/views/spatial2d_view) and a [url](www.rerun.io)."
        );
    }

    #[test]
    fn test_docs() {
        let objects = test_objects();
        let (_report, reporter) = crate::report::init();

        let docs = Docs::from_lines(
            &reporter,
            "testpath",
            "testfqname",
            [
                r" Doclink to [views.Spatial2DView].",
                r" ",
                r" The second line.",
                r" ",
                r" \py Only for Python.",
                r" ",
                r" The third line.",
                r" ",
                r" \cpp Only for C++.",
            ]
            .into_iter(),
        );

        assert_eq!(docs.only_lines_tagged("py"), vec!["Only for Python.",]);

        assert_eq!(docs.only_lines_tagged("cpp"), vec!["Only for C++.",]);

        assert_eq!(
            docs.lines_for(&reporter, &objects, Target::Python),
            vec![
                "Doclink to [`views.Spatial2DView`][rerun.blueprint.views.Spatial2DView].",
                "",
                "The second line.",
                "",
                "Only for Python.",
                "",
                "The third line.",
            ]
        );

        assert_eq!(
            docs.lines_for(&reporter, &objects, Target::Cpp),
            vec![
                "Doclink to `views::Spatial2DView`.",
                "",
                "The second line.",
                "",
                "The third line.",
                "",
                "Only for C++.",
            ]
        );

        assert_eq!(
            docs.first_line(&reporter, &objects, Target::Rust),
            Some(
                "Doclink to [`views::Spatial2DView`][crate::blueprint::views::Spatial2DView]."
                    .to_owned()
            )
        );
    }
}