2019-09-30 08:58:53 +00:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2019-04-08 13:34:59 +00:00
|
|
|
use std::fmt::{self, Display};
|
2019-06-11 14:54:51 +00:00
|
|
|
|
2019-10-27 23:12:21 +00:00
|
|
|
use hir::{Docs, Documentation, HasSource, HirDisplay};
|
2019-04-08 13:34:59 +00:00
|
|
|
use join_to_string::join;
|
|
|
|
use ra_syntax::ast::{self, AstNode, NameOwner, VisibilityOwner};
|
|
|
|
use std::convert::From;
|
2019-06-11 14:54:51 +00:00
|
|
|
|
2019-07-04 20:05:17 +00:00
|
|
|
use crate::{
|
|
|
|
db,
|
|
|
|
display::{generic_parameters, where_predicates},
|
|
|
|
};
|
2019-04-08 13:34:59 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-04-08 13:34:59 +00:00
|
|
|
/// Contains information about a function signature
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct FunctionSignature {
|
2019-10-29 13:46:55 +00:00
|
|
|
pub kind: CallableKind,
|
2019-04-08 13:34:59 +00:00
|
|
|
/// 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>,
|
|
|
|
/// 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
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn from_hir(db: &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)
|
2019-04-08 13:34:59 +00:00
|
|
|
}
|
2019-10-27 23:12:21 +00:00
|
|
|
|
2019-10-28 14:48:40 +00:00
|
|
|
pub(crate) fn from_struct(db: &db::RootDatabase, st: hir::Struct) -> Option<Self> {
|
2019-11-20 06:40:36 +00:00
|
|
|
let node: ast::StructDef = st.source(db).value;
|
2019-10-28 14:48:40 +00:00
|
|
|
match node.kind() {
|
2019-11-22 18:52:06 +00:00
|
|
|
ast::StructKind::Record(_) => return None,
|
2019-10-28 14:48:40 +00:00
|
|
|
_ => (),
|
|
|
|
};
|
2019-10-27 23:12:21 +00:00
|
|
|
|
|
|
|
let params = st
|
|
|
|
.fields(db)
|
|
|
|
.into_iter()
|
|
|
|
.map(|field: hir::StructField| {
|
|
|
|
let ty = field.ty(db);
|
2019-10-28 14:48:40 +00:00
|
|
|
format!("{}", ty.display(db))
|
2019-10-27 23:12:21 +00:00
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
2019-10-28 14:48:40 +00:00
|
|
|
Some(
|
|
|
|
FunctionSignature {
|
2019-10-29 13:46:55 +00:00
|
|
|
kind: CallableKind::StructConstructor,
|
2019-10-28 14:48:40 +00:00
|
|
|
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,
|
|
|
|
generic_parameters: generic_parameters(&node),
|
|
|
|
where_predicates: where_predicates(&node),
|
|
|
|
doc: None,
|
|
|
|
}
|
|
|
|
.with_doc_opt(st.docs(db)),
|
|
|
|
)
|
2019-10-27 23:12:21 +00:00
|
|
|
}
|
2019-10-28 01:26:12 +00:00
|
|
|
|
2019-10-28 14:48:40 +00:00
|
|
|
pub(crate) fn from_enum_variant(
|
|
|
|
db: &db::RootDatabase,
|
|
|
|
variant: hir::EnumVariant,
|
|
|
|
) -> Option<Self> {
|
2019-11-20 06:40:36 +00:00
|
|
|
let node: ast::EnumVariant = variant.source(db).value;
|
2019-10-28 14:48:40 +00:00
|
|
|
match node.kind() {
|
2019-11-22 18:52:06 +00:00
|
|
|
ast::StructKind::Record(_) | ast::StructKind::Unit => return None,
|
2019-10-28 14:48:40 +00:00
|
|
|
_ => (),
|
|
|
|
};
|
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();
|
|
|
|
|
2019-10-28 14:48:40 +00:00
|
|
|
Some(
|
|
|
|
FunctionSignature {
|
2019-10-29 13:46:55 +00:00
|
|
|
kind: CallableKind::VariantConstructor,
|
2019-10-28 14:48:40 +00:00
|
|
|
visibility: None,
|
|
|
|
name: Some(name),
|
|
|
|
ret_type: None,
|
|
|
|
parameters: params,
|
|
|
|
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
|
|
|
|
|
|
|
pub(crate) fn from_macro(db: &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,
|
|
|
|
generic_parameters: vec![],
|
|
|
|
where_predicates: vec![],
|
|
|
|
doc: None,
|
|
|
|
}
|
|
|
|
.with_doc_opt(macro_def.docs(db)),
|
|
|
|
)
|
|
|
|
}
|
2019-04-08 13:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionSignature {
|
2019-10-29 13:46:55 +00:00
|
|
|
kind: CallableKind::Function,
|
2019-04-08 13:34:59 +00:00
|
|
|
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),
|
|
|
|
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
|
|
|
}
|
2019-04-08 13:34:59 +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(())
|
|
|
|
}
|
|
|
|
}
|