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-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;
|
|
|
|
pub mod mock_analysis;
|
|
|
|
mod symbol_index;
|
2019-02-08 02:52:18 -06:00
|
|
|
mod change;
|
2019-08-22 06:44:16 -05:00
|
|
|
mod feature_flags;
|
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;
|
2019-05-22 11:49:22 -05:00
|
|
|
mod name_ref_kind;
|
2019-01-11 03:53:16 -06:00
|
|
|
mod goto_definition;
|
2019-04-23 13:11:27 -05:00
|
|
|
mod goto_type_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-02-08 05:24:39 -06:00
|
|
|
mod diagnostics;
|
2019-03-04 00:54:54 -06:00
|
|
|
mod syntax_tree;
|
2019-03-22 05:29:58 -05:00
|
|
|
mod folding_ranges;
|
2019-03-22 07:54:26 -05:00
|
|
|
mod line_index;
|
2019-03-22 07:24:43 -05:00
|
|
|
mod line_index_utils;
|
2019-03-21 13:51:42 -05:00
|
|
|
mod join_lines;
|
2019-03-23 06:07:21 -05:00
|
|
|
mod typing;
|
2019-03-23 11:34:49 -05:00
|
|
|
mod matching_brace;
|
2019-03-12 02:24:46 -05:00
|
|
|
mod display;
|
2019-07-19 16:20:09 -05:00
|
|
|
mod inlay_hints;
|
2019-01-08 13:33:36 -06:00
|
|
|
|
2019-01-23 07:05:13 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod marks;
|
2019-03-21 13:51:42 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test_utils;
|
2019-01-23 07:05:13 -06:00
|
|
|
|
2019-02-08 02:52:18 -06:00
|
|
|
use std::sync::Arc;
|
2019-01-08 13:33:36 -06:00
|
|
|
|
2019-01-17 05:11:00 -06:00
|
|
|
use ra_db::{
|
|
|
|
salsa::{self, ParallelDatabase},
|
2019-07-04 15:05:17 -05:00
|
|
|
CheckCanceled, SourceDatabase,
|
2019-01-17 05:11:00 -06:00
|
|
|
};
|
2019-07-19 04:56:47 -05:00
|
|
|
use ra_syntax::{SourceFile, TextRange, TextUnit};
|
2019-07-04 15:05:17 -05:00
|
|
|
use ra_text_edit::TextEdit;
|
2019-01-08 13:33:36 -06:00
|
|
|
use relative_path::RelativePathBuf;
|
|
|
|
|
2019-07-04 15:05:17 -05:00
|
|
|
use crate::{db::LineIndexDatabase, symbol_index::FileSymbol};
|
2019-01-08 13:33:36 -06:00
|
|
|
|
|
|
|
pub use crate::{
|
2019-07-04 15:05:17 -05:00
|
|
|
assists::{Assist, AssistId},
|
2019-02-08 05:30:21 -06:00
|
|
|
change::{AnalysisChange, LibraryData},
|
2019-01-19 08:02:50 -06:00
|
|
|
completion::{CompletionItem, CompletionItemKind, InsertTextFormat},
|
2019-07-04 15:05:17 -05:00
|
|
|
diagnostics::Severity,
|
|
|
|
display::{file_structure, FunctionSignature, NavigationTarget, StructureNode},
|
2019-08-22 06:44:16 -05:00
|
|
|
feature_flags::FeatureFlags,
|
2019-03-22 05:29:58 -05:00
|
|
|
folding_ranges::{Fold, FoldKind},
|
2019-07-04 15:05:17 -05:00
|
|
|
hover::HoverResult,
|
2019-07-19 16:20:09 -05:00
|
|
|
inlay_hints::{InlayHint, InlayKind},
|
2019-07-04 15:05:17 -05:00
|
|
|
line_index::{LineCol, LineIndex},
|
|
|
|
line_index_utils::translate_offset_with_edit,
|
|
|
|
references::ReferenceSearchResult,
|
|
|
|
runnables::{Runnable, RunnableKind},
|
2019-03-23 11:34:49 -05:00
|
|
|
syntax_highlighting::HighlightedRange,
|
2019-01-08 13:33:36 -06:00
|
|
|
};
|
2019-03-22 07:54:26 -05:00
|
|
|
|
2019-01-29 20:39:09 -06:00
|
|
|
pub use hir::Documentation;
|
2019-07-04 15:05:17 -05:00
|
|
|
pub use ra_db::{
|
|
|
|
Canceled, CrateGraph, CrateId, Edition, FileId, FilePosition, FileRange, SourceRootId,
|
|
|
|
};
|
2019-01-08 13:33:36 -06:00
|
|
|
|
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>,
|
|
|
|
}
|
|
|
|
|
2019-03-24 15:53:41 -05:00
|
|
|
impl SourceChange {
|
2019-03-25 02:03:10 -05:00
|
|
|
/// Creates a new SourceChange with the given label
|
|
|
|
/// from the edits.
|
|
|
|
pub(crate) fn from_edits<L: Into<String>>(
|
|
|
|
label: L,
|
|
|
|
source_file_edits: Vec<SourceFileEdit>,
|
|
|
|
file_system_edits: Vec<FileSystemEdit>,
|
|
|
|
) -> Self {
|
|
|
|
SourceChange {
|
|
|
|
label: label.into(),
|
|
|
|
source_file_edits,
|
|
|
|
file_system_edits,
|
|
|
|
cursor_position: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a new SourceChange with the given label,
|
|
|
|
/// containing only the given `SourceFileEdits`.
|
2019-03-25 02:13:58 -05:00
|
|
|
pub(crate) fn source_file_edits<L: Into<String>>(label: L, edits: Vec<SourceFileEdit>) -> Self {
|
2019-03-24 15:53:41 -05:00
|
|
|
SourceChange {
|
|
|
|
label: label.into(),
|
|
|
|
source_file_edits: edits,
|
|
|
|
file_system_edits: vec![],
|
|
|
|
cursor_position: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 02:03:10 -05:00
|
|
|
/// Creates a new SourceChange with the given label,
|
|
|
|
/// containing only the given `FileSystemEdits`.
|
|
|
|
pub(crate) fn file_system_edits<L: Into<String>>(label: L, edits: Vec<FileSystemEdit>) -> Self {
|
2019-03-24 15:53:41 -05:00
|
|
|
SourceChange {
|
|
|
|
label: label.into(),
|
|
|
|
source_file_edits: vec![],
|
|
|
|
file_system_edits: edits,
|
|
|
|
cursor_position: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 02:03:10 -05:00
|
|
|
/// Creates a new SourceChange with the given label,
|
|
|
|
/// containing only a single `SourceFileEdit`.
|
2019-03-25 02:13:58 -05:00
|
|
|
pub(crate) fn source_file_edit<L: Into<String>>(label: L, edit: SourceFileEdit) -> Self {
|
|
|
|
SourceChange::source_file_edits(label, vec![edit])
|
2019-03-24 15:53:41 -05:00
|
|
|
}
|
|
|
|
|
2019-03-25 02:03:10 -05:00
|
|
|
/// Creates a new SourceChange with the given label
|
|
|
|
/// from the given `FileId` and `TextEdit`
|
|
|
|
pub(crate) fn source_file_edit_from<L: Into<String>>(
|
|
|
|
label: L,
|
|
|
|
file_id: FileId,
|
|
|
|
edit: TextEdit,
|
|
|
|
) -> Self {
|
2019-03-25 02:13:58 -05:00
|
|
|
SourceChange::source_file_edit(label, SourceFileEdit { file_id, edit })
|
2019-03-25 02:03:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a new SourceChange with the given label
|
|
|
|
/// from the given `FileId` and `TextEdit`
|
|
|
|
pub(crate) fn file_system_edit<L: Into<String>>(label: L, edit: FileSystemEdit) -> Self {
|
|
|
|
SourceChange::file_system_edits(label, vec![edit])
|
2019-03-24 15:53:41 -05:00
|
|
|
}
|
|
|
|
|
2019-03-25 02:03:10 -05:00
|
|
|
/// Sets the cursor position to the given `FilePosition`
|
|
|
|
pub(crate) fn with_cursor(mut self, cursor_position: FilePosition) -> Self {
|
2019-03-24 15:53:41 -05:00
|
|
|
self.cursor_position = Some(cursor_position);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-03-25 02:03:10 -05:00
|
|
|
/// Sets the cursor position to the given `FilePosition`
|
|
|
|
pub(crate) fn with_cursor_opt(mut self, cursor_position: Option<FilePosition>) -> Self {
|
2019-03-24 15:53:41 -05:00
|
|
|
self.cursor_position = cursor_position;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct SourceFileEdit {
|
|
|
|
pub file_id: FileId,
|
|
|
|
pub edit: TextEdit,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum FileSystemEdit {
|
2019-02-08 05:49:43 -06:00
|
|
|
CreateFile { source_root: SourceRootId, path: RelativePathBuf },
|
|
|
|
MoveFile { src: FileId, dst_source_root: SourceRootId, dst_path: RelativePathBuf },
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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 {
|
2019-03-12 02:24:46 -05:00
|
|
|
pub signature: FunctionSignature,
|
|
|
|
pub active_parameter: Option<usize>,
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// `AnalysisHost` stores the current state of the world.
|
2019-06-07 12:49:29 -05:00
|
|
|
#[derive(Debug)]
|
2019-01-08 13:33:36 -06:00
|
|
|
pub struct AnalysisHost {
|
|
|
|
db: db::RootDatabase,
|
|
|
|
}
|
|
|
|
|
2019-06-07 12:49:29 -05:00
|
|
|
impl Default for AnalysisHost {
|
|
|
|
fn default() -> AnalysisHost {
|
2019-08-22 06:44:16 -05:00
|
|
|
AnalysisHost::new(None, FeatureFlags::default())
|
2019-06-07 12:49:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
impl AnalysisHost {
|
2019-08-22 06:44:16 -05:00
|
|
|
pub fn new(lru_capcity: Option<usize>, feature_flags: FeatureFlags) -> AnalysisHost {
|
|
|
|
AnalysisHost { db: db::RootDatabase::new(lru_capcity, feature_flags) }
|
2019-06-07 12:49:29 -05:00
|
|
|
}
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns a snapshot of the current state, which you can query for
|
|
|
|
/// semantic information.
|
|
|
|
pub fn analysis(&self) -> Analysis {
|
2019-02-08 05:49:43 -06:00
|
|
|
Analysis { db: self.db.snapshot() }
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-08-22 06:44:16 -05:00
|
|
|
pub fn feature_flags(&self) -> &FeatureFlags {
|
|
|
|
&self.db.feature_flags
|
|
|
|
}
|
|
|
|
|
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-06-30 06:40:01 -05:00
|
|
|
/// NB: this clears the database
|
|
|
|
pub fn per_query_memory_usage(&mut self) -> Vec<(String, ra_prof::Bytes)> {
|
|
|
|
self.db.per_query_memory_usage()
|
|
|
|
}
|
2019-06-16 11:19:38 -05:00
|
|
|
pub fn raw_database(&self) -> &(impl hir::db::HirDatabase + salsa::Database) {
|
2019-06-15 08:29:23 -05:00
|
|
|
&self.db
|
|
|
|
}
|
2019-06-26 01:12:46 -05:00
|
|
|
pub fn raw_database_mut(&mut self) -> &mut (impl hir::db::HirDatabase + salsa::Database) {
|
|
|
|
&mut self.db
|
|
|
|
}
|
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>,
|
|
|
|
}
|
|
|
|
|
2019-02-16 05:43:59 -06:00
|
|
|
// As a general design guideline, `Analysis` API are intended to be independent
|
|
|
|
// from the language server protocol. That is, when exposing some functionality
|
|
|
|
// we should think in terms of "what API makes most sense" and not in terms of
|
|
|
|
// "what types LSP uses". Although currently LSP is the only consumer of the
|
|
|
|
// API, the API should in theory be usable as a library, or via a different
|
|
|
|
// protocol.
|
2019-01-08 13:33:36 -06:00
|
|
|
impl Analysis {
|
2019-03-20 15:35:24 -05:00
|
|
|
// Creates an analysis instance for a single file, without any extenal
|
|
|
|
// dependencies, stdlib support or ability to apply changes. See
|
|
|
|
// `AnalysisHost` for creating a fully-featured analysis.
|
|
|
|
pub fn from_single_file(text: String) -> (Analysis, FileId) {
|
|
|
|
let mut host = AnalysisHost::default();
|
|
|
|
let source_root = SourceRootId(0);
|
|
|
|
let mut change = AnalysisChange::new();
|
|
|
|
change.add_root(source_root, true);
|
|
|
|
let mut crate_graph = CrateGraph::default();
|
|
|
|
let file_id = FileId(0);
|
|
|
|
crate_graph.add_crate_root(file_id, Edition::Edition2018);
|
|
|
|
change.add_file(source_root, file_id, "main.rs".into(), Arc::new(text));
|
|
|
|
change.set_crate_graph(crate_graph);
|
|
|
|
host.apply_change(change);
|
|
|
|
(host.analysis(), file_id)
|
|
|
|
}
|
|
|
|
|
2019-08-22 06:44:16 -05:00
|
|
|
pub fn feature_flags(&self) -> &FeatureFlags {
|
|
|
|
&self.db.feature_flags
|
|
|
|
}
|
|
|
|
|
2019-01-22 15:15:03 -06:00
|
|
|
/// Debug info about the current state of the analysis
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn status(&self) -> Cancelable<String> {
|
|
|
|
self.with_db(|db| status::status(&*db))
|
2019-01-22 15:15:03 -06:00
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Gets the text of the source file.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn file_text(&self, file_id: FileId) -> Cancelable<Arc<String>> {
|
|
|
|
self.with_db(|db| db.file_text(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
|
|
|
/// Gets the syntax tree of the file.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn parse(&self, file_id: FileId) -> Cancelable<SourceFile> {
|
|
|
|
self.with_db(|db| db.parse(file_id).tree())
|
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.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn file_line_index(&self, file_id: FileId) -> Cancelable<Arc<LineIndex>> {
|
|
|
|
self.with_db(|db| db.line_index(file_id))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-02-11 10:18:27 -06:00
|
|
|
/// Selects the next syntactic nodes encompassing 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-02-11 10:18:27 -06:00
|
|
|
/// Returns position of the matching brace (all types of braces are
|
2019-01-08 13:33:36 -06:00
|
|
|
/// supported).
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn matching_brace(&self, position: FilePosition) -> Cancelable<Option<TextUnit>> {
|
|
|
|
self.with_db(|db| {
|
|
|
|
let parse = db.parse(position.file_id);
|
|
|
|
let file = parse.tree();
|
|
|
|
matching_brace::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.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn syntax_tree(
|
|
|
|
&self,
|
|
|
|
file_id: FileId,
|
|
|
|
text_range: Option<TextRange>,
|
|
|
|
) -> Cancelable<String> {
|
|
|
|
self.with_db(|db| syntax_tree::syntax_tree(&db, file_id, text_range))
|
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 an edit to remove all newlines in the range, cleaning up minor
|
|
|
|
/// stuff like trailing commas.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn join_lines(&self, frange: FileRange) -> Cancelable<SourceChange> {
|
|
|
|
self.with_db(|db| {
|
|
|
|
let parse = db.parse(frange.file_id);
|
|
|
|
let file_edit = SourceFileEdit {
|
|
|
|
file_id: frange.file_id,
|
|
|
|
edit: join_lines::join_lines(&parse.tree(), frange.range),
|
|
|
|
};
|
|
|
|
SourceChange::source_file_edit("join lines", file_edit)
|
|
|
|
})
|
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 an edit which should be applied when opening a new line, fixing
|
|
|
|
/// up minor stuff like continuing the comment.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn on_enter(&self, position: FilePosition) -> Cancelable<Option<SourceChange>> {
|
|
|
|
self.with_db(|db| typing::on_enter(&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 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.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn on_eq_typed(&self, position: FilePosition) -> Cancelable<Option<SourceChange>> {
|
|
|
|
self.with_db(|db| {
|
|
|
|
let parse = db.parse(position.file_id);
|
|
|
|
let file = parse.tree();
|
|
|
|
let edit = typing::on_eq_typed(&file, position.offset)?;
|
|
|
|
Some(SourceChange::source_file_edit(
|
|
|
|
"add semicolon",
|
|
|
|
SourceFileEdit { edit, file_id: position.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 an edit which should be applied when a dot ('.') is typed on a blank line, indenting the line appropriately.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn on_dot_typed(&self, position: FilePosition) -> Cancelable<Option<SourceChange>> {
|
|
|
|
self.with_db(|db| typing::on_dot_typed(&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 tree representation of symbols in the file. Useful to draw a
|
|
|
|
/// file outline.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn file_structure(&self, file_id: FileId) -> Cancelable<Vec<StructureNode>> {
|
|
|
|
self.with_db(|db| file_structure(&db.parse(file_id).tree()))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-07-19 16:20:09 -05:00
|
|
|
/// Returns a list of the places in the file where type hints can be displayed.
|
2019-07-21 12:51:27 -05:00
|
|
|
pub fn inlay_hints(&self, file_id: FileId) -> Cancelable<Vec<InlayHint>> {
|
2019-07-21 15:28:05 -05:00
|
|
|
self.with_db(|db| inlay_hints::inlay_hints(db, file_id, &db.parse(file_id).tree()))
|
2019-07-19 16:20:09 -05:00
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Returns the set of folding ranges.
|
2019-07-25 12:22:41 -05:00
|
|
|
pub fn folding_ranges(&self, file_id: FileId) -> Cancelable<Vec<Fold>> {
|
|
|
|
self.with_db(|db| folding_ranges::folding_ranges(&db.parse(file_id).tree()))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
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()
|
2019-06-08 09:26:27 -05:00
|
|
|
.map(|s| NavigationTarget::from_symbol(db, s))
|
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-04-23 13:11:27 -05:00
|
|
|
pub fn goto_type_definition(
|
|
|
|
&self,
|
|
|
|
position: FilePosition,
|
|
|
|
) -> Cancelable<Option<RangeInfo<Vec<NavigationTarget>>>> {
|
|
|
|
self.with_db(|db| goto_type_definition::goto_type_definition(db, position))
|
|
|
|
}
|
|
|
|
|
2019-01-08 13:33:36 -06:00
|
|
|
/// Finds all usages of the reference at point.
|
2019-02-17 05:38:32 -06:00
|
|
|
pub fn find_all_refs(
|
|
|
|
&self,
|
|
|
|
position: FilePosition,
|
|
|
|
) -> Cancelable<Option<ReferenceSearchResult>> {
|
2019-09-05 13:36:40 -05:00
|
|
|
self.with_db(|db| references::find_all_refs(db, position).map(|it| it.info))
|
2019-01-08 13:33:36 -06:00
|
|
|
}
|
2019-01-08 17:47:12 -06:00
|
|
|
|
2019-02-11 10:18:27 -06:00
|
|
|
/// Returns a short text describing element at position.
|
2019-02-26 10:56:04 -06:00
|
|
|
pub fn hover(&self, position: FilePosition) -> Cancelable<Option<RangeInfo<HoverResult>>> {
|
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-05-25 05:42:34 -05:00
|
|
|
/// Computes syntax highlighting for the given file.
|
2019-05-25 09:29:39 -05:00
|
|
|
pub fn highlight_as_html(&self, file_id: FileId, rainbow: bool) -> Cancelable<String> {
|
|
|
|
self.with_db(|db| syntax_highlighting::highlight_as_html(db, file_id, rainbow))
|
2019-05-25 05:42:34 -05: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-05-25 09:29:39 -05:00
|
|
|
/// Computes assists (aka code actions aka intentions) for the given
|
2019-01-08 13:33:36 -06:00
|
|
|
/// position.
|
2019-02-24 04:53:35 -06:00
|
|
|
pub fn assists(&self, frange: FileRange) -> Cancelable<Vec<Assist>> {
|
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-02-08 05:30:21 -06:00
|
|
|
self.with_db(|db| diagnostics::diagnostics(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 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-09-05 13:36:40 -05:00
|
|
|
) -> Cancelable<Option<RangeInfo<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>();
|
|
|
|
}
|