rust-analyzer/crates/ra_ide/src/call_info.rs

701 lines
17 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
use hir::Semantics;
2020-02-06 11:52:32 +00:00
use ra_ide_db::RootDatabase;
2019-01-08 19:33:36 +00:00
use ra_syntax::{
ast::{self, ArgListOwner},
2020-02-27 15:05:35 +00:00
match_ast, AstNode, SyntaxNode, SyntaxToken,
2019-01-08 19:33:36 +00:00
};
2020-05-20 10:59:20 +00:00
use test_utils::mark;
2019-01-08 19:33:36 +00:00
use crate::{CallInfo, FilePosition, FunctionSignature};
2019-01-08 19:33:36 +00:00
/// Computes parameter information for the given call expression.
2019-01-15 18:02:42 +00:00
pub(crate) fn call_info(db: &RootDatabase, position: FilePosition) -> Option<CallInfo> {
let sema = Semantics::new(db);
let file = sema.parse(position.file_id);
let file = file.syntax();
let token = file.token_at_offset(position.offset).next()?;
let token = sema.descend_into_macros(token);
2020-02-27 15:05:35 +00:00
call_info_for_token(&sema, token)
}
2019-01-08 19:33:36 +00:00
2020-04-23 23:46:00 +00:00
#[derive(Debug)]
pub(crate) struct ActiveParameter {
/// FIXME: should be `Type` and `Name
pub(crate) ty: String,
pub(crate) name: String,
}
impl ActiveParameter {
pub(crate) fn at(db: &RootDatabase, position: FilePosition) -> Option<Self> {
call_info(db, position)?.into_active_parameter()
}
pub(crate) fn at_token(sema: &Semantics<RootDatabase>, token: SyntaxToken) -> Option<Self> {
call_info_for_token(sema, token)?.into_active_parameter()
}
}
fn call_info_for_token(sema: &Semantics<RootDatabase>, token: SyntaxToken) -> Option<CallInfo> {
2019-01-08 19:33:36 +00:00
// Find the calling expression and it's NameRef
let calling_node = FnCallNode::with_node(&token.parent())?;
2019-01-08 19:33:36 +00:00
let (mut call_info, has_self) = match &calling_node {
FnCallNode::CallExpr(call) => {
//FIXME: Type::as_callable is broken
let callable_def = sema.type_of_expr(&call.expr()?)?.as_callable()?;
match callable_def {
2019-11-25 13:26:52 +00:00
hir::CallableDef::FunctionId(it) => {
let fn_def = it.into();
2020-02-27 15:05:35 +00:00
(CallInfo::with_fn(sema.db, fn_def), fn_def.has_self_param(sema.db))
}
hir::CallableDef::StructId(it) => {
(CallInfo::with_struct(sema.db, it.into())?, false)
2019-11-25 13:26:52 +00:00
}
hir::CallableDef::EnumVariantId(it) => {
2020-02-27 15:05:35 +00:00
(CallInfo::with_enum_variant(sema.db, it.into())?, false)
}
}
}
FnCallNode::MethodCallExpr(method_call) => {
let function = sema.resolve_method_call(&method_call)?;
2020-02-27 15:05:35 +00:00
(CallInfo::with_fn(sema.db, function), function.has_self_param(sema.db))
}
FnCallNode::MacroCallExpr(macro_call) => {
let macro_def = sema.resolve_macro_call(&macro_call)?;
2020-02-27 15:05:35 +00:00
(CallInfo::with_macro(sema.db, macro_def)?, false)
2019-10-29 16:16:55 +00:00
}
};
2019-01-08 19:33:36 +00:00
// If we have a calling expression let's find which argument we are on
let num_params = call_info.parameters().len();
2019-01-08 19:33:36 +00:00
2020-01-13 16:38:53 +00:00
match num_params {
0 => (),
1 => {
2020-01-13 16:27:06 +00:00
if !has_self {
call_info.active_parameter = Some(0);
}
2019-01-08 19:33:36 +00:00
}
2020-01-13 16:38:53 +00:00
_ => {
2020-01-13 16:27:06 +00:00
if let Some(arg_list) = calling_node.arg_list() {
// Number of arguments specified at the call site
let num_args_at_callsite = arg_list.args().count();
2020-01-13 16:27:06 +00:00
let arg_list_range = arg_list.syntax().text_range();
2020-02-27 15:05:35 +00:00
if !arg_list_range.contains_inclusive(token.text_range().start()) {
2020-05-20 10:59:20 +00:00
mark::hit!(call_info_bad_offset);
2020-01-13 16:27:06 +00:00
return None;
}
2019-01-08 19:33:36 +00:00
2020-01-13 16:27:06 +00:00
let mut param = std::cmp::min(
num_args_at_callsite,
arg_list
.args()
2020-02-27 15:05:35 +00:00
.take_while(|arg| {
arg.syntax().text_range().end() < token.text_range().start()
})
2020-01-13 16:27:06 +00:00
.count(),
);
2019-03-27 15:02:06 +00:00
2020-01-13 16:27:06 +00:00
// If we are in a method account for `self`
if has_self {
param += 1;
}
2019-01-08 19:33:36 +00:00
2020-01-13 16:27:06 +00:00
call_info.active_parameter = Some(param);
}
2019-01-08 19:33:36 +00:00
}
}
2019-01-15 18:02:42 +00:00
Some(call_info)
2019-01-08 19:33:36 +00:00
}
2019-10-29 16:16:55 +00:00
#[derive(Debug)]
pub(crate) enum FnCallNode {
2019-07-19 09:56:47 +00:00
CallExpr(ast::CallExpr),
MethodCallExpr(ast::MethodCallExpr),
2019-10-29 16:16:55 +00:00
MacroCallExpr(ast::MacroCall),
2019-01-08 19:33:36 +00:00
}
2019-07-19 09:56:47 +00:00
impl FnCallNode {
fn with_node(syntax: &SyntaxNode) -> Option<FnCallNode> {
syntax.ancestors().find_map(|node| {
match_ast! {
match node {
2020-04-06 14:21:33 +00:00
ast::CallExpr(it) => Some(FnCallNode::CallExpr(it)),
2020-02-27 15:05:35 +00:00
ast::MethodCallExpr(it) => {
let arg_list = it.arg_list()?;
2020-04-24 21:40:41 +00:00
if !arg_list.syntax().text_range().contains_range(syntax.text_range()) {
2020-02-27 15:05:35 +00:00
return None;
}
Some(FnCallNode::MethodCallExpr(it))
},
2020-04-06 14:21:33 +00:00
ast::MacroCall(it) => Some(FnCallNode::MacroCallExpr(it)),
_ => None,
}
}
})
2019-01-08 19:33:36 +00:00
}
pub(crate) fn with_node_exact(node: &SyntaxNode) -> Option<FnCallNode> {
match_ast! {
match node {
2020-04-06 14:21:33 +00:00
ast::CallExpr(it) => Some(FnCallNode::CallExpr(it)),
ast::MethodCallExpr(it) => Some(FnCallNode::MethodCallExpr(it)),
ast::MacroCall(it) => Some(FnCallNode::MacroCallExpr(it)),
_ => None,
}
}
}
pub(crate) fn name_ref(&self) -> Option<ast::NameRef> {
2019-07-19 09:56:47 +00:00
match self {
2019-08-19 11:13:58 +00:00
FnCallNode::CallExpr(call_expr) => Some(match call_expr.expr()? {
ast::Expr::PathExpr(path_expr) => path_expr.path()?.segment()?.name_ref()?,
2019-01-08 19:33:36 +00:00
_ => return None,
}),
2019-02-08 11:49:43 +00:00
FnCallNode::MethodCallExpr(call_expr) => {
2020-02-18 13:32:19 +00:00
call_expr.syntax().children().filter_map(ast::NameRef::cast).next()
2019-02-08 11:49:43 +00:00
}
2019-10-29 16:16:55 +00:00
FnCallNode::MacroCallExpr(call_expr) => call_expr.path()?.segment()?.name_ref(),
2019-01-08 19:33:36 +00:00
}
}
2019-07-19 09:56:47 +00:00
fn arg_list(&self) -> Option<ast::ArgList> {
match self {
2019-01-08 19:33:36 +00:00
FnCallNode::CallExpr(expr) => expr.arg_list(),
FnCallNode::MethodCallExpr(expr) => expr.arg_list(),
2019-10-29 16:16:55 +00:00
FnCallNode::MacroCallExpr(_) => None,
2019-01-08 19:33:36 +00:00
}
}
}
impl CallInfo {
2020-04-23 23:46:00 +00:00
fn into_active_parameter(self) -> Option<ActiveParameter> {
let idx = self.active_parameter?;
let ty = self.signature.parameter_types.get(idx)?.clone();
let name = self.signature.parameter_names.get(idx)?.clone();
let res = ActiveParameter { ty, name };
Some(res)
}
fn with_fn(db: &RootDatabase, function: hir::Function) -> Self {
2019-04-08 07:46:26 +00:00
let signature = FunctionSignature::from_hir(db, function);
2019-01-08 19:33:36 +00:00
2019-04-08 07:46:26 +00:00
CallInfo { signature, active_parameter: None }
2019-01-08 19:33:36 +00:00
}
fn with_struct(db: &RootDatabase, st: hir::Struct) -> Option<Self> {
let signature = FunctionSignature::from_struct(db, st)?;
Some(CallInfo { signature, active_parameter: None })
}
fn with_enum_variant(db: &RootDatabase, variant: hir::EnumVariant) -> Option<Self> {
let signature = FunctionSignature::from_enum_variant(db, variant)?;
2019-10-28 01:26:12 +00:00
Some(CallInfo { signature, active_parameter: None })
2019-10-28 01:26:12 +00:00
}
2019-10-29 16:16:55 +00:00
fn with_macro(db: &RootDatabase, macro_def: hir::MacroDef) -> Option<Self> {
let signature = FunctionSignature::from_macro(db, macro_def)?;
Some(CallInfo { signature, active_parameter: None })
}
fn parameters(&self) -> &[String] {
&self.signature.parameters
}
2019-01-08 19:33:36 +00:00
}
#[cfg(test)]
mod tests {
2020-07-15 08:09:10 +00:00
use expect::{expect, Expect};
2020-05-20 10:59:20 +00:00
use test_utils::mark;
2019-01-08 19:33:36 +00:00
2020-06-24 09:31:30 +00:00
use crate::mock_analysis::analysis_and_position;
2019-01-08 19:33:36 +00:00
2020-07-15 08:09:10 +00:00
fn check(ra_fixture: &str, expect: Expect) {
let (analysis, position) = analysis_and_position(ra_fixture);
let call_info = analysis.call_info(position).unwrap();
let actual = match call_info {
Some(call_info) => {
let docs = match &call_info.signature.doc {
None => "".to_string(),
Some(docs) => format!("{}\n------\n", docs.as_str()),
};
let params = call_info
.parameters()
.iter()
.enumerate()
.map(|(i, param)| {
if Some(i) == call_info.active_parameter {
format!("<{}>", param)
} else {
param.clone()
}
})
.collect::<Vec<_>>()
.join(", ");
format!("{}{}\n({})\n", docs, call_info.signature, params)
}
None => String::new(),
};
expect.assert_eq(&actual);
2019-01-08 19:33:36 +00:00
}
#[test]
2020-07-15 08:09:10 +00:00
fn test_fn_signature_two_args() {
check(
r#"
fn foo(x: u32, y: u32) -> u32 {x + y}
fn bar() { foo(<|>3, ); }
"#,
expect![[r#"
fn foo(x: u32, y: u32) -> u32
(<x: u32>, y: u32)
"#]],
2019-01-08 19:33:36 +00:00
);
2020-07-15 08:09:10 +00:00
check(
r#"
fn foo(x: u32, y: u32) -> u32 {x + y}
fn bar() { foo(3<|>, ); }
"#,
expect![[r#"
fn foo(x: u32, y: u32) -> u32
(<x: u32>, y: u32)
"#]],
);
check(
r#"
fn foo(x: u32, y: u32) -> u32 {x + y}
fn bar() { foo(3,<|> ); }
"#,
expect![[r#"
fn foo(x: u32, y: u32) -> u32
(<x: u32>, y: u32)
"#]],
);
check(
r#"
fn foo(x: u32, y: u32) -> u32 {x + y}
fn bar() { foo(3, <|>); }
"#,
expect![[r#"
fn foo(x: u32, y: u32) -> u32
(x: u32, <y: u32>)
"#]],
2019-01-08 19:33:36 +00:00
);
}
#[test]
fn test_fn_signature_two_args_empty() {
2020-07-15 08:09:10 +00:00
check(
r#"
fn foo(x: u32, y: u32) -> u32 {x + y}
fn bar() { foo(<|>); }
"#,
expect![[r#"
fn foo(x: u32, y: u32) -> u32
(<x: u32>, y: u32)
"#]],
);
}
#[test]
fn test_fn_signature_two_args_first_generics() {
2020-07-15 08:09:10 +00:00
check(
r#"
fn foo<T, U: Copy + Display>(x: T, y: U) -> u32
2020-07-15 08:09:10 +00:00
where T: Copy + Display, U: Debug
{ x + y }
fn bar() { foo(<|>3, ); }
"#,
expect![[r#"
fn foo<T, U: Copy + Display>(x: T, y: U) -> u32
where T: Copy + Display,
U: Debug
(<x: T>, y: U)
"#]],
);
}
2019-04-04 16:43:32 +00:00
#[test]
fn test_fn_signature_no_params() {
2020-07-15 08:09:10 +00:00
check(
2019-04-04 16:43:32 +00:00
r#"
2020-07-15 08:09:10 +00:00
fn foo<T>() -> T where T: Copy + Display {}
fn bar() { foo(<|>); }
"#,
expect![[r#"
fn foo<T>() -> T
where T: Copy + Display
()
"#]],
2019-04-04 16:43:32 +00:00
);
}
2019-01-08 19:33:36 +00:00
#[test]
fn test_fn_signature_for_impl() {
2020-07-15 08:09:10 +00:00
check(
r#"
struct F; impl F { pub fn new() { F{}} }
fn bar() {let _ : F = F::new(<|>);}
"#,
expect![[r#"
pub fn new()
()
"#]],
2019-01-08 19:33:36 +00:00
);
}
#[test]
fn test_fn_signature_for_method_self() {
2020-07-15 08:09:10 +00:00
check(
r#"
struct S;
impl S { pub fn do_it(&self) {} }
2019-01-08 19:33:36 +00:00
fn bar() {
2020-07-15 08:09:10 +00:00
let s: S = S;
s.do_it(<|>);
}
"#,
expect![[r#"
pub fn do_it(&self)
(&self)
"#]],
2019-01-08 19:33:36 +00:00
);
}
#[test]
fn test_fn_signature_for_method_with_arg() {
2020-07-15 08:09:10 +00:00
check(
r#"
struct S;
impl S { pub fn do_it(&self, x: i32) {} }
2019-01-08 19:33:36 +00:00
fn bar() {
2020-07-15 08:09:10 +00:00
let s: S = S;
s.do_it(<|>);
}
"#,
expect![[r#"
pub fn do_it(&self, x: i32)
(&self, <x: i32>)
"#]],
2019-01-08 19:33:36 +00:00
);
}
#[test]
fn test_fn_signature_with_docs_simple() {
2020-07-15 08:09:10 +00:00
check(
2019-01-08 19:33:36 +00:00
r#"
/// test
// non-doc-comment
fn foo(j: u32) -> u32 {
j
}
fn bar() {
let _ = foo(<|>);
}
"#,
2020-07-15 08:09:10 +00:00
expect![[r#"
test
------
fn foo(j: u32) -> u32
(<j: u32>)
"#]],
2019-01-08 19:33:36 +00:00
);
}
#[test]
fn test_fn_signature_with_docs() {
2020-07-15 08:09:10 +00:00
check(
2019-01-08 19:33:36 +00:00
r#"
/// Adds one to the number given.
///
/// # Examples
///
/// ```
/// let five = 5;
///
/// assert_eq!(6, my_crate::add_one(5));
/// ```
pub fn add_one(x: i32) -> i32 {
x + 1
}
pub fn do() {
add_one(<|>
}"#,
2020-07-15 08:09:10 +00:00
expect![[r##"
Adds one to the number given.
2019-01-08 19:33:36 +00:00
2020-07-15 08:09:10 +00:00
# Examples
2019-01-08 19:33:36 +00:00
2020-07-15 08:09:10 +00:00
```
let five = 5;
2019-01-08 19:33:36 +00:00
2020-07-15 08:09:10 +00:00
assert_eq!(6, my_crate::add_one(5));
```
------
pub fn add_one(x: i32) -> i32
(<x: i32>)
"##]],
2019-01-08 19:33:36 +00:00
);
}
#[test]
fn test_fn_signature_with_docs_impl() {
2020-07-15 08:09:10 +00:00
check(
2019-01-08 19:33:36 +00:00
r#"
struct addr;
impl addr {
/// Adds one to the number given.
///
/// # Examples
///
/// ```
/// let five = 5;
///
/// assert_eq!(6, my_crate::add_one(5));
/// ```
pub fn add_one(x: i32) -> i32 {
x + 1
}
}
pub fn do_it() {
addr {};
addr::add_one(<|>);
2020-07-15 08:09:10 +00:00
}
"#,
expect![[r##"
Adds one to the number given.
2019-01-08 19:33:36 +00:00
2020-07-15 08:09:10 +00:00
# Examples
2019-01-08 19:33:36 +00:00
2020-07-15 08:09:10 +00:00
```
let five = 5;
2019-01-08 19:33:36 +00:00
2020-07-15 08:09:10 +00:00
assert_eq!(6, my_crate::add_one(5));
```
------
pub fn add_one(x: i32) -> i32
(<x: i32>)
"##]],
2019-01-08 19:33:36 +00:00
);
}
#[test]
fn test_fn_signature_with_docs_from_actix() {
2020-07-15 08:09:10 +00:00
check(
2019-01-08 19:33:36 +00:00
r#"
struct WriteHandler<E>;
impl<E> WriteHandler<E> {
2019-01-08 19:33:36 +00:00
/// Method is called when writer emits error.
///
/// If this method returns `ErrorAction::Continue` writer processing
/// continues otherwise stream processing stops.
fn error(&mut self, err: E, ctx: &mut Self::Context) -> Running {
Running::Stop
}
/// Method is called when writer finishes.
///
/// By default this method stops actor's `Context`.
fn finished(&mut self, ctx: &mut Self::Context) {
ctx.stop()
}
}
pub fn foo(mut r: WriteHandler<()>) {
2019-01-08 19:33:36 +00:00
r.finished(<|>);
}
"#,
2020-07-15 08:09:10 +00:00
expect![[r#"
Method is called when writer finishes.
By default this method stops actor's `Context`.
------
fn finished(&mut self, ctx: &mut Self::Context)
(&mut self, <ctx: &mut Self::Context>)
"#]],
2019-01-08 19:33:36 +00:00
);
}
#[test]
fn call_info_bad_offset() {
2020-05-20 10:59:20 +00:00
mark::check!(call_info_bad_offset);
2020-07-15 08:09:10 +00:00
check(
r#"
fn foo(x: u32, y: u32) -> u32 {x + y}
fn bar() { foo <|> (3, ); }
"#,
expect![[""]],
);
}
#[test]
2020-07-15 08:09:10 +00:00
fn test_nested_method_in_lambda() {
check(
r#"
struct Foo;
impl Foo { fn bar(&self, _: u32) { } }
fn bar(_: u32) { }
fn main() {
let foo = Foo;
std::thread::spawn(move || foo.bar(<|>));
2020-07-15 08:09:10 +00:00
}
"#,
expect![[r#"
fn bar(&self, _: u32)
(&self, <_: u32>)
"#]],
);
}
2019-10-28 12:42:17 +00:00
#[test]
fn works_for_tuple_structs() {
2020-07-15 08:09:10 +00:00
check(
r#"
/// A cool tuple struct
2019-10-28 00:11:02 +00:00
struct TS(u32, i32);
fn main() {
2019-10-28 00:11:02 +00:00
let s = TS(0, <|>);
2020-07-15 08:09:10 +00:00
}
"#,
expect![[r#"
A cool tuple struct
------
struct TS(u32, i32) -> TS
(u32, <i32>)
"#]],
);
}
2019-10-28 01:26:12 +00:00
#[test]
fn generic_struct() {
2020-07-15 08:09:10 +00:00
check(
r#"
struct TS<T>(T);
fn main() {
let s = TS(<|>);
2020-07-15 08:09:10 +00:00
}
"#,
expect![[r#"
struct TS<T>(T) -> TS
(<T>)
"#]],
);
}
#[test]
fn cant_call_named_structs() {
2020-07-15 08:09:10 +00:00
check(
r#"
struct TS { x: u32, y: i32 }
fn main() {
let s = TS(<|>);
2020-07-15 08:09:10 +00:00
}
"#,
expect![[""]],
);
}
2019-10-28 01:26:12 +00:00
#[test]
fn works_for_enum_variants() {
2020-07-15 08:09:10 +00:00
check(
2019-10-28 01:26:12 +00:00
r#"
enum E {
/// A Variant
A(i32),
/// Another
B,
/// And C
2019-10-28 02:03:58 +00:00
C { a: i32, b: i32 }
2019-10-28 01:26:12 +00:00
}
fn main() {
let a = E::A(<|>);
}
2020-07-15 08:09:10 +00:00
"#,
expect![[r#"
A Variant
------
E::A(0: i32)
(<0: i32>)
"#]],
2019-10-28 01:26:12 +00:00
);
}
#[test]
fn cant_call_enum_records() {
2020-07-15 08:09:10 +00:00
check(
r#"
enum E {
/// A Variant
A(i32),
/// Another
B,
/// And C
C { a: i32, b: i32 }
}
fn main() {
let a = E::C(<|>);
}
2020-07-15 08:09:10 +00:00
"#,
expect![[""]],
);
}
2019-10-29 16:16:55 +00:00
#[test]
fn fn_signature_for_macro() {
2020-07-15 08:09:10 +00:00
check(
2019-10-29 16:16:55 +00:00
r#"
/// empty macro
macro_rules! foo {
() => {}
}
fn f() {
foo!(<|>);
}
2020-07-15 08:09:10 +00:00
"#,
expect![[r#"
empty macro
------
foo!()
()
"#]],
2019-10-29 16:16:55 +00:00
);
}
#[test]
fn fn_signature_for_call_in_macro() {
2020-07-15 08:09:10 +00:00
check(
r#"
2020-07-15 08:09:10 +00:00
macro_rules! id { ($($tt:tt)*) => { $($tt)* } }
fn foo() { }
id! {
fn bar() { foo(<|>); }
}
"#,
expect![[r#"
fn foo()
()
"#]],
);
}
2019-01-08 19:33:36 +00:00
}