aboutsummaryrefslogtreecommitdiff
path: root/crates/assists/src/handlers/extract_module_to_file.rs
blob: 5fc190fa67d6f12cd28a348e81b97c45651d7f75 (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
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
use ast::edit::IndentLevel;
use ide_db::base_db::{AnchoredPathBuf, SourceDatabaseExt};
use syntax::{
    ast::{self, edit::AstNodeEdit, NameOwner},
    AstNode,
};

use crate::{AssistContext, AssistId, AssistKind, Assists};

// Assist: extract_module_to_file
//
// This assist extract module to file.
//
// ```
// mod foo {<|>
//     fn t() {}
// }
// ```
// ->
// ```
// mod foo;
// ```
pub(crate) fn extract_module_to_file(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
    let assist_id = AssistId("extract_module_to_file", AssistKind::RefactorExtract);
    let assist_label = "Extract module to file";
    let db = ctx.db();
    let module_ast = ctx.find_node_at_offset::<ast::Module>()?;
    let module_items = module_ast.item_list()?;
    let dedent_module_items_text = module_items.dedent(IndentLevel(1)).to_string();
    let module_name = module_ast.name()?;
    let target = module_ast.syntax().text_range();
    let anchor_file_id = ctx.frange.file_id;
    let sr = db.file_source_root(anchor_file_id);
    let sr = db.source_root(sr);
    let file_path = sr.path_for_file(&anchor_file_id)?;
    let (file_name, file_ext) = file_path.name_and_extension()?;
    acc.add(assist_id, assist_label, target, |builder| {
        builder.replace(target, format!("mod {};", module_name));
        let path = if is_main_or_lib(file_name) {
            format!("./{}.{}", module_name, file_ext.unwrap())
        } else {
            format!("./{}/{}.{}", file_name, module_name, file_ext.unwrap())
        };
        let dst = AnchoredPathBuf { anchor: anchor_file_id, path };
        let contents = update_module_items_string(dedent_module_items_text);
        builder.create_file(dst, contents);
    })
}
fn is_main_or_lib(file_name: &str) -> bool {
    file_name == "main".to_string() || file_name == "lib".to_string()
}
fn update_module_items_string(items_str: String) -> String {
    let mut items_string_lines: Vec<&str> = items_str.lines().collect();
    items_string_lines.pop(); // Delete last line
    items_string_lines.reverse();
    items_string_lines.pop(); // Delete first line
    items_string_lines.reverse();

    let string = items_string_lines.join("\n");
    format!("{}", string)
}

#[cfg(test)]
mod tests {
    use crate::tests::check_assist;

    use super::*;

    #[test]
    fn extract_module_to_file_with_basic_module() {
        check_assist(
            extract_module_to_file,
            r#"
//- /foo.rs crate:foo
mod tests {<|>
    #[test] fn t() {}
}
"#,
            r#"
//- /foo.rs
mod tests;
//- /foo/tests.rs
#[test] fn t() {}"#,
        )
    }

    #[test]
    fn extract_module_to_file_with_file_path() {
        check_assist(
            extract_module_to_file,
            r#"
//- /src/foo.rs crate:foo
mod bar {<|>
    fn f() {

    }
}
fn main() {
    println!("Hello, world!");
}
"#,
            r#"
//- /src/foo.rs
mod bar;
fn main() {
    println!("Hello, world!");
}
//- /src/foo/bar.rs
fn f() {

}"#,
        )
    }

    #[test]
    fn extract_module_to_file_with_main_filw() {
        check_assist(
            extract_module_to_file,
            r#"
//- /main.rs
mod foo {<|>
    fn f() {

    }
}
fn main() {
    println!("Hello, world!");
}
"#,
            r#"
//- /main.rs
mod foo;
fn main() {
    println!("Hello, world!");
}
//- /foo.rs
fn f() {

}"#,
        )
    }

    #[test]
    fn extract_module_to_file_with_lib_file() {
        check_assist(
            extract_module_to_file,
            r#"
//- /lib.rs
mod foo {<|>
    fn f() {

    }
}
fn main() {
    println!("Hello, world!");
}
"#,
            r#"
//- /lib.rs
mod foo;
fn main() {
    println!("Hello, world!");
}
//- /foo.rs
fn f() {

}"#,
        )
    }
}