rust/crates/server/src/conv.rs

219 lines
5.4 KiB
Rust
Raw Normal View History

2018-08-15 09:24:20 -05:00
use languageserver_types::{
Range, SymbolKind, Position, TextEdit, Location, Url,
TextDocumentIdentifier, VersionedTextDocumentIdentifier, TextDocumentItem,
};
2018-08-12 18:38:34 -05:00
use libeditor::{LineIndex, LineCol, Edit, AtomEdit};
2018-08-12 13:02:56 -05:00
use libsyntax2::{SyntaxKind, TextUnit, TextRange};
2018-08-15 09:24:20 -05:00
use libanalysis::FileId;
2018-08-12 13:02:56 -05:00
2018-08-17 11:54:08 -05:00
use {
Result,
server_world::ServerWorld,
};
2018-08-13 08:35:17 -05:00
2018-08-12 13:02:56 -05:00
pub trait Conv {
type Output;
2018-08-12 18:38:34 -05:00
fn conv(self) -> Self::Output;
2018-08-12 13:02:56 -05:00
}
pub trait ConvWith {
type Ctx;
type Output;
2018-08-12 18:38:34 -05:00
fn conv_with(self, ctx: &Self::Ctx) -> Self::Output;
2018-08-12 13:02:56 -05:00
}
2018-08-13 08:35:17 -05:00
pub trait TryConvWith {
type Ctx;
type Output;
fn try_conv_with(self, ctx: &Self::Ctx) -> Result<Self::Output>;
}
2018-08-12 13:02:56 -05:00
impl Conv for SyntaxKind {
type Output = SymbolKind;
2018-08-12 18:38:34 -05:00
fn conv(self) -> <Self as Conv>::Output {
match self {
2018-08-13 10:27:26 -05:00
SyntaxKind::FN_DEF => SymbolKind::Function,
SyntaxKind::STRUCT_DEF => SymbolKind::Struct,
SyntaxKind::ENUM_DEF => SymbolKind::Enum,
SyntaxKind::TRAIT_DEF => SymbolKind::Interface,
2018-08-12 13:02:56 -05:00
SyntaxKind::MODULE => SymbolKind::Module,
2018-08-13 10:27:26 -05:00
SyntaxKind::TYPE_DEF => SymbolKind::TypeParameter,
SyntaxKind::STATIC_DEF => SymbolKind::Constant,
SyntaxKind::CONST_DEF => SymbolKind::Constant,
2018-08-14 03:20:09 -05:00
SyntaxKind::IMPL_ITEM => SymbolKind::Object,
2018-08-12 13:02:56 -05:00
_ => SymbolKind::Variable,
}
}
}
impl ConvWith for Position {
type Ctx = LineIndex;
type Output = TextUnit;
2018-08-12 18:38:34 -05:00
fn conv_with(self, line_index: &LineIndex) -> TextUnit {
2018-08-12 13:02:56 -05:00
// TODO: UTF-16
let line_col = LineCol {
line: self.line as u32,
col: (self.character as u32).into(),
};
line_index.offset(line_col)
}
}
impl ConvWith for TextUnit {
type Ctx = LineIndex;
type Output = Position;
2018-08-12 18:38:34 -05:00
fn conv_with(self, line_index: &LineIndex) -> Position {
let line_col = line_index.line_col(self);
2018-08-12 13:02:56 -05:00
// TODO: UTF-16
Position::new(line_col.line as u64, u32::from(line_col.col) as u64)
}
}
impl ConvWith for TextRange {
type Ctx = LineIndex;
type Output = Range;
2018-08-12 18:38:34 -05:00
fn conv_with(self, line_index: &LineIndex) -> Range {
2018-08-12 13:02:56 -05:00
Range::new(
self.start().conv_with(line_index),
self.end().conv_with(line_index),
)
}
}
impl ConvWith for Range {
type Ctx = LineIndex;
type Output = TextRange;
2018-08-12 18:38:34 -05:00
fn conv_with(self, line_index: &LineIndex) -> TextRange {
2018-08-12 13:02:56 -05:00
TextRange::from_to(
self.start.conv_with(line_index),
self.end.conv_with(line_index),
)
}
}
2018-08-12 18:38:34 -05:00
impl ConvWith for Edit {
type Ctx = LineIndex;
type Output = Vec<TextEdit>;
fn conv_with(self, line_index: &LineIndex) -> Vec<TextEdit> {
self.into_atoms()
.into_iter()
.map_conv_with(line_index)
.collect()
}
}
impl ConvWith for AtomEdit {
type Ctx = LineIndex;
type Output = TextEdit;
fn conv_with(self, line_index: &LineIndex) -> TextEdit {
TextEdit {
range: self.delete.conv_with(line_index),
new_text: self.insert,
}
}
}
2018-08-15 16:23:22 -05:00
impl<T: ConvWith> ConvWith for Option<T> {
type Ctx = <T as ConvWith>::Ctx;
type Output = Option<<T as ConvWith>::Output>;
fn conv_with(self, ctx: &Self::Ctx) -> Self::Output {
self.map(|x| ConvWith::conv_with(x, ctx))
}
}
2018-08-15 09:24:20 -05:00
impl<'a> TryConvWith for &'a Url {
2018-08-17 11:54:08 -05:00
type Ctx = ServerWorld;
2018-08-15 09:24:20 -05:00
type Output = FileId;
2018-08-17 11:54:08 -05:00
fn try_conv_with(self, world: &ServerWorld) -> Result<FileId> {
world.uri_to_file_id(self)
2018-08-15 09:24:20 -05:00
}
}
impl TryConvWith for FileId {
2018-08-17 11:54:08 -05:00
type Ctx = ServerWorld;
2018-08-15 09:24:20 -05:00
type Output = Url;
2018-08-17 11:54:08 -05:00
fn try_conv_with(self, world: &ServerWorld) -> Result<Url> {
world.file_id_to_uri(self)
2018-08-15 09:24:20 -05:00
}
}
impl<'a> TryConvWith for &'a TextDocumentItem {
2018-08-17 11:54:08 -05:00
type Ctx = ServerWorld;
2018-08-15 09:24:20 -05:00
type Output = FileId;
2018-08-17 11:54:08 -05:00
fn try_conv_with(self, world: &ServerWorld) -> Result<FileId> {
self.uri.try_conv_with(world)
2018-08-15 09:24:20 -05:00
}
}
2018-08-13 08:35:17 -05:00
2018-08-15 09:24:20 -05:00
impl<'a> TryConvWith for &'a VersionedTextDocumentIdentifier {
2018-08-17 11:54:08 -05:00
type Ctx = ServerWorld;
2018-08-15 09:24:20 -05:00
type Output = FileId;
2018-08-17 11:54:08 -05:00
fn try_conv_with(self, world: &ServerWorld) -> Result<FileId> {
self.uri.try_conv_with(world)
2018-08-15 09:24:20 -05:00
}
}
impl<'a> TryConvWith for &'a TextDocumentIdentifier {
2018-08-17 11:54:08 -05:00
type Ctx = ServerWorld;
2018-08-15 09:24:20 -05:00
type Output = FileId;
2018-08-17 11:54:08 -05:00
fn try_conv_with(self, world: &ServerWorld) -> Result<FileId> {
world.uri_to_file_id(&self.uri)
2018-08-15 09:24:20 -05:00
}
}
pub fn to_location(
file_id: FileId,
range: TextRange,
2018-08-17 11:54:08 -05:00
world: &ServerWorld,
2018-08-15 09:24:20 -05:00
line_index: &LineIndex,
) -> Result<Location> {
2018-08-17 11:54:08 -05:00
let url = file_id.try_conv_with(world)?;
2018-08-13 08:35:17 -05:00
let loc = Location::new(
2018-08-15 09:24:20 -05:00
url,
range.conv_with(line_index),
2018-08-13 08:35:17 -05:00
);
Ok(loc)
}
2018-08-12 18:38:34 -05:00
pub trait MapConvWith<'a>: Sized {
type Ctx;
type Output;
fn map_conv_with(self, ctx: &'a Self::Ctx) -> ConvWithIter<'a, Self, Self::Ctx> {
ConvWithIter { iter: self, ctx }
}
}
impl<'a, I> MapConvWith<'a> for I
where I: Iterator,
I::Item: ConvWith
{
type Ctx = <I::Item as ConvWith>::Ctx;
type Output = <I::Item as ConvWith>::Output;
}
pub struct ConvWithIter<'a, I, Ctx: 'a> {
iter: I,
ctx: &'a Ctx,
}
impl<'a, I, Ctx> Iterator for ConvWithIter<'a, I, Ctx>
where
I: Iterator,
I::Item: ConvWith<Ctx=Ctx>,
{
type Item = <I::Item as ConvWith>::Output;
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(|item| item.conv_with(self.ctx))
}
}