9893: fix: Don't use uncached syntax nodes in `generate_function` for sema lookups r=Veykril a=Veykril

Fixes the crash in the comment here https://github.com/rust-analyzer/rust-analyzer/issues/9382#issuecomment-896101298
Couldn't make out a repro test for this unfortunately
still not idea about the original issue

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
This commit is contained in:
bors[bot] 2021-08-14 15:52:48 +00:00 committed by GitHub
commit d07f4e4c35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 40 deletions

View file

@ -884,6 +884,7 @@ to_def_impls![
(crate::Local, ast::IdentPat, bind_pat_to_def), (crate::Local, ast::IdentPat, bind_pat_to_def),
(crate::Local, ast::SelfParam, self_param_to_def), (crate::Local, ast::SelfParam, self_param_to_def),
(crate::Label, ast::Label, label_to_def), (crate::Label, ast::Label, label_to_def),
(crate::Adt, ast::Adt, adt_to_def),
]; ];
fn find_root(node: &SyntaxNode) -> SyntaxNode { fn find_root(node: &SyntaxNode) -> SyntaxNode {

View file

@ -91,9 +91,9 @@ use hir_def::{
dyn_map::DynMap, dyn_map::DynMap,
expr::{LabelId, PatId}, expr::{LabelId, PatId},
keys::{self, Key}, keys::{self, Key},
ConstId, ConstParamId, DefWithBodyId, EnumId, EnumVariantId, FieldId, FunctionId, GenericDefId, AdtId, ConstId, ConstParamId, DefWithBodyId, EnumId, EnumVariantId, FieldId, FunctionId,
ImplId, LifetimeParamId, ModuleId, StaticId, StructId, TraitId, TypeAliasId, TypeParamId, GenericDefId, ImplId, LifetimeParamId, ModuleId, StaticId, StructId, TraitId, TypeAliasId,
UnionId, VariantId, TypeParamId, UnionId, VariantId,
}; };
use hir_expand::{name::AsName, AstId, MacroCallId, MacroDefId, MacroDefKind}; use hir_expand::{name::AsName, AstId, MacroCallId, MacroDefId, MacroDefKind};
use rustc_hash::FxHashMap; use rustc_hash::FxHashMap;
@ -201,6 +201,18 @@ impl SourceToDefCtx<'_, '_> {
) -> Option<EnumVariantId> { ) -> Option<EnumVariantId> {
self.to_def(src, keys::VARIANT) self.to_def(src, keys::VARIANT)
} }
pub(super) fn adt_to_def(
&mut self,
InFile { file_id, value }: InFile<ast::Adt>,
) -> Option<AdtId> {
match value {
ast::Adt::Enum(it) => self.enum_to_def(InFile::new(file_id, it)).map(AdtId::EnumId),
ast::Adt::Struct(it) => {
self.struct_to_def(InFile::new(file_id, it)).map(AdtId::StructId)
}
ast::Adt::Union(it) => self.union_to_def(InFile::new(file_id, it)).map(AdtId::UnionId),
}
}
pub(super) fn bind_pat_to_def( pub(super) fn bind_pat_to_def(
&mut self, &mut self,
src: InFile<ast::IdentPat>, src: InFile<ast::IdentPat>,

View file

@ -1,4 +1,4 @@
use hir::{HasSource, HirDisplay, InFile, Module, TypeInfo}; use hir::{HasSource, HirDisplay, Module, TypeInfo};
use ide_db::{base_db::FileId, helpers::SnippetCap}; use ide_db::{base_db::FileId, helpers::SnippetCap};
use rustc_hash::{FxHashMap, FxHashSet}; use rustc_hash::{FxHashMap, FxHashSet};
use stdx::to_lower_snake_case; use stdx::to_lower_snake_case;
@ -106,31 +106,28 @@ fn gen_fn(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
fn gen_method(acc: &mut Assists, ctx: &AssistContext) -> Option<()> { fn gen_method(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
let call: ast::MethodCallExpr = ctx.find_node_at_offset()?; let call: ast::MethodCallExpr = ctx.find_node_at_offset()?;
let fn_name: ast::NameRef = ast::NameRef::cast( let fn_name = call.name_ref()?;
call.syntax().children().find(|child| child.kind() == SyntaxKind::NAME_REF)?, let adt = ctx.sema.type_of_expr(&call.receiver()?)?.original().strip_references().as_adt()?;
)?;
let ty = ctx.sema.type_of_expr(&call.receiver()?)?.original().strip_references().as_adt()?;
let current_module = let current_module = ctx.sema.scope(call.syntax()).module()?;
ctx.sema.scope(ctx.find_node_at_offset::<ast::MethodCallExpr>()?.syntax()).module()?; let target_module = adt.module(ctx.sema.db);
let target_module = ty.module(ctx.sema.db);
if current_module.krate() != target_module.krate() { if current_module.krate() != target_module.krate() {
return None; return None;
} }
let (impl_, file) = match ty { let range = adt.source(ctx.sema.db)?.syntax().original_file_range(ctx.sema.db);
hir::Adt::Struct(strukt) => get_impl(strukt.source(ctx.sema.db)?.syntax(), &fn_name, ctx), let file = ctx.sema.parse(range.file_id);
hir::Adt::Enum(en) => get_impl(en.source(ctx.sema.db)?.syntax(), &fn_name, ctx), let adt_source =
hir::Adt::Union(union) => get_impl(union.source(ctx.sema.db)?.syntax(), &fn_name, ctx), ctx.sema.find_node_at_offset_with_macros(file.syntax(), range.range.start())?;
}?; let impl_ = find_struct_impl(ctx, &adt_source, fn_name.text().as_str())?;
let function_builder = FunctionBuilder::from_method_call( let function_builder = FunctionBuilder::from_method_call(
ctx, ctx,
&call, &call,
&fn_name, &fn_name,
&impl_, &impl_,
file, range.file_id,
target_module, target_module,
current_module, current_module,
)?; )?;
@ -145,7 +142,7 @@ fn gen_method(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
builder.edit_file(function_template.file); builder.edit_file(function_template.file);
let mut new_fn = function_template.to_string(ctx.config.snippet_cap); let mut new_fn = function_template.to_string(ctx.config.snippet_cap);
if impl_.is_none() { if impl_.is_none() {
new_fn = format!("\nimpl {} {{\n{}\n}}", ty.name(ctx.sema.db), new_fn,); new_fn = format!("\nimpl {} {{\n{}\n}}", adt.name(ctx.sema.db), new_fn,);
} }
match ctx.config.snippet_cap { match ctx.config.snippet_cap {
Some(cap) => builder.insert_snippet(cap, function_template.insert_offset, new_fn), Some(cap) => builder.insert_snippet(cap, function_template.insert_offset, new_fn),
@ -155,18 +152,6 @@ fn gen_method(acc: &mut Assists, ctx: &AssistContext) -> Option<()> {
) )
} }
fn get_impl(
adt: InFile<&SyntaxNode>,
fn_name: &ast::NameRef,
ctx: &AssistContext,
) -> Option<(Option<ast::Impl>, FileId)> {
let file = adt.file_id.original_file(ctx.sema.db);
let adt = adt.value;
let adt = ast::Adt::cast(adt.clone())?;
let r = find_struct_impl(ctx, &adt, fn_name.text().as_str())?;
Some((r, file))
}
struct FunctionTemplate { struct FunctionTemplate {
insert_offset: TextSize, insert_offset: TextSize,
leading_ws: String, leading_ws: String,

View file

@ -5,7 +5,7 @@ mod gen_trait_fn_body;
use std::ops; use std::ops;
use hir::{Adt, HasSource}; use hir::HasSource;
use ide_db::{helpers::SnippetCap, path_transform::PathTransform, RootDatabase}; use ide_db::{helpers::SnippetCap, path_transform::PathTransform, RootDatabase};
use itertools::Itertools; use itertools::Itertools;
use stdx::format_to; use stdx::format_to;
@ -290,19 +290,13 @@ pub(crate) fn does_pat_match_variant(pat: &ast::Pat, var: &ast::Pat) -> bool {
// FIXME: this partially overlaps with `find_impl_block_*` // FIXME: this partially overlaps with `find_impl_block_*`
pub(crate) fn find_struct_impl( pub(crate) fn find_struct_impl(
ctx: &AssistContext, ctx: &AssistContext,
strukt: &ast::Adt, adt: &ast::Adt,
name: &str, name: &str,
) -> Option<Option<ast::Impl>> { ) -> Option<Option<ast::Impl>> {
let db = ctx.db(); let db = ctx.db();
let module = strukt.syntax().ancestors().find(|node| { let module = adt.syntax().parent()?;
ast::Module::can_cast(node.kind()) || ast::SourceFile::can_cast(node.kind())
})?;
let struct_def = match strukt { let struct_def = ctx.sema.to_def(adt)?;
ast::Adt::Enum(e) => Adt::Enum(ctx.sema.to_def(e)?),
ast::Adt::Struct(s) => Adt::Struct(ctx.sema.to_def(s)?),
ast::Adt::Union(u) => Adt::Union(ctx.sema.to_def(u)?),
};
let block = module.descendants().filter_map(ast::Impl::cast).find_map(|impl_blk| { let block = module.descendants().filter_map(ast::Impl::cast).find_map(|impl_blk| {
let blk = ctx.sema.to_def(&impl_blk)?; let blk = ctx.sema.to_def(&impl_blk)?;