2018-08-10 07:07:43 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate failure;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
extern crate serde;
|
|
|
|
extern crate serde_json;
|
|
|
|
extern crate languageserver_types;
|
|
|
|
extern crate drop_bomb;
|
2018-08-10 09:49:45 -05:00
|
|
|
#[macro_use]
|
2018-08-10 07:07:43 -05:00
|
|
|
extern crate crossbeam_channel;
|
2018-08-10 09:49:45 -05:00
|
|
|
extern crate threadpool;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
extern crate flexi_logger;
|
2018-08-10 07:07:43 -05:00
|
|
|
extern crate libeditor;
|
|
|
|
extern crate libanalysis;
|
|
|
|
|
|
|
|
mod io;
|
|
|
|
mod caps;
|
|
|
|
mod req;
|
|
|
|
mod dispatch;
|
2018-08-10 13:13:39 -05:00
|
|
|
mod handlers;
|
|
|
|
|
|
|
|
use std::path::PathBuf;
|
2018-08-10 07:07:43 -05:00
|
|
|
|
2018-08-10 09:49:45 -05:00
|
|
|
use threadpool::ThreadPool;
|
|
|
|
use crossbeam_channel::{bounded, Sender, Receiver};
|
|
|
|
use flexi_logger::Logger;
|
2018-08-10 07:07:43 -05:00
|
|
|
use libanalysis::WorldState;
|
2018-08-10 13:13:39 -05:00
|
|
|
use languageserver_types::{TextDocumentItem, VersionedTextDocumentIdentifier, TextDocumentIdentifier};
|
2018-08-10 09:49:45 -05:00
|
|
|
|
|
|
|
use ::{
|
|
|
|
io::{Io, RawMsg},
|
2018-08-10 13:13:39 -05:00
|
|
|
handlers::handle_syntax_tree,
|
2018-08-10 09:49:45 -05:00
|
|
|
};
|
2018-08-10 07:07:43 -05:00
|
|
|
|
|
|
|
pub type Result<T> = ::std::result::Result<T, ::failure::Error>;
|
|
|
|
|
|
|
|
fn main() -> Result<()> {
|
2018-08-10 13:13:39 -05:00
|
|
|
Logger::with_env_or_str("m=trace, libanalysis=trace")
|
2018-08-10 09:49:45 -05:00
|
|
|
.log_to_file()
|
|
|
|
.directory("log")
|
|
|
|
.start()?;
|
|
|
|
info!("starting server");
|
|
|
|
match ::std::panic::catch_unwind(|| main_inner()) {
|
|
|
|
Ok(res) => {
|
|
|
|
info!("shutting down: {:?}", res);
|
|
|
|
res
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
error!("server panicked");
|
|
|
|
bail!("server panicked")
|
2018-08-10 10:01:59 -05:00
|
|
|
}
|
2018-08-10 09:49:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main_inner() -> Result<()> {
|
2018-08-10 07:07:43 -05:00
|
|
|
let mut io = Io::from_stdio();
|
2018-08-10 09:49:45 -05:00
|
|
|
let res = initialize(&mut io);
|
|
|
|
info!("shutting down IO...");
|
|
|
|
let io_res = io.stop();
|
|
|
|
info!("... IO is down");
|
|
|
|
match (res, io_res) {
|
|
|
|
(Ok(()), Ok(())) => Ok(()),
|
|
|
|
(res, Ok(())) => res,
|
|
|
|
(Ok(()), io_res) => io_res,
|
|
|
|
(res, Err(io_err)) => {
|
|
|
|
error!("shutdown error: {:?}", io_err);
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
2018-08-10 07:07:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn initialize(io: &mut Io) -> Result<()> {
|
|
|
|
loop {
|
|
|
|
match io.recv()? {
|
|
|
|
RawMsg::Request(req) => {
|
2018-08-10 13:13:39 -05:00
|
|
|
if let Some((_params, resp)) = dispatch::expect_request::<req::Initialize>(io, req)? {
|
2018-08-10 10:01:59 -05:00
|
|
|
resp.result(io, req::InitializeResult {
|
2018-08-10 07:07:43 -05:00
|
|
|
capabilities: caps::SERVER_CAPABILITIES
|
|
|
|
})?;
|
|
|
|
match io.recv()? {
|
|
|
|
RawMsg::Notification(n) => {
|
|
|
|
if n.method != "initialized" {
|
|
|
|
bail!("expected initialized notification");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bail!("expected initialized notification");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return initialized(io);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RawMsg::Notification(n) => {
|
|
|
|
bail!("expected initialize request, got {:?}", n)
|
|
|
|
}
|
|
|
|
RawMsg::Response(res) => {
|
|
|
|
bail!("expected initialize request, got {:?}", res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-10 09:49:45 -05:00
|
|
|
type Thunk = Box<for<'a> FnBox<&'a mut Io, Result<()>>>;
|
|
|
|
|
2018-08-10 07:07:43 -05:00
|
|
|
fn initialized(io: &mut Io) -> Result<()> {
|
2018-08-10 09:49:45 -05:00
|
|
|
let mut world = WorldState::new();
|
|
|
|
let mut pool = ThreadPool::new(4);
|
|
|
|
let (sender, receiver) = bounded::<Thunk>(16);
|
|
|
|
let res = main_loop(io, &mut world, &mut pool, sender, receiver.clone());
|
|
|
|
info!("waiting for background jobs to finish...");
|
|
|
|
receiver.for_each(drop);
|
2018-08-10 10:01:59 -05:00
|
|
|
pool.join();
|
2018-08-10 09:49:45 -05:00
|
|
|
info!("...background jobs have finished");
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main_loop(
|
|
|
|
io: &mut Io,
|
|
|
|
world: &mut WorldState,
|
|
|
|
pool: &mut ThreadPool,
|
|
|
|
sender: Sender<Thunk>,
|
|
|
|
receiver: Receiver<Thunk>,
|
|
|
|
) -> Result<()> {
|
|
|
|
info!("server initialized, serving requests");
|
2018-08-10 07:07:43 -05:00
|
|
|
loop {
|
2018-08-10 09:49:45 -05:00
|
|
|
enum Event {
|
|
|
|
Msg(RawMsg),
|
|
|
|
Thunk(Thunk),
|
|
|
|
ReceiverDead,
|
|
|
|
}
|
|
|
|
|
|
|
|
let event = select! {
|
|
|
|
recv(io.receiver(), msg) => match msg {
|
|
|
|
Some(msg) => Event::Msg(msg),
|
|
|
|
None => Event::ReceiverDead,
|
|
|
|
},
|
|
|
|
recv(receiver, thunk) => Event::Thunk(thunk.unwrap()),
|
|
|
|
};
|
|
|
|
|
|
|
|
let msg = match event {
|
|
|
|
Event::ReceiverDead => {
|
|
|
|
io.cleanup_receiver()?;
|
|
|
|
unreachable!();
|
|
|
|
}
|
|
|
|
Event::Thunk(thunk) => {
|
|
|
|
thunk.call_box(io)?;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Event::Msg(msg) => msg,
|
|
|
|
};
|
|
|
|
|
|
|
|
match msg {
|
2018-08-10 07:07:43 -05:00
|
|
|
RawMsg::Request(req) => {
|
2018-08-10 13:13:39 -05:00
|
|
|
let req = match dispatch::parse_request_as::<req::SyntaxTree>(req)? {
|
2018-08-10 10:01:59 -05:00
|
|
|
Ok((params, resp)) => {
|
|
|
|
let world = world.snapshot();
|
|
|
|
let sender = sender.clone();
|
|
|
|
pool.execute(move || {
|
2018-08-10 13:13:39 -05:00
|
|
|
let res: Result<String> = handle_syntax_tree(world, params);
|
2018-08-10 10:01:59 -05:00
|
|
|
sender.send(Box::new(|io: &mut Io| resp.response(io, res)))
|
|
|
|
});
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
Err(req) => req,
|
|
|
|
};
|
|
|
|
|
2018-08-10 13:13:39 -05:00
|
|
|
if let Some(((), resp)) = dispatch::expect_request::<req::Shutdown>(io, req)? {
|
|
|
|
info!("clean shutdown started");
|
2018-08-10 10:01:59 -05:00
|
|
|
resp.result(io, ())?;
|
|
|
|
return Ok(());
|
2018-08-10 07:07:43 -05:00
|
|
|
}
|
|
|
|
}
|
2018-08-10 13:13:39 -05:00
|
|
|
RawMsg::Notification(not) => {
|
|
|
|
use dispatch::handle_notification as h;
|
|
|
|
let mut not = Some(not);
|
|
|
|
h::<req::DidOpenTextDocument, _>(&mut not, |params| {
|
|
|
|
let path = params.text_document.file_path()?;
|
|
|
|
world.change_overlay(path, Some(params.text_document.text));
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
h::<req::DidChangeTextDocument, _>(&mut not, |mut params| {
|
|
|
|
let path = params.text_document.file_path()?;
|
|
|
|
let text = params.content_changes.pop()
|
|
|
|
.ok_or_else(|| format_err!("empty changes"))?
|
|
|
|
.text;
|
|
|
|
world.change_overlay(path, Some(text));
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
h::<req::DidCloseTextDocument, _>(&mut not, |params| {
|
|
|
|
let path = params.text_document.file_path()?;
|
|
|
|
world.change_overlay(path, None);
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
|
|
|
|
if let Some(not) = not {
|
|
|
|
error!("unhandled notification: {:?}", not)
|
|
|
|
}
|
|
|
|
}
|
2018-08-10 07:07:43 -05:00
|
|
|
msg => {
|
|
|
|
eprintln!("msg = {:?}", msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-10 09:49:45 -05:00
|
|
|
trait FnBox<A, R>: Send {
|
|
|
|
fn call_box(self: Box<Self>, a: A) -> R;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A, R, F: FnOnce(A) -> R + Send> FnBox<A, R> for F {
|
|
|
|
fn call_box(self: Box<F>, a: A) -> R {
|
|
|
|
(*self)(a)
|
|
|
|
}
|
|
|
|
}
|
2018-08-10 13:13:39 -05:00
|
|
|
|
|
|
|
trait FilePath {
|
|
|
|
fn file_path(&self) -> Result<PathBuf>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FilePath for TextDocumentItem {
|
|
|
|
fn file_path(&self) -> Result<PathBuf> {
|
|
|
|
self.uri.to_file_path()
|
|
|
|
.map_err(|()| format_err!("invalid uri: {}", self.uri))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FilePath for VersionedTextDocumentIdentifier {
|
|
|
|
fn file_path(&self) -> Result<PathBuf> {
|
|
|
|
self.uri.to_file_path()
|
|
|
|
.map_err(|()| format_err!("invalid uri: {}", self.uri))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FilePath for TextDocumentIdentifier {
|
|
|
|
fn file_path(&self) -> Result<PathBuf> {
|
|
|
|
self.uri.to_file_path()
|
|
|
|
.map_err(|()| format_err!("invalid uri: {}", self.uri))
|
|
|
|
}
|
|
|
|
}
|