rust-analyzer/crates/ide_assists/src/lib.rs

252 lines
8.9 KiB
Rust
Raw Normal View History

2020-08-13 15:33:38 +00:00
//! `assists` crate provides a bunch of code assists, also known as code
2019-02-03 18:26:35 +00:00
//! actions (in LSP) or intentions (in IntelliJ).
//!
//! An assist is a micro-refactoring, which is automatically activated in
//! certain context. For example, if the cursor is over `,`, a "swap `,`" assist
//! becomes available.
2020-04-06 14:58:16 +00:00
#[allow(unused)]
macro_rules! eprintln {
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
}
2020-05-17 10:09:53 +00:00
mod assist_config;
mod assist_context;
2019-10-25 11:16:46 +00:00
#[cfg(test)]
2020-05-06 08:16:55 +00:00
mod tests;
pub mod utils;
pub mod ast_transform;
2020-05-05 18:44:13 +00:00
use hir::Semantics;
2020-10-24 08:39:57 +00:00
use ide_db::base_db::FileRange;
2020-08-18 14:41:21 +00:00
use ide_db::{label::Label, source_change::SourceChange, RootDatabase};
2020-08-12 16:26:51 +00:00
use syntax::TextRange;
2019-02-03 18:26:35 +00:00
pub(crate) use crate::assist_context::{AssistContext, Assists};
2019-02-03 18:26:35 +00:00
pub use assist_config::AssistConfig;
2020-05-17 10:09:53 +00:00
2020-07-02 21:48:35 +00:00
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum AssistKind {
None,
QuickFix,
2020-07-03 17:14:42 +00:00
Generate,
2020-07-02 21:48:35 +00:00
Refactor,
RefactorExtract,
RefactorInline,
RefactorRewrite,
}
2020-07-13 21:41:47 +00:00
impl AssistKind {
pub fn contains(self, other: AssistKind) -> bool {
if self == other {
return true;
}
match self {
AssistKind::None | AssistKind::Generate => return true,
AssistKind::Refactor => match other {
AssistKind::RefactorExtract
| AssistKind::RefactorInline
| AssistKind::RefactorRewrite => return true,
_ => return false,
},
_ => return false,
}
}
}
2019-02-24 10:53:35 +00:00
/// Unique identifier of the assist, should not be shown to the user
/// directly.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
2020-07-02 21:48:35 +00:00
pub struct AssistId(pub &'static str, pub AssistKind);
2019-02-24 10:53:35 +00:00
2020-05-07 15:29:23 +00:00
#[derive(Clone, Debug)]
pub struct GroupLabel(pub String);
#[derive(Debug, Clone)]
2020-05-07 15:09:59 +00:00
pub struct Assist {
pub id: AssistId,
2019-02-03 18:26:35 +00:00
/// Short description of the assist, as shown in the UI.
2020-08-18 14:41:21 +00:00
pub label: Label,
pub group: Option<GroupLabel>,
/// Target ranges are used to sort assists: the smaller the target range,
/// the more specific assist is, and so it should be sorted first.
pub target: TextRange,
/// Computing source change sometimes is much more costly then computing the
/// other fields. Additionally, the actual change is not required to show
/// the lightbulb UI, it only is needed when the user tries to apply an
/// assist. So, we compute it lazily: the API allow requesting assists with
/// or without source change. We could (and in fact, used to) distinguish
/// between resolved and unresolved assists at the type level, but this is
/// cumbersome, especially if you want to embed an assist into another data
/// structure, such as a diagnostic.
pub source_change: Option<SourceChange>,
2020-05-07 15:29:23 +00:00
}
2020-05-07 15:09:59 +00:00
impl Assist {
2020-05-07 15:29:23 +00:00
/// Return all the assists applicable at the given position.
pub fn get(
2020-05-17 10:09:53 +00:00
db: &RootDatabase,
config: &AssistConfig,
resolve: bool,
2020-05-17 10:09:53 +00:00
range: FileRange,
) -> Vec<Assist> {
2020-05-07 15:29:23 +00:00
let sema = Semantics::new(db);
2020-07-15 13:45:30 +00:00
let ctx = AssistContext::new(sema, config, range);
let mut acc = Assists::new(&ctx, resolve);
2020-05-07 15:29:23 +00:00
handlers::all().iter().for_each(|handler| {
handler(&mut acc, &ctx);
});
acc.finish()
2020-05-07 15:29:23 +00:00
}
2020-02-07 14:04:50 +00:00
}
2020-02-07 14:53:31 +00:00
mod handlers {
use crate::{AssistContext, Assists};
2020-05-05 20:14:01 +00:00
pub(crate) type Handler = fn(&mut Assists, &AssistContext) -> Option<()>;
2019-09-25 11:29:41 +00:00
mod add_explicit_type;
mod add_lifetime_to_type;
2020-03-18 15:48:45 +00:00
mod add_missing_impl_members;
2020-05-19 22:07:00 +00:00
mod add_turbo_fish;
mod apply_demorgan;
mod auto_import;
2019-09-25 11:29:41 +00:00
mod change_visibility;
mod convert_for_to_iter_for_each;
2020-09-29 18:48:43 +00:00
mod convert_integer_literal;
2020-03-18 15:48:45 +00:00
mod early_return;
2020-08-02 19:56:54 +00:00
mod expand_glob_import;
mod extract_function;
mod extract_struct_from_enum_variant;
2020-06-26 23:21:43 +00:00
mod extract_variable;
2019-09-25 11:29:41 +00:00
mod fill_match_arms;
mod fix_visibility;
2020-03-18 15:48:45 +00:00
mod flip_binexpr;
mod flip_comma;
mod flip_trait_bound;
mod generate_default_from_enum_variant;
mod generate_derive;
2021-02-05 00:57:39 +00:00
mod generate_enum_match_method;
mod generate_enum_projection_method;
2020-07-03 16:15:03 +00:00
mod generate_from_impl_for_enum;
mod generate_function;
mod generate_getter;
mod generate_getter_mut;
2020-07-03 16:15:03 +00:00
mod generate_impl;
mod generate_new;
mod generate_setter;
2020-11-06 00:47:41 +00:00
mod infer_function_return_type;
mod inline_function;
2019-09-25 11:29:41 +00:00
mod inline_local_variable;
2020-06-01 13:36:51 +00:00
mod introduce_named_lifetime;
2020-03-18 15:48:45 +00:00
mod invert_if;
mod merge_imports;
2020-03-18 15:48:45 +00:00
mod merge_match_arms;
mod move_bounds;
mod move_guard;
2021-01-06 13:24:47 +00:00
mod move_module_to_file;
mod pull_assignment_up;
2020-10-14 17:56:20 +00:00
mod qualify_path;
2019-09-25 11:29:41 +00:00
mod raw_string;
2020-03-18 15:48:45 +00:00
mod remove_dbg;
2020-02-19 11:44:20 +00:00
mod remove_mut;
mod remove_unused_param;
mod reorder_fields;
mod reorder_impl;
2020-11-09 12:07:18 +00:00
mod replace_derive_with_manual_impl;
2019-09-25 11:29:41 +00:00
mod replace_if_let_with_match;
mod replace_impl_trait_with_generic;
2020-03-27 11:12:17 +00:00
mod replace_let_with_if_let;
2020-03-18 15:48:45 +00:00
mod replace_qualified_name_with_use;
mod replace_string_with_char;
2020-03-26 09:16:10 +00:00
mod replace_unwrap_with_match;
2019-09-25 11:29:41 +00:00
mod split_import;
2020-11-30 10:45:32 +00:00
mod toggle_ignore;
2021-01-15 19:14:51 +00:00
mod unmerge_use;
mod unwrap_block;
2020-11-09 12:18:40 +00:00
mod wrap_return_type_in_result;
2019-09-25 11:29:41 +00:00
2020-05-05 20:14:01 +00:00
pub(crate) fn all() -> &'static [Handler] {
2019-09-25 11:29:41 +00:00
&[
// These are alphabetic for the foolish consistency
2019-09-25 11:29:41 +00:00
add_explicit_type::add_explicit_type,
add_lifetime_to_type::add_lifetime_to_type,
2020-05-19 22:07:00 +00:00
add_turbo_fish::add_turbo_fish,
apply_demorgan::apply_demorgan,
2020-03-18 15:48:45 +00:00
auto_import::auto_import,
2019-09-25 11:29:41 +00:00
change_visibility::change_visibility,
convert_for_to_iter_for_each::convert_for_to_iter_for_each,
2020-09-29 18:48:43 +00:00
convert_integer_literal::convert_integer_literal,
2020-03-18 15:48:45 +00:00
early_return::convert_to_guarded_return,
2020-08-02 19:56:54 +00:00
expand_glob_import::expand_glob_import,
2021-01-06 13:24:47 +00:00
move_module_to_file::move_module_to_file,
2020-06-03 18:43:57 +00:00
extract_struct_from_enum_variant::extract_struct_from_enum_variant,
2019-09-25 11:29:41 +00:00
fill_match_arms::fill_match_arms,
fix_visibility::fix_visibility,
2019-09-25 11:29:41 +00:00
flip_binexpr::flip_binexpr,
2020-03-18 15:48:45 +00:00
flip_comma::flip_comma,
flip_trait_bound::flip_trait_bound,
generate_default_from_enum_variant::generate_default_from_enum_variant,
generate_derive::generate_derive,
generate_enum_match_method::generate_enum_is_method,
generate_enum_projection_method::generate_enum_into_method,
generate_enum_projection_method::generate_enum_as_method,
2020-07-03 16:15:03 +00:00
generate_from_impl_for_enum::generate_from_impl_for_enum,
generate_function::generate_function,
generate_getter::generate_getter,
generate_getter_mut::generate_getter_mut,
2020-07-03 16:15:03 +00:00
generate_impl::generate_impl,
generate_new::generate_new,
generate_setter::generate_setter,
2020-11-06 00:47:41 +00:00
infer_function_return_type::infer_function_return_type,
inline_function::inline_function,
2020-01-19 16:39:53 +00:00
inline_local_variable::inline_local_variable,
2020-06-01 13:36:51 +00:00
introduce_named_lifetime::introduce_named_lifetime,
2020-03-18 15:48:45 +00:00
invert_if::invert_if,
merge_imports::merge_imports,
2020-03-18 15:48:45 +00:00
merge_match_arms::merge_match_arms,
2019-09-25 11:29:41 +00:00
move_bounds::move_bounds_to_where_clause,
2020-03-18 15:48:45 +00:00
move_guard::move_arm_cond_to_match_guard,
move_guard::move_guard_to_arm_body,
pull_assignment_up::pull_assignment_up,
2020-10-14 17:56:20 +00:00
qualify_path::qualify_path,
2019-09-25 11:29:41 +00:00
raw_string::add_hash,
raw_string::make_usual_string,
raw_string::remove_hash,
2020-03-18 15:48:45 +00:00
remove_dbg::remove_dbg,
2020-02-19 11:44:20 +00:00
remove_mut::remove_mut,
remove_unused_param::remove_unused_param,
2020-05-05 20:14:01 +00:00
reorder_fields::reorder_fields,
reorder_impl::reorder_impl,
2020-11-09 12:07:18 +00:00
replace_derive_with_manual_impl::replace_derive_with_manual_impl,
2020-03-18 15:48:45 +00:00
replace_if_let_with_match::replace_if_let_with_match,
2020-12-05 14:41:36 +00:00
replace_if_let_with_match::replace_match_with_if_let,
replace_impl_trait_with_generic::replace_impl_trait_with_generic,
2020-03-27 11:12:17 +00:00
replace_let_with_if_let::replace_let_with_if_let,
2020-03-18 15:48:45 +00:00
replace_qualified_name_with_use::replace_qualified_name_with_use,
2020-03-26 09:16:10 +00:00
replace_unwrap_with_match::replace_unwrap_with_match,
2020-03-18 15:48:45 +00:00
split_import::split_import,
2020-11-30 10:45:32 +00:00
toggle_ignore::toggle_ignore,
2021-01-15 19:14:51 +00:00
unmerge_use::unmerge_use,
unwrap_block::unwrap_block,
2020-11-09 12:18:40 +00:00
wrap_return_type_in_result::wrap_return_type_in_result,
2021-02-22 12:18:11 +00:00
// These are manually sorted for better priorities. By default,
// priority is determined by the size of the target range (smaller
// target wins). If the ranges are equal, position in this list is
// used as a tie-breaker.
add_missing_impl_members::add_missing_impl_members,
add_missing_impl_members::add_missing_default_members,
2020-10-26 20:59:28 +00:00
//
replace_string_with_char::replace_string_with_char,
raw_string::make_raw_string,
2021-02-22 12:18:11 +00:00
//
extract_variable::extract_variable,
extract_function::extract_function,
2020-05-05 20:14:01 +00:00
// Are you sure you want to add new assist here, and not to the
// sorted list above?
2019-09-25 11:29:41 +00:00
]
}
2019-02-03 18:26:35 +00:00
}