mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +00:00
98 lines
2.6 KiB
Rust
98 lines
2.6 KiB
Rust
//! FIXME: write short doc here
|
|
|
|
use std::sync::Arc;
|
|
|
|
use ra_syntax::ast;
|
|
|
|
use crate::{
|
|
db::{AstDatabase, DefDatabase, HirDatabase},
|
|
Adt, Const, Enum, EnumVariant, FieldSource, Function, HasSource, MacroDef, Module, Static,
|
|
Struct, StructField, Trait, TypeAlias, Union,
|
|
};
|
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
pub enum DocDef {
|
|
Module(Module),
|
|
StructField(StructField),
|
|
Adt(Adt),
|
|
EnumVariant(EnumVariant),
|
|
Static(Static),
|
|
Const(Const),
|
|
Function(Function),
|
|
Trait(Trait),
|
|
TypeAlias(TypeAlias),
|
|
MacroDef(MacroDef),
|
|
}
|
|
|
|
impl_froms!(
|
|
DocDef: Module,
|
|
StructField,
|
|
Adt(Struct, Enum, Union),
|
|
EnumVariant,
|
|
Static,
|
|
Const,
|
|
Function,
|
|
Trait,
|
|
TypeAlias,
|
|
MacroDef
|
|
);
|
|
|
|
/// Holds documentation
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
pub struct Documentation(Arc<str>);
|
|
|
|
impl Documentation {
|
|
fn new(s: &str) -> Documentation {
|
|
Documentation(s.into())
|
|
}
|
|
|
|
pub fn as_str(&self) -> &str {
|
|
&*self.0
|
|
}
|
|
}
|
|
|
|
impl Into<String> for Documentation {
|
|
fn into(self) -> String {
|
|
self.as_str().to_owned()
|
|
}
|
|
}
|
|
|
|
pub trait Docs {
|
|
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation>;
|
|
}
|
|
|
|
pub(crate) fn docs_from_ast(node: &impl ast::DocCommentsOwner) -> Option<Documentation> {
|
|
node.doc_comment_text().map(|it| Documentation::new(&it))
|
|
}
|
|
|
|
pub(crate) fn documentation_query(
|
|
db: &(impl DefDatabase + AstDatabase),
|
|
def: DocDef,
|
|
) -> Option<Documentation> {
|
|
match def {
|
|
DocDef::Module(it) => docs_from_ast(&it.declaration_source(db)?.value),
|
|
DocDef::StructField(it) => match it.source(db).value {
|
|
FieldSource::Named(named) => docs_from_ast(&named),
|
|
FieldSource::Pos(..) => None,
|
|
},
|
|
DocDef::Adt(it) => match it {
|
|
Adt::Struct(it) => docs_from_ast(&it.source(db).value),
|
|
Adt::Enum(it) => docs_from_ast(&it.source(db).value),
|
|
Adt::Union(it) => docs_from_ast(&it.source(db).value),
|
|
},
|
|
DocDef::EnumVariant(it) => docs_from_ast(&it.source(db).value),
|
|
DocDef::Static(it) => docs_from_ast(&it.source(db).value),
|
|
DocDef::Const(it) => docs_from_ast(&it.source(db).value),
|
|
DocDef::Function(it) => docs_from_ast(&it.source(db).value),
|
|
DocDef::Trait(it) => docs_from_ast(&it.source(db).value),
|
|
DocDef::TypeAlias(it) => docs_from_ast(&it.source(db).value),
|
|
DocDef::MacroDef(it) => docs_from_ast(&it.source(db).value),
|
|
}
|
|
}
|
|
|
|
impl<T: Into<DocDef> + Copy> Docs for T {
|
|
fn docs(&self, db: &impl HirDatabase) -> Option<Documentation> {
|
|
db.documentation((*self).into())
|
|
}
|
|
}
|