summaryrefslogtreecommitdiff
path: root/support/texlab/src/rename/latex_cmd.rs
blob: 4770c4c4856389b644d23510a463473983f0bbeb (plain)
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
use crate::{
    feature::{FeatureProvider, FeatureRequest},
    protocol::{
        Position, Range, RenameParams, TextDocumentPositionParams, TextEdit, WorkspaceEdit,
    },
    syntax::{latex, SyntaxNode},
    workspace::DocumentContent,
};
use async_trait::async_trait;
use std::collections::HashMap;

#[derive(Debug, PartialEq, Eq, Clone, Copy, Default)]
pub struct LatexCommandPrepareRenameProvider;

#[async_trait]
impl FeatureProvider for LatexCommandPrepareRenameProvider {
    type Params = TextDocumentPositionParams;
    type Output = Option<Range>;

    async fn execute<'a>(&'a self, req: &'a FeatureRequest<Self::Params>) -> Self::Output {
        let pos = req.params.position;
        find_command(&req.current().content, pos).map(SyntaxNode::range)
    }
}

#[derive(Debug, PartialEq, Eq, Clone, Copy, Default)]
pub struct LatexCommandRenameProvider;

#[async_trait]
impl FeatureProvider for LatexCommandRenameProvider {
    type Params = RenameParams;
    type Output = Option<WorkspaceEdit>;

    async fn execute<'a>(&'a self, req: &'a FeatureRequest<Self::Params>) -> Self::Output {
        let pos = req.params.text_document_position.position;
        let cmd_name = find_command(&req.current().content, pos)?.name.text();
        let mut changes = HashMap::new();
        for doc in req.related() {
            if let DocumentContent::Latex(table) = &doc.content {
                let edits = table
                    .commands
                    .iter()
                    .filter_map(|node| table.as_command(*node))
                    .filter(|cmd| cmd.name.text() == cmd_name)
                    .map(|cmd| {
                        TextEdit::new(cmd.name.range(), format!("\\{}", req.params.new_name))
                    })
                    .collect();
                changes.insert(doc.uri.clone().into(), edits);
            }
        }
        Some(WorkspaceEdit::new(changes))
    }
}

fn find_command(content: &DocumentContent, pos: Position) -> Option<&latex::Command> {
    if let DocumentContent::Latex(table) = &content {
        table.as_command(table.find_command_by_short_name_range(pos)?)
    } else {
        None
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{feature::FeatureTester, protocol::RangeExt};
    use indoc::indoc;

    #[tokio::test]
    async fn command() {
        let actual_edit = FeatureTester::new()
            .file(
                "foo.tex",
                indoc!(
                    r#"
                        \include{bar.tex}
                        \baz
                    "#
                ),
            )
            .file("bar.tex", r#"\baz"#)
            .main("foo.tex")
            .position(1, 2)
            .new_name("qux")
            .test_rename(LatexCommandRenameProvider)
            .await
            .unwrap();

        let mut expected_changes = HashMap::new();
        expected_changes.insert(
            FeatureTester::uri("foo.tex").into(),
            vec![TextEdit::new(Range::new_simple(1, 0, 1, 4), "\\qux".into())],
        );
        expected_changes.insert(
            FeatureTester::uri("bar.tex").into(),
            vec![TextEdit::new(Range::new_simple(0, 0, 0, 4), "\\qux".into())],
        );

        assert_eq!(actual_edit, WorkspaceEdit::new(expected_changes));
    }

    #[tokio::test]
    async fn empty_latex_document() {
        let actual_edit = FeatureTester::new()
            .file("main.tex", "")
            .main("main.tex")
            .position(0, 0)
            .new_name("")
            .test_rename(LatexCommandRenameProvider)
            .await;

        assert_eq!(actual_edit, None);
    }

    #[tokio::test]
    async fn empty_bibtex_document() {
        let actual_edit = FeatureTester::new()
            .file("main.bib", "")
            .main("main.bib")
            .position(0, 0)
            .new_name("")
            .test_rename(LatexCommandRenameProvider)
            .await;

        assert_eq!(actual_edit, None);
    }
}