rust-analyzer/crates/ra_ide/src/display/function_signature.rs

241 lines
7.7 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
use std::fmt::{self, Display};
2019-06-11 14:54:51 +00:00
use hir::{Docs, Documentation, HasSource, HirDisplay};
use join_to_string::join;
2020-02-06 11:52:32 +00:00
use ra_ide_db::RootDatabase;
use ra_syntax::ast::{self, AstNode, NameOwner, VisibilityOwner};
use std::convert::From;
2019-06-11 14:54:51 +00:00
2020-02-06 11:52:32 +00:00
use crate::display::{generic_parameters, where_predicates};
2019-10-28 00:11:02 +00:00
#[derive(Debug)]
2019-10-29 13:46:55 +00:00
pub enum CallableKind {
2019-10-28 00:11:02 +00:00
Function,
2019-10-29 13:46:55 +00:00
StructConstructor,
VariantConstructor,
2019-10-29 16:16:55 +00:00
Macro,
2019-10-28 00:11:02 +00:00
}
/// Contains information about a function signature
#[derive(Debug)]
pub struct FunctionSignature {
2019-10-29 13:46:55 +00:00
pub kind: CallableKind,
/// Optional visibility
pub visibility: Option<String>,
/// Name of the function
pub name: Option<String>,
/// Documentation for the function
pub doc: Option<Documentation>,
/// Generic parameters
pub generic_parameters: Vec<String>,
/// Parameters of the function
pub parameters: Vec<String>,
/// Parameter names of the function
pub parameter_names: Vec<String>,
/// Optional return type
pub ret_type: Option<String>,
/// Where predicates
pub where_predicates: Vec<String>,
}
impl FunctionSignature {
pub(crate) fn with_doc_opt(mut self, doc: Option<Documentation>) -> Self {
self.doc = doc;
self
}
2020-02-06 11:52:32 +00:00
pub(crate) fn from_hir(db: &RootDatabase, function: hir::Function) -> Self {
let doc = function.docs(db);
2019-11-20 06:40:36 +00:00
let ast_node = function.source(db).value;
2019-07-19 09:56:47 +00:00
FunctionSignature::from(&ast_node).with_doc_opt(doc)
}
2020-02-06 11:52:32 +00:00
pub(crate) fn from_struct(db: &RootDatabase, st: hir::Struct) -> Option<Self> {
2019-11-20 06:40:36 +00:00
let node: ast::StructDef = st.source(db).value;
match node.kind() {
2019-11-22 18:52:06 +00:00
ast::StructKind::Record(_) => return None,
_ => (),
};
let params = st
.fields(db)
.into_iter()
.map(|field: hir::StructField| {
let ty = field.ty(db);
format!("{}", ty.display(db))
})
.collect();
Some(
FunctionSignature {
2019-10-29 13:46:55 +00:00
kind: CallableKind::StructConstructor,
visibility: node.visibility().map(|n| n.syntax().text().to_string()),
name: node.name().map(|n| n.text().to_string()),
ret_type: node.name().map(|n| n.text().to_string()),
parameters: params,
parameter_names: vec![],
generic_parameters: generic_parameters(&node),
where_predicates: where_predicates(&node),
doc: None,
}
.with_doc_opt(st.docs(db)),
)
}
2019-10-28 01:26:12 +00:00
2020-02-06 11:52:32 +00:00
pub(crate) fn from_enum_variant(db: &RootDatabase, variant: hir::EnumVariant) -> Option<Self> {
2019-11-20 06:40:36 +00:00
let node: ast::EnumVariant = variant.source(db).value;
match node.kind() {
2019-11-22 18:52:06 +00:00
ast::StructKind::Record(_) | ast::StructKind::Unit => return None,
_ => (),
};
2019-10-28 01:26:12 +00:00
2019-11-27 20:22:20 +00:00
let parent_name = variant.parent_enum(db).name(db).to_string();
2019-10-28 01:26:12 +00:00
2019-11-27 20:22:20 +00:00
let name = format!("{}::{}", parent_name, variant.name(db));
2019-10-28 01:26:12 +00:00
let params = variant
.fields(db)
.into_iter()
.map(|field: hir::StructField| {
let name = field.name(db);
let ty = field.ty(db);
format!("{}: {}", name, ty.display(db))
})
.collect();
Some(
FunctionSignature {
2019-10-29 13:46:55 +00:00
kind: CallableKind::VariantConstructor,
visibility: None,
name: Some(name),
ret_type: None,
parameters: params,
parameter_names: vec![],
generic_parameters: vec![],
where_predicates: vec![],
doc: None,
}
.with_doc_opt(variant.docs(db)),
)
2019-10-28 01:26:12 +00:00
}
2019-10-29 16:16:55 +00:00
2020-02-06 11:52:32 +00:00
pub(crate) fn from_macro(db: &RootDatabase, macro_def: hir::MacroDef) -> Option<Self> {
2019-11-20 06:40:36 +00:00
let node: ast::MacroCall = macro_def.source(db).value;
2019-10-29 16:16:55 +00:00
let params = vec![];
Some(
FunctionSignature {
kind: CallableKind::Macro,
visibility: None,
name: node.name().map(|n| n.text().to_string()),
ret_type: None,
parameters: params,
parameter_names: vec![],
2019-10-29 16:16:55 +00:00
generic_parameters: vec![],
where_predicates: vec![],
doc: None,
}
.with_doc_opt(macro_def.docs(db)),
)
}
}
impl From<&'_ ast::FnDef> for FunctionSignature {
fn from(node: &ast::FnDef) -> FunctionSignature {
fn param_list(node: &ast::FnDef) -> Vec<String> {
let mut res = vec![];
if let Some(param_list) = node.param_list() {
if let Some(self_param) = param_list.self_param() {
res.push(self_param.syntax().text().to_string())
}
res.extend(param_list.params().map(|param| param.syntax().text().to_string()));
}
res
}
fn param_name_list(node: &ast::FnDef) -> Vec<String> {
let mut res = vec![];
if let Some(param_list) = node.param_list() {
if let Some(self_param) = param_list.self_param() {
res.push(self_param.syntax().text().to_string())
}
res.extend(
param_list
.params()
.map(|param| {
Some(
param
.pat()?
.syntax()
.descendants()
.find_map(ast::Name::cast)?
.text()
.to_string(),
)
})
.map(|param| param.unwrap_or_default()),
);
}
res
}
FunctionSignature {
2019-10-29 13:46:55 +00:00
kind: CallableKind::Function,
visibility: node.visibility().map(|n| n.syntax().text().to_string()),
name: node.name().map(|n| n.text().to_string()),
ret_type: node
.ret_type()
.and_then(|r| r.type_ref())
.map(|n| n.syntax().text().to_string()),
parameters: param_list(node),
parameter_names: param_name_list(node),
generic_parameters: generic_parameters(node),
where_predicates: where_predicates(node),
// docs are processed separately
doc: None,
}
}
}
impl Display for FunctionSignature {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if let Some(t) = &self.visibility {
write!(f, "{} ", t)?;
}
if let Some(name) = &self.name {
2019-10-28 00:11:02 +00:00
match self.kind {
2019-10-29 13:46:55 +00:00
CallableKind::Function => write!(f, "fn {}", name)?,
CallableKind::StructConstructor => write!(f, "struct {}", name)?,
CallableKind::VariantConstructor => write!(f, "{}", name)?,
2019-10-29 16:16:55 +00:00
CallableKind::Macro => write!(f, "{}!", name)?,
2019-10-28 00:11:02 +00:00
}
}
if !self.generic_parameters.is_empty() {
join(self.generic_parameters.iter())
.separator(", ")
.surround_with("<", ">")
.to_fmt(f)?;
}
join(self.parameters.iter()).separator(", ").surround_with("(", ")").to_fmt(f)?;
if let Some(t) = &self.ret_type {
write!(f, " -> {}", t)?;
}
if !self.where_predicates.is_empty() {
write!(f, "\nwhere ")?;
join(self.where_predicates.iter()).separator(",\n ").to_fmt(f)?;
}
Ok(())
}
}