From a43040f92f2ccbf59ce859bc739b98ef691f5bc7 Mon Sep 17 00:00:00 2001 From: Roman Perehonchuk Date: Fri, 5 Apr 2024 05:37:42 -0700 Subject: [PATCH] add type declaration to v2 schema Summary: as per title Reviewed By: alanz Differential Revision: D55076701 fbshipit-source-id: db4054b61cb04667cf90f4fcf2638c54a9f10228 --- crates/elp/src/bin/glean.rs | 48 +++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/crates/elp/src/bin/glean.rs b/crates/elp/src/bin/glean.rs index 0519743faf..f2c245ff86 100644 --- a/crates/elp/src/bin/glean.rs +++ b/crates/elp/src/bin/glean.rs @@ -260,6 +260,8 @@ pub(crate) enum Declaration { FunctionDeclaration(FuncDecl), #[serde(rename = "macro")] MacroDeclaration(MacroDecl), + #[serde(rename = "ttype")] + TypeDeclaration(TypeDecl), } #[derive(Serialize, Debug)] @@ -309,6 +311,25 @@ impl MacroDecl { } } +#[derive(Serialize, Debug)] +pub(crate) struct TypeDecl { + name: String, + arity: u32, + span: Location, + exported: bool, +} + +impl TypeDecl { + fn new(name: &Name, arity: u32, span: Location, exported: bool) -> Self { + Self { + name: name.to_string(), + arity, + span, + exported, + } + } +} + #[derive(Debug, Default)] struct IndexedFacts { file_facts: Vec, @@ -500,7 +521,7 @@ impl GleanIndexer { let module_index = db.module_index(project_id); if let Some(module) = module_index.module_for_file(file_id) { - let decl = Self::declarations(db, file_id, module); + let decl = Self::declarations_v1(db, file_id, module); let xref = Self::xrefs(db, file_id); return Some((file_fact, line_fact, file_decl, Some((decl, xref)))); } @@ -546,7 +567,7 @@ impl GleanIndexer { FileLinesFact::new(file_id, lengths, ends_with_new_line) } - fn declarations( + fn declarations_v1( db: &RootDatabase, file_id: FileId, module: &ModuleName, @@ -609,6 +630,17 @@ impl GleanIndexer { ))); } + for (ty, def) in def_map.get_types() { + let range = def.source(db).syntax().text_range(); + let loc = range.into(); + declarations.push(Declaration::TypeDeclaration(TypeDecl::new( + ty.name(), + ty.arity(), + loc, + def.exported, + ))); + } + FileDeclaration::new(file_id.into(), declarations) } @@ -915,6 +947,7 @@ mod tests { //- /glean/app_glean/src/glean_module5.erl -module(glean_module5). -export([foo/0, doc_foo/1]). + -export_type([person/1]). -deprecated({depr_foo, 1, "use foo/0 instead"}). -define(PI, 3.14). @@ -922,6 +955,9 @@ mod tests { -define(MAX(X, Y), if X > Y -> X; true -> Y end). %% ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ macro/MAX/2 + -type person(Name :: string()) :: {name, string()}. + %% ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type/person/1/exported + foo() -> 1. %% ^^^^^^^^^^^ func/foo/0/not_deprecated/exported/no_docs depr_foo(B) -> B. @@ -1198,6 +1234,7 @@ mod tests { match self { Declaration::FunctionDeclaration(decl) => &decl.span, Declaration::MacroDeclaration(decl) => &decl.span, + Declaration::TypeDeclaration(decl) => &decl.span, } } } @@ -1238,6 +1275,13 @@ mod tests { }; f.write_str(format!("macro/{}/{}", decl.name, arity).as_str()) } + Declaration::TypeDeclaration(decl) => { + let exported = match decl.exported { + true => "exported", + false => "not_exported", + }; + f.write_str(format!("type/{}/{}/{}", decl.name, decl.arity, exported).as_str()) + } } } }