2018-10-15 16:44:23 -05:00
|
|
|
extern crate fst;
|
2018-09-16 04:54:24 -05:00
|
|
|
extern crate ra_editor;
|
2018-10-15 16:44:23 -05:00
|
|
|
extern crate ra_syntax;
|
2018-08-13 11:28:34 -05:00
|
|
|
extern crate rayon;
|
2018-08-28 10:22:52 -05:00
|
|
|
extern crate relative_path;
|
2018-10-11 13:07:44 -05:00
|
|
|
extern crate rustc_hash;
|
2018-10-15 16:44:23 -05:00
|
|
|
extern crate salsa;
|
2018-08-13 07:10:20 -05:00
|
|
|
|
2018-10-15 16:44:23 -05:00
|
|
|
mod db;
|
|
|
|
mod descriptors;
|
2018-08-29 10:23:57 -05:00
|
|
|
mod imp;
|
2018-09-02 12:08:58 -05:00
|
|
|
mod roots;
|
2018-10-15 16:44:23 -05:00
|
|
|
mod symbol_index;
|
2018-10-24 10:37:25 -05:00
|
|
|
mod completion;
|
2018-08-10 13:13:39 -05:00
|
|
|
|
2018-10-15 16:44:23 -05:00
|
|
|
use std::{fmt::Debug, sync::Arc};
|
2018-08-30 08:27:09 -05:00
|
|
|
|
2018-10-15 16:44:23 -05:00
|
|
|
use ra_syntax::{AtomEdit, File, TextRange, TextUnit};
|
2018-08-30 05:12:49 -05:00
|
|
|
use relative_path::{RelativePath, RelativePathBuf};
|
2018-10-11 13:07:44 -05:00
|
|
|
use rustc_hash::FxHashMap;
|
2018-08-30 05:12:49 -05:00
|
|
|
|
2018-10-20 14:38:47 -05:00
|
|
|
use crate::imp::{AnalysisHostImpl, AnalysisImpl, FileResolverImp};
|
|
|
|
|
2018-10-15 12:15:53 -05:00
|
|
|
pub use crate::{
|
|
|
|
descriptors::FnDescriptor,
|
2018-10-15 16:44:23 -05:00
|
|
|
};
|
|
|
|
pub use ra_editor::{
|
|
|
|
CompletionItem, FileSymbol, Fold, FoldKind, HighlightedRange, LineIndex, Runnable,
|
|
|
|
RunnableKind, StructureNode,
|
2018-10-15 12:15:53 -05:00
|
|
|
};
|
2018-08-10 07:07:43 -05:00
|
|
|
|
2018-10-20 14:15:03 -05:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
|
2018-10-20 14:35:55 -05:00
|
|
|
pub struct Canceled;
|
2018-10-20 13:46:17 -05:00
|
|
|
|
2018-10-20 14:35:55 -05:00
|
|
|
pub type Cancelable<T> = Result<T, Canceled>;
|
2018-10-20 13:46:17 -05:00
|
|
|
|
2018-10-20 14:35:55 -05:00
|
|
|
impl std::fmt::Display for Canceled {
|
2018-10-20 13:52:49 -05:00
|
|
|
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
fmt.write_str("Canceled")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-20 14:35:55 -05:00
|
|
|
impl std::error::Error for Canceled {
|
2018-10-20 13:52:49 -05:00
|
|
|
}
|
|
|
|
|
2018-08-30 05:12:49 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
pub struct FileId(pub u32);
|
|
|
|
|
2018-08-31 11:14:08 -05:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
pub struct CrateId(pub u32);
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Default)]
|
|
|
|
pub struct CrateGraph {
|
2018-10-11 13:07:44 -05:00
|
|
|
pub crate_roots: FxHashMap<CrateId, FileId>,
|
2018-08-31 11:14:08 -05:00
|
|
|
}
|
|
|
|
|
2018-09-10 04:57:40 -05:00
|
|
|
pub trait FileResolver: Debug + Send + Sync + 'static {
|
|
|
|
fn file_stem(&self, file_id: FileId) -> String;
|
|
|
|
fn resolve(&self, file_id: FileId, path: &RelativePath) -> Option<FileId>;
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct AnalysisHost {
|
2018-10-15 16:44:23 -05:00
|
|
|
imp: AnalysisHostImpl,
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AnalysisHost {
|
|
|
|
pub fn new() -> AnalysisHost {
|
2018-10-15 16:44:23 -05:00
|
|
|
AnalysisHost {
|
|
|
|
imp: AnalysisHostImpl::new(),
|
|
|
|
}
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-09-10 04:57:40 -05:00
|
|
|
pub fn analysis(&self) -> Analysis {
|
2018-10-15 16:44:23 -05:00
|
|
|
Analysis {
|
|
|
|
imp: self.imp.analysis(),
|
|
|
|
}
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
pub fn change_file(&mut self, file_id: FileId, text: Option<String>) {
|
|
|
|
self.change_files(::std::iter::once((file_id, text)));
|
|
|
|
}
|
2018-10-15 16:44:23 -05:00
|
|
|
pub fn change_files(&mut self, mut changes: impl Iterator<Item = (FileId, Option<String>)>) {
|
2018-08-30 05:12:49 -05:00
|
|
|
self.imp.change_files(&mut changes)
|
|
|
|
}
|
2018-09-10 04:57:40 -05:00
|
|
|
pub fn set_file_resolver(&mut self, resolver: Arc<FileResolver>) {
|
|
|
|
self.imp.set_file_resolver(FileResolverImp::new(resolver));
|
|
|
|
}
|
2018-08-31 11:14:08 -05:00
|
|
|
pub fn set_crate_graph(&mut self, graph: CrateGraph) {
|
|
|
|
self.imp.set_crate_graph(graph)
|
|
|
|
}
|
2018-09-03 13:26:59 -05:00
|
|
|
pub fn add_library(&mut self, data: LibraryData) {
|
|
|
|
self.imp.add_library(data.root)
|
2018-09-03 11:46:30 -05:00
|
|
|
}
|
2018-08-30 05:12:49 -05: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<Position>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Position {
|
|
|
|
pub file_id: FileId,
|
|
|
|
pub offset: TextUnit,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct SourceFileEdit {
|
|
|
|
pub file_id: FileId,
|
|
|
|
pub edits: Vec<AtomEdit>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum FileSystemEdit {
|
|
|
|
CreateFile {
|
|
|
|
anchor: FileId,
|
|
|
|
path: RelativePathBuf,
|
|
|
|
},
|
|
|
|
MoveFile {
|
|
|
|
file: FileId,
|
|
|
|
path: RelativePathBuf,
|
2018-10-15 16:44:23 -05:00
|
|
|
},
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Diagnostic {
|
|
|
|
pub message: String,
|
|
|
|
pub range: TextRange,
|
|
|
|
pub fix: Option<SourceChange>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Query {
|
|
|
|
query: String,
|
|
|
|
lowercased: String,
|
|
|
|
only_types: bool,
|
2018-09-03 11:46:30 -05:00
|
|
|
libs: bool,
|
2018-08-30 05:12:49 -05:00
|
|
|
exact: bool,
|
|
|
|
limit: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Query {
|
|
|
|
pub fn new(query: String) -> Query {
|
|
|
|
let lowercased = query.to_lowercase();
|
|
|
|
Query {
|
|
|
|
query,
|
|
|
|
lowercased,
|
|
|
|
only_types: false,
|
2018-09-03 11:46:30 -05:00
|
|
|
libs: false,
|
2018-08-30 05:12:49 -05:00
|
|
|
exact: false,
|
2018-10-15 16:44:23 -05:00
|
|
|
limit: usize::max_value(),
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pub fn only_types(&mut self) {
|
|
|
|
self.only_types = true;
|
|
|
|
}
|
2018-09-03 11:46:30 -05:00
|
|
|
pub fn libs(&mut self) {
|
|
|
|
self.libs = true;
|
|
|
|
}
|
2018-08-30 05:12:49 -05:00
|
|
|
pub fn exact(&mut self) {
|
|
|
|
self.exact = true;
|
|
|
|
}
|
|
|
|
pub fn limit(&mut self, limit: usize) {
|
|
|
|
self.limit = limit
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-15 14:36:08 -05:00
|
|
|
#[derive(Debug)]
|
2018-08-30 05:12:49 -05:00
|
|
|
pub struct Analysis {
|
2018-10-15 16:44:23 -05:00
|
|
|
imp: AnalysisImpl,
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Analysis {
|
|
|
|
pub fn file_syntax(&self, file_id: FileId) -> File {
|
2018-09-02 12:08:58 -05:00
|
|
|
self.imp.file_syntax(file_id).clone()
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-09-15 15:19:41 -05:00
|
|
|
pub fn file_line_index(&self, file_id: FileId) -> Arc<LineIndex> {
|
|
|
|
self.imp.file_line_index(file_id)
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
pub fn extend_selection(&self, file: &File, range: TextRange) -> TextRange {
|
2018-09-16 04:54:24 -05:00
|
|
|
ra_editor::extend_selection(file, range).unwrap_or(range)
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
pub fn matching_brace(&self, file: &File, offset: TextUnit) -> Option<TextUnit> {
|
2018-09-16 04:54:24 -05:00
|
|
|
ra_editor::matching_brace(file, offset)
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
pub fn syntax_tree(&self, file_id: FileId) -> String {
|
2018-09-07 14:03:39 -05:00
|
|
|
let file = self.imp.file_syntax(file_id);
|
2018-09-16 04:54:24 -05:00
|
|
|
ra_editor::syntax_tree(&file)
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
pub fn join_lines(&self, file_id: FileId, range: TextRange) -> SourceChange {
|
2018-09-07 14:03:39 -05:00
|
|
|
let file = self.imp.file_syntax(file_id);
|
2018-09-16 04:54:24 -05:00
|
|
|
SourceChange::from_local_edit(file_id, "join lines", ra_editor::join_lines(&file, range))
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-10-09 08:00:20 -05:00
|
|
|
pub fn on_enter(&self, file_id: FileId, offset: TextUnit) -> Option<SourceChange> {
|
|
|
|
let file = self.imp.file_syntax(file_id);
|
|
|
|
let edit = ra_editor::on_enter(&file, offset)?;
|
|
|
|
let res = SourceChange::from_local_edit(file_id, "on enter", edit);
|
|
|
|
Some(res)
|
|
|
|
}
|
2018-08-30 05:12:49 -05:00
|
|
|
pub fn on_eq_typed(&self, file_id: FileId, offset: TextUnit) -> Option<SourceChange> {
|
2018-09-07 14:03:39 -05:00
|
|
|
let file = self.imp.file_syntax(file_id);
|
2018-10-15 16:44:23 -05:00
|
|
|
Some(SourceChange::from_local_edit(
|
|
|
|
file_id,
|
|
|
|
"add semicolon",
|
|
|
|
ra_editor::on_eq_typed(&file, offset)?,
|
|
|
|
))
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
|
|
|
pub fn file_structure(&self, file_id: FileId) -> Vec<StructureNode> {
|
2018-09-07 14:03:39 -05:00
|
|
|
let file = self.imp.file_syntax(file_id);
|
2018-09-16 04:54:24 -05:00
|
|
|
ra_editor::file_structure(&file)
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-10-20 14:09:12 -05:00
|
|
|
pub fn folding_ranges(&self, file_id: FileId) -> Vec<Fold> {
|
|
|
|
let file = self.imp.file_syntax(file_id);
|
|
|
|
ra_editor::folding_ranges(&file)
|
|
|
|
}
|
|
|
|
pub fn symbol_search(&self, query: Query) -> Cancelable<Vec<(FileId, FileSymbol)>> {
|
2018-10-20 14:29:26 -05:00
|
|
|
self.imp.world_symbols(query)
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-10-15 16:44:23 -05:00
|
|
|
pub fn approximately_resolve_symbol(
|
|
|
|
&self,
|
|
|
|
file_id: FileId,
|
2018-10-20 14:02:41 -05:00
|
|
|
offset: TextUnit
|
2018-10-20 14:09:12 -05:00
|
|
|
) -> Cancelable<Vec<(FileId, FileSymbol)>> {
|
2018-10-20 14:15:03 -05:00
|
|
|
self.imp
|
|
|
|
.approximately_resolve_symbol(file_id, offset)
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-10-20 14:09:12 -05:00
|
|
|
pub fn find_all_refs(&self, file_id: FileId, offset: TextUnit, ) -> Cancelable<Vec<(FileId, TextRange)>> {
|
|
|
|
Ok(self.imp.find_all_refs(file_id, offset))
|
2018-10-18 12:40:12 -05:00
|
|
|
}
|
2018-10-20 13:52:49 -05:00
|
|
|
pub fn parent_module(&self, file_id: FileId) -> Cancelable<Vec<(FileId, FileSymbol)>> {
|
2018-08-30 05:12:49 -05:00
|
|
|
self.imp.parent_module(file_id)
|
|
|
|
}
|
2018-10-20 14:02:41 -05:00
|
|
|
pub fn crate_for(&self, file_id: FileId) -> Cancelable<Vec<CrateId>> {
|
2018-10-20 14:15:03 -05:00
|
|
|
self.imp.crate_for(file_id)
|
2018-09-02 08:36:03 -05:00
|
|
|
}
|
2018-10-20 14:02:41 -05:00
|
|
|
pub fn crate_root(&self, crate_id: CrateId) -> Cancelable<FileId> {
|
|
|
|
Ok(self.imp.crate_root(crate_id))
|
2018-08-31 11:14:08 -05:00
|
|
|
}
|
2018-10-20 14:02:41 -05:00
|
|
|
pub fn runnables(&self, file_id: FileId) -> Cancelable<Vec<Runnable>> {
|
2018-09-07 14:03:39 -05:00
|
|
|
let file = self.imp.file_syntax(file_id);
|
2018-10-20 14:02:41 -05:00
|
|
|
Ok(ra_editor::runnables(&file))
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-10-20 14:02:41 -05:00
|
|
|
pub fn highlight(&self, file_id: FileId) -> Cancelable<Vec<HighlightedRange>> {
|
2018-09-07 14:03:39 -05:00
|
|
|
let file = self.imp.file_syntax(file_id);
|
2018-10-20 14:02:41 -05:00
|
|
|
Ok(ra_editor::highlight(&file))
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-10-20 14:02:41 -05:00
|
|
|
pub fn completions(&self, file_id: FileId, offset: TextUnit) -> Cancelable<Option<Vec<CompletionItem>>> {
|
2018-10-24 10:37:25 -05:00
|
|
|
self.imp.completions(file_id, offset)
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-10-20 14:02:41 -05:00
|
|
|
pub fn assists(&self, file_id: FileId, range: TextRange) -> Cancelable<Vec<SourceChange>> {
|
|
|
|
Ok(self.imp.assists(file_id, range))
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-10-20 14:02:41 -05:00
|
|
|
pub fn diagnostics(&self, file_id: FileId) -> Cancelable<Vec<Diagnostic>> {
|
2018-10-20 14:15:03 -05:00
|
|
|
self.imp.diagnostics(file_id)
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-10-15 16:44:23 -05:00
|
|
|
pub fn resolve_callable(
|
|
|
|
&self,
|
|
|
|
file_id: FileId,
|
|
|
|
offset: TextUnit,
|
2018-10-20 14:09:12 -05:00
|
|
|
) -> Cancelable<Option<(FnDescriptor, Option<usize>)>> {
|
2018-10-20 14:29:26 -05:00
|
|
|
self.imp.resolve_callable(file_id, offset)
|
2018-10-09 09:08:17 -05:00
|
|
|
}
|
2018-08-30 05:12:49 -05:00
|
|
|
}
|
2018-09-03 13:26:59 -05:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct LibraryData {
|
2018-10-15 16:44:23 -05:00
|
|
|
root: roots::ReadonlySourceRoot,
|
2018-09-03 13:26:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl LibraryData {
|
2018-09-10 04:57:40 -05:00
|
|
|
pub fn prepare(files: Vec<(FileId, String)>, file_resolver: Arc<FileResolver>) -> LibraryData {
|
|
|
|
let file_resolver = FileResolverImp::new(file_resolver);
|
|
|
|
let root = roots::ReadonlySourceRoot::new(files, file_resolver);
|
2018-09-03 13:26:59 -05:00
|
|
|
LibraryData { root }
|
|
|
|
}
|
|
|
|
}
|
2018-10-15 14:29:24 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn analysis_is_send() {
|
|
|
|
fn is_send<T: Send>() {}
|
|
|
|
is_send::<Analysis>();
|
|
|
|
}
|