2019-01-08 13:45:52 -06:00
|
|
|
//! ra_ide_api crate provides "ide-centric" APIs for the rust-analyzer. That is,
|
|
|
|
//! it generally operates with files and text ranges, and returns results as
|
|
|
|
//! Strings, suitable for displaying to the human.
|
|
|
|
//!
|
|
|
|
//! What powers this API are the `RootDatabase` struct, which defines a `salsa`
|
2019-01-08 13:33:36 -06:00
|
|
|
//! database, and the `ra_hir` crate, where majority of the analysis happens.
|
|
|
|
//! However, IDE specific bits of the analysis (most notably completion) happen
|
|
|
|
//! in this crate.
|
2019-01-08 13:45:52 -06:00
|
|
|
//!
|
|
|
|
//! The sibling `ra_ide_api_light` handles thouse bits of IDE functionality
|
|
|
|
//! which are restricted to a single file and need only syntax.
|
2019-02-03 13:15:31 -06:00
|
|
|
|
|
|
|
// For proving that RootDatabase is RefUnwindSafe.
|
|
|
|
#![recursion_limit = "128"]
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
mod db;
|
|
|
|
mod imp;
|
|
|
|
pub mod mock_analysis;
|
|
|
|
mod symbol_index;
|
2019-01-11 04:01:35 -06:00
|
|
|
mod navigation_target;
|
2019-02-08 02:52:18 -06:00
|
|
|
mod change;
|
2019-01-08 13:33:36 -06:00
|
|
|
|
2019-01-22 15:15:03 -06:00
|
|
|
mod status;
|
2019-01-11 03:53:16 -06:00
|
|
|
mod completion;
|
|
|
|
mod runnables;
|
|
|
|
mod goto_definition;
|
2019-01-08 13:33:36 -06:00
|
|
|
mod extend_selection;
|
|
|
|
mod hover;
|
|
|
|
mod call_info;
|
|
|
|
mod syntax_highlighting;
|
2019-01-11 09:17:20 -06:00
|
|
|
mod parent_module;
|
2019-02-08 04:51:22 -06:00
|
|
|
mod references;
|
2019-01-28 08:26:32 -06:00
|
|
|
mod impls;
|
2019-02-05 07:13:16 -06:00
|
|
|
mod assists;
|
2019-01-08 13:33:36 -06:00
|
|
|
|
2019-01-23 07:05:13 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod marks;
|
|
|
|
|
2019-02-08 02:52:18 -06:00
|
|
|
use std::sync::Arc;
|
2019-01-08 13:33:36 -06:00
|
|
|
|
2019-01-11 10:59:06 -06:00
|
|
|
use ra_syntax::{SourceFile, TreeArc, TextRange, TextUnit};
|
2019-01-08 13:33:36 -06:00
|
|
|
use ra_text_edit::TextEdit;
|
2019-01-17 05:11:00 -06:00
|
|
|
use ra_db::{
|
2019-01-26 02:20:30 -06:00
|
|
|
SourceDatabase, CheckCanceled,
|
2019-01-17 05:11:00 -06:00
|
|
|
salsa::{self, ParallelDatabase},
|
|
|
|
};
|
2019-01-08 13:33:36 -06:00
|
|
|
use relative_path::RelativePathBuf;
|
|
|
|
|
|
|
|
use crate::{
|
2019-02-08 02:52:18 -06:00
|
|
|
symbol_index::FileSymbol,
|
2019-01-08 13:33:36 -06:00
|
|
|
db::LineIndexDatabase,
|
|
|
|
};
|
|
|
|
|
|
|
|
pub use crate::{
|
2019-01-19 08:02:50 -06:00
|
|
|
completion::{CompletionItem, CompletionItemKind, InsertTextFormat},
|
2019-01-08 13:33:36 -06:00
|
|
|
runnables::{Runnable, RunnableKind},
|
2019-01-11 05:00:54 -06:00
|
|
|
navigation_target::NavigationTarget,
|
2019-02-08 02:52:18 -06:00
|
|
|
change::{AnalysisChange, LibraryData},
|
2019-01-08 13:33:36 -06:00
|
|
|
};
|
|
|
|
pub use ra_ide_api_light::{
|
|
|
|
Fold, FoldKind, HighlightedRange, Severity, StructureNode,
|
|
|
|
LineIndex, LineCol, translate_offset_with_edit,
|
|
|
|
};
|
|
|
|
pub use ra_db::{
|
2019-01-15 12:02:42 -06:00
|
|
|
Canceled, CrateGraph, CrateId, FileId, FilePosition, FileRange, SourceRootId
|
2019-01-08 13:33:36 -06:00
|
|
|
};
|
2019-01-29 20:39:09 -06:00
|
|
|
pub use hir::Documentation;
|
2019-01-08 13:33:36 -06:00
|
|
|
|
2019-01-26 12:12:16 -06:00
|
|
|
// We use jemalloc mainly to get heap usage statistics, actual performance
|
|
|
|
// differnece is not measures.
|
2019-01-28 06:52:21 -06:00
|
|
|
#[cfg(feature = "jemalloc")]
|
2019-01-26 12:12:16 -06:00
|
|
|
#[global_allocator]
|
|
|
|
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
|
|
|
|
2019-01-15 12:02:42 -06:00
|
|
|
pub type Cancelable<T> = Result<T, Canceled>;
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct SourceChange {
|
|
|
|
pub label: String,
|
|
|
|
pub source_file_edits: Vec<SourceFileEdit>,
|
|
|
|
pub file_system_edits: Vec<FileSystemEdit>,
|
|
|
|
pub cursor_position: Option<FilePosition>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct SourceFileEdit {
|
|
|
|
pub file_id: FileId,
|
|
|
|
pub edit: TextEdit,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum FileSystemEdit {
|
|
|
|
CreateFile {
|
|
|
|
source_root: SourceRootId,
|
|
|
|
path: RelativePathBuf,
|
|
|
|
},
|
|
|
|
MoveFile {
|
|
|
|
src: FileId,
|
|
|
|
dst_source_root: SourceRootId,
|
|
|
|
dst_path: RelativePathBuf,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Diagnostic {
|
|
|
|
pub message: String,
|
|
|
|
pub range: TextRange,
|
|
|
|
pub fix: Option<SourceChange>,
|
|
|
|
pub severity: Severity,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Query {
|
|
|
|
query: String,
|
|
|
|
lowercased: String,
|
|
|
|
only_types: bool,
|
|
|
|
libs: bool,
|
|
|
|
exact: bool,
|
|
|
|
limit: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Query {
|
|
|
|
pub fn new(query: String) -> Query {
|
|
|
|
let lowercased = query.to_lowercase();
|
|
|
|
Query {
|
|
|
|
query,
|
|
|
|
lowercased,
|
|
|
|
only_types: false,
|
|
|
|
libs: false,
|
|
|
|
exact: false,
|
|
|
|
limit: usize::max_value(),
|
|
|
|
}
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
pub fn only_types(&mut self) {
|
|
|
|
self.only_types = true;
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
pub fn libs(&mut self) {
|
|
|
|
self.libs = true;
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
pub fn exact(&mut self) {
|
|
|
|
self.exact = true;
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
pub fn limit(&mut self, limit: usize) {
|
|
|
|
self.limit = limit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct RangeInfo<T> {
|
|
|
|
pub range: TextRange,
|
|
|
|
pub info: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> RangeInfo<T> {
|
2019-01-11 05:14:09 -06:00
|
|
|
pub fn new(range: TextRange, info: T) -> RangeInfo<T> {
|
2019-01-08 13:33:36 -06:00
|
|
|
RangeInfo { range, info }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct CallInfo {
|
|
|
|
pub label: String,
|
2019-01-29 20:39:09 -06:00
|
|
|
pub doc: Option<Documentation>,
|
2019-01-08 13:33:36 -06:00
|
|
|
pub parameters: Vec<String>,
|
|
|
|
pub active_parameter: Option<usize>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// `AnalysisHost` stores the current state of the world.
|
|
|
|
#[derive(Debug, Default)]
|
|
|
|
pub struct AnalysisHost {
|
|
|
|
db: db::RootDatabase,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AnalysisHost {
|
|
|
|
/// Returns a snapshot of the current state, which you can query for
|
|
|
|
/// semantic information.
|
|
|
|
pub fn analysis(&self) -> Analysis {
|
|
|
|
Analysis {
|
|
|
|
db: self.db.snapshot(),
|
|
|
|
}
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Applies changes to the current state of the world. If there are
|
|
|
|
/// outstanding snapshots, they will be canceled.
|
|
|
|
pub fn apply_change(&mut self, change: AnalysisChange) {
|
|
|
|
self.db.apply_change(change)
|
|
|
|
}
|
2019-01-25 10:11:58 -06:00
|
|
|
|
2019-01-26 11:33:33 -06:00
|
|
|
pub fn maybe_collect_garbage(&mut self) {
|
|
|
|
self.db.maybe_collect_garbage();
|
|
|
|
}
|
|
|
|
|
2019-01-25 10:11:58 -06:00
|
|
|
pub fn collect_garbage(&mut self) {
|
|
|
|
self.db.collect_garbage();
|
|
|
|
}
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Analysis is a snapshot of a world state at a moment in time. It is the main
|
|
|
|
/// entry point for asking semantic information about the world. When the world
|
|
|
|
/// state is advanced using `AnalysisHost::apply_change` method, all existing
|
|
|
|
/// `Analysis` are canceled (most method return `Err(Canceled)`).
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Analysis {
|
|
|
|
db: salsa::Snapshot<db::RootDatabase>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Analysis {
|
2019-01-22 15:15:03 -06:00
|
|
|
/// Debug info about the current state of the analysis
|
|
|
|
pub fn status(&self) -> String {
|
|
|
|
status::status(&*self.db)
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Gets the text of the source file.
|
|
|
|
pub fn file_text(&self, file_id: FileId) -> Arc<String> {
|
|
|
|
self.db.file_text(file_id)
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Gets the syntax tree of the file.
|
2019-01-20 12:01:11 -06:00
|
|
|
pub fn parse(&self, file_id: FileId) -> TreeArc<SourceFile> {
|
2019-01-26 02:51:36 -06:00
|
|
|
self.db.parse(file_id).clone()
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Gets the file's `LineIndex`: data structure to convert between absolute
|
|
|
|
/// offsets and line/column representation.
|
|
|
|
pub fn file_line_index(&self, file_id: FileId) -> Arc<LineIndex> {
|
|
|
|
self.db.line_index(file_id)
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Selects the next syntactic nodes encopasing the range.
|
2019-01-20 12:05:01 -06:00
|
|
|
pub fn extend_selection(&self, frange: FileRange) -> Cancelable<TextRange> {
|
|
|
|
self.with_db(|db| extend_selection::extend_selection(db, frange))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns position of the mathcing brace (all types of braces are
|
|
|
|
/// supported).
|
2019-01-20 11:59:46 -06:00
|
|
|
pub fn matching_brace(&self, position: FilePosition) -> Option<TextUnit> {
|
2019-01-26 02:51:36 -06:00
|
|
|
let file = self.db.parse(position.file_id);
|
2019-01-20 11:59:46 -06:00
|
|
|
ra_ide_api_light::matching_brace(&file, position.offset)
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns a syntax tree represented as `String`, for debug purposes.
|
|
|
|
// FIXME: use a better name here.
|
|
|
|
pub fn syntax_tree(&self, file_id: FileId) -> String {
|
2019-01-26 02:51:36 -06:00
|
|
|
let file = self.db.parse(file_id);
|
2019-01-08 13:33:36 -06:00
|
|
|
ra_ide_api_light::syntax_tree(&file)
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns an edit to remove all newlines in the range, cleaning up minor
|
|
|
|
/// stuff like trailing commas.
|
|
|
|
pub fn join_lines(&self, frange: FileRange) -> SourceChange {
|
2019-01-26 02:51:36 -06:00
|
|
|
let file = self.db.parse(frange.file_id);
|
2019-01-08 13:33:36 -06:00
|
|
|
SourceChange::from_local_edit(
|
|
|
|
frange.file_id,
|
|
|
|
ra_ide_api_light::join_lines(&file, frange.range),
|
|
|
|
)
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns an edit which should be applied when opening a new line, fixing
|
|
|
|
/// up minor stuff like continuing the comment.
|
|
|
|
pub fn on_enter(&self, position: FilePosition) -> Option<SourceChange> {
|
2019-01-26 02:51:36 -06:00
|
|
|
let file = self.db.parse(position.file_id);
|
2019-01-08 13:33:36 -06:00
|
|
|
let edit = ra_ide_api_light::on_enter(&file, position.offset)?;
|
|
|
|
Some(SourceChange::from_local_edit(position.file_id, edit))
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns an edit which should be applied after `=` was typed. Primarily,
|
|
|
|
/// this works when adding `let =`.
|
|
|
|
// FIXME: use a snippet completion instead of this hack here.
|
|
|
|
pub fn on_eq_typed(&self, position: FilePosition) -> Option<SourceChange> {
|
2019-01-26 02:51:36 -06:00
|
|
|
let file = self.db.parse(position.file_id);
|
2019-01-08 13:33:36 -06:00
|
|
|
let edit = ra_ide_api_light::on_eq_typed(&file, position.offset)?;
|
|
|
|
Some(SourceChange::from_local_edit(position.file_id, edit))
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns an edit which should be applied when a dot ('.') is typed on a blank line, indenting the line appropriately.
|
|
|
|
pub fn on_dot_typed(&self, position: FilePosition) -> Option<SourceChange> {
|
2019-01-26 02:51:36 -06:00
|
|
|
let file = self.db.parse(position.file_id);
|
2019-01-08 13:33:36 -06:00
|
|
|
let edit = ra_ide_api_light::on_dot_typed(&file, position.offset)?;
|
|
|
|
Some(SourceChange::from_local_edit(position.file_id, edit))
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns a tree representation of symbols in the file. Useful to draw a
|
|
|
|
/// file outline.
|
|
|
|
pub fn file_structure(&self, file_id: FileId) -> Vec<StructureNode> {
|
2019-01-26 02:51:36 -06:00
|
|
|
let file = self.db.parse(file_id);
|
2019-01-08 13:33:36 -06:00
|
|
|
ra_ide_api_light::file_structure(&file)
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns the set of folding ranges.
|
|
|
|
pub fn folding_ranges(&self, file_id: FileId) -> Vec<Fold> {
|
2019-01-26 02:51:36 -06:00
|
|
|
let file = self.db.parse(file_id);
|
2019-01-08 13:33:36 -06:00
|
|
|
ra_ide_api_light::folding_ranges(&file)
|
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Fuzzy searches for a symbol.
|
|
|
|
pub fn symbol_search(&self, query: Query) -> Cancelable<Vec<NavigationTarget>> {
|
2019-01-10 03:20:32 -06:00
|
|
|
self.with_db(|db| {
|
2019-01-15 09:19:09 -06:00
|
|
|
symbol_index::world_symbols(db, query)
|
2019-01-10 03:20:32 -06:00
|
|
|
.into_iter()
|
|
|
|
.map(NavigationTarget::from_symbol)
|
2019-01-15 09:19:09 -06:00
|
|
|
.collect::<Vec<_>>()
|
|
|
|
})
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 16:38:51 -06:00
|
|
|
pub fn goto_definition(
|
2019-01-08 13:33:36 -06:00
|
|
|
&self,
|
|
|
|
position: FilePosition,
|
2019-01-11 05:14:09 -06:00
|
|
|
) -> Cancelable<Option<RangeInfo<Vec<NavigationTarget>>>> {
|
2019-01-20 11:55:08 -06:00
|
|
|
self.with_db(|db| goto_definition::goto_definition(db, position))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-28 08:26:32 -06:00
|
|
|
pub fn goto_implementation(
|
|
|
|
&self,
|
|
|
|
position: FilePosition,
|
|
|
|
) -> Cancelable<Option<RangeInfo<Vec<NavigationTarget>>>> {
|
|
|
|
self.with_db(|db| impls::goto_implementation(db, position))
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Finds all usages of the reference at point.
|
|
|
|
pub fn find_all_refs(&self, position: FilePosition) -> Cancelable<Vec<(FileId, TextRange)>> {
|
2019-02-08 05:06:26 -06:00
|
|
|
self.with_db(|db| references::find_all_refs(db, position))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns a short text descrbing element at position.
|
|
|
|
pub fn hover(&self, position: FilePosition) -> Cancelable<Option<RangeInfo<String>>> {
|
2019-01-15 12:02:42 -06:00
|
|
|
self.with_db(|db| hover::hover(db, position))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Computes parameter information for the given call expression.
|
|
|
|
pub fn call_info(&self, position: FilePosition) -> Cancelable<Option<CallInfo>> {
|
2019-01-20 11:55:08 -06:00
|
|
|
self.with_db(|db| call_info::call_info(db, position))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns a `mod name;` declaration which created the current module.
|
|
|
|
pub fn parent_module(&self, position: FilePosition) -> Cancelable<Vec<NavigationTarget>> {
|
2019-01-15 12:02:42 -06:00
|
|
|
self.with_db(|db| parent_module::parent_module(db, position))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns crates this file belongs too.
|
|
|
|
pub fn crate_for(&self, file_id: FileId) -> Cancelable<Vec<CrateId>> {
|
2019-02-08 04:50:18 -06:00
|
|
|
self.with_db(|db| parent_module::crate_for(db, file_id))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns the root file of the given crate.
|
|
|
|
pub fn crate_root(&self, crate_id: CrateId) -> Cancelable<FileId> {
|
2019-01-20 11:55:08 -06:00
|
|
|
self.with_db(|db| db.crate_graph().crate_root(crate_id))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns the set of possible targets to run for the current file.
|
|
|
|
pub fn runnables(&self, file_id: FileId) -> Cancelable<Vec<Runnable>> {
|
2019-01-20 11:55:08 -06:00
|
|
|
self.with_db(|db| runnables::runnables(db, file_id))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Computes syntax highlighting for the given file.
|
|
|
|
pub fn highlight(&self, file_id: FileId) -> Cancelable<Vec<HighlightedRange>> {
|
2019-01-20 11:55:08 -06:00
|
|
|
self.with_db(|db| syntax_highlighting::highlight(db, file_id))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Computes completions at the given position.
|
|
|
|
pub fn completions(&self, position: FilePosition) -> Cancelable<Option<Vec<CompletionItem>>> {
|
2019-01-20 11:55:08 -06:00
|
|
|
self.with_db(|db| completion::completions(db, position).map(Into::into))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Computes assists (aks code actons aka intentions) for the given
|
|
|
|
/// position.
|
|
|
|
pub fn assists(&self, frange: FileRange) -> Cancelable<Vec<SourceChange>> {
|
2019-02-03 12:26:35 -06:00
|
|
|
self.with_db(|db| assists::assists(db, frange))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Computes the set of diagnostics for the given file.
|
|
|
|
pub fn diagnostics(&self, file_id: FileId) -> Cancelable<Vec<Diagnostic>> {
|
2019-01-15 12:17:10 -06:00
|
|
|
self.with_db(|db| db.diagnostics(file_id))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Computes the type of the expression at the given position.
|
|
|
|
pub fn type_of(&self, frange: FileRange) -> Cancelable<Option<String>> {
|
2019-01-15 12:02:42 -06:00
|
|
|
self.with_db(|db| hover::type_of(db, frange))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns the edit required to rename reference at the position to the new
|
|
|
|
/// name.
|
|
|
|
pub fn rename(
|
|
|
|
&self,
|
|
|
|
position: FilePosition,
|
|
|
|
new_name: &str,
|
2019-01-16 07:39:01 -06:00
|
|
|
) -> Cancelable<Option<SourceChange>> {
|
2019-02-08 04:51:22 -06:00
|
|
|
self.with_db(|db| references::rename(db, position, new_name))
|
2019-01-10 03:20:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn with_db<F: FnOnce(&db::RootDatabase) -> T + std::panic::UnwindSafe, T>(
|
|
|
|
&self,
|
|
|
|
f: F,
|
|
|
|
) -> Cancelable<T> {
|
|
|
|
self.db.catch_canceled(f)
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn analysis_is_send() {
|
|
|
|
fn is_send<T: Send>() {}
|
|
|
|
is_send::<Analysis>();
|
|
|
|
}
|