2018-08-12 14:08:14 -05:00
|
|
|
mod handlers;
|
|
|
|
|
2018-08-13 05:46:05 -05:00
|
|
|
use std::{
|
2018-08-17 11:54:08 -05:00
|
|
|
collections::{HashSet},
|
2018-08-13 05:46:05 -05:00
|
|
|
};
|
2018-08-12 16:09:30 -05:00
|
|
|
|
2018-08-12 14:08:14 -05:00
|
|
|
use threadpool::ThreadPool;
|
|
|
|
use crossbeam_channel::{Sender, Receiver};
|
|
|
|
use languageserver_types::Url;
|
2018-08-12 18:38:34 -05:00
|
|
|
use serde_json::to_value;
|
2018-08-12 16:09:30 -05:00
|
|
|
|
2018-08-12 14:08:14 -05:00
|
|
|
use {
|
|
|
|
req, dispatch,
|
2018-08-17 11:54:08 -05:00
|
|
|
Task, Result,
|
2018-08-12 16:09:30 -05:00
|
|
|
io::{Io, RawMsg, RawRequest, RawNotification},
|
2018-08-17 11:54:08 -05:00
|
|
|
vfs::FileEvent,
|
|
|
|
server_world::{ServerWorldState, ServerWorld},
|
2018-08-12 14:08:14 -05:00
|
|
|
main_loop::handlers::{
|
|
|
|
handle_syntax_tree,
|
|
|
|
handle_extend_selection,
|
|
|
|
publish_diagnostics,
|
|
|
|
publish_decorations,
|
|
|
|
handle_document_symbol,
|
|
|
|
handle_code_action,
|
2018-08-12 18:38:34 -05:00
|
|
|
handle_execute_command,
|
2018-08-13 07:35:53 -05:00
|
|
|
handle_workspace_symbol,
|
2018-08-13 08:35:17 -05:00
|
|
|
handle_goto_definition,
|
2018-08-15 16:23:22 -05:00
|
|
|
handle_find_matching_brace,
|
2018-08-12 14:08:14 -05:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub(super) fn main_loop(
|
|
|
|
io: &mut Io,
|
|
|
|
pool: &mut ThreadPool,
|
2018-08-13 05:46:05 -05:00
|
|
|
task_sender: Sender<Task>,
|
|
|
|
task_receiver: Receiver<Task>,
|
|
|
|
fs_events_receiver: Receiver<Vec<FileEvent>>,
|
2018-08-12 14:08:14 -05:00
|
|
|
) -> Result<()> {
|
|
|
|
info!("server initialized, serving requests");
|
2018-08-17 11:54:08 -05:00
|
|
|
let mut state = ServerWorldState::new();
|
|
|
|
|
2018-08-12 16:09:30 -05:00
|
|
|
let mut next_request_id = 0;
|
|
|
|
let mut pending_requests: HashSet<u64> = HashSet::new();
|
2018-08-13 05:46:05 -05:00
|
|
|
let mut fs_events_receiver = Some(&fs_events_receiver);
|
2018-08-12 14:08:14 -05:00
|
|
|
loop {
|
|
|
|
enum Event {
|
|
|
|
Msg(RawMsg),
|
|
|
|
Task(Task),
|
2018-08-13 05:46:05 -05:00
|
|
|
Fs(Vec<FileEvent>),
|
2018-08-12 14:08:14 -05:00
|
|
|
ReceiverDead,
|
2018-08-13 05:46:05 -05:00
|
|
|
FsWatcherDead,
|
2018-08-12 14:08:14 -05:00
|
|
|
}
|
|
|
|
let event = select! {
|
|
|
|
recv(io.receiver(), msg) => match msg {
|
|
|
|
Some(msg) => Event::Msg(msg),
|
|
|
|
None => Event::ReceiverDead,
|
|
|
|
},
|
2018-08-13 05:46:05 -05:00
|
|
|
recv(task_receiver, task) => Event::Task(task.unwrap()),
|
|
|
|
recv(fs_events_receiver, events) => match events {
|
|
|
|
Some(events) => Event::Fs(events),
|
|
|
|
None => Event::FsWatcherDead,
|
|
|
|
}
|
2018-08-12 14:08:14 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
match event {
|
|
|
|
Event::ReceiverDead => {
|
|
|
|
io.cleanup_receiver()?;
|
|
|
|
unreachable!();
|
|
|
|
}
|
2018-08-13 05:46:05 -05:00
|
|
|
Event::FsWatcherDead => {
|
|
|
|
fs_events_receiver = None;
|
|
|
|
}
|
2018-08-12 14:08:14 -05:00
|
|
|
Event::Task(task) => {
|
|
|
|
match task {
|
2018-08-12 16:09:30 -05:00
|
|
|
Task::Request(mut request) => {
|
|
|
|
request.id = next_request_id;
|
|
|
|
pending_requests.insert(next_request_id);
|
|
|
|
next_request_id += 1;
|
|
|
|
io.send(RawMsg::Request(request));
|
|
|
|
}
|
2018-08-12 14:08:14 -05:00
|
|
|
Task::Respond(response) =>
|
|
|
|
io.send(RawMsg::Response(response)),
|
|
|
|
Task::Notify(n) =>
|
|
|
|
io.send(RawMsg::Notification(n)),
|
|
|
|
Task::Die(error) =>
|
|
|
|
return Err(error),
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2018-08-13 05:46:05 -05:00
|
|
|
Event::Fs(events) => {
|
|
|
|
trace!("fs change, {} events", events.len());
|
2018-08-17 11:54:08 -05:00
|
|
|
state.apply_fs_changes(events);
|
2018-08-13 05:46:05 -05:00
|
|
|
}
|
2018-08-12 14:08:14 -05:00
|
|
|
Event::Msg(msg) => {
|
2018-08-12 16:09:30 -05:00
|
|
|
match msg {
|
|
|
|
RawMsg::Request(req) => {
|
2018-08-17 11:54:08 -05:00
|
|
|
if !on_request(io, &state, pool, &task_sender, req)? {
|
2018-08-12 16:09:30 -05:00
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RawMsg::Notification(not) => {
|
2018-08-17 11:54:08 -05:00
|
|
|
on_notification(io, &mut state, pool, &task_sender, not)?
|
2018-08-12 16:09:30 -05:00
|
|
|
}
|
|
|
|
RawMsg::Response(resp) => {
|
2018-08-12 18:38:34 -05:00
|
|
|
if !pending_requests.remove(&resp.id) {
|
|
|
|
error!("unexpected response: {:?}", resp)
|
|
|
|
}
|
2018-08-12 16:09:30 -05:00
|
|
|
}
|
2018-08-12 14:08:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-12 16:09:30 -05:00
|
|
|
fn on_request(
|
2018-08-12 14:08:14 -05:00
|
|
|
io: &mut Io,
|
2018-08-17 11:54:08 -05:00
|
|
|
world: &ServerWorldState,
|
2018-08-12 16:09:30 -05:00
|
|
|
pool: &ThreadPool,
|
2018-08-12 14:08:14 -05:00
|
|
|
sender: &Sender<Task>,
|
2018-08-12 16:09:30 -05:00
|
|
|
req: RawRequest,
|
2018-08-12 14:08:14 -05:00
|
|
|
) -> Result<bool> {
|
2018-08-12 16:09:30 -05:00
|
|
|
let mut req = Some(req);
|
|
|
|
handle_request_on_threadpool::<req::SyntaxTree>(
|
2018-08-17 11:54:08 -05:00
|
|
|
&mut req, pool, world, sender, handle_syntax_tree,
|
2018-08-12 16:09:30 -05:00
|
|
|
)?;
|
|
|
|
handle_request_on_threadpool::<req::ExtendSelection>(
|
2018-08-17 11:54:08 -05:00
|
|
|
&mut req, pool, world, sender, handle_extend_selection,
|
2018-08-12 16:09:30 -05:00
|
|
|
)?;
|
2018-08-15 16:23:22 -05:00
|
|
|
handle_request_on_threadpool::<req::FindMatchingBrace>(
|
2018-08-17 11:54:08 -05:00
|
|
|
&mut req, pool, world, sender, handle_find_matching_brace,
|
2018-08-15 16:23:22 -05:00
|
|
|
)?;
|
2018-08-12 16:09:30 -05:00
|
|
|
handle_request_on_threadpool::<req::DocumentSymbolRequest>(
|
2018-08-17 11:54:08 -05:00
|
|
|
&mut req, pool, world, sender, handle_document_symbol,
|
2018-08-12 16:09:30 -05:00
|
|
|
)?;
|
|
|
|
handle_request_on_threadpool::<req::CodeActionRequest>(
|
2018-08-17 11:54:08 -05:00
|
|
|
&mut req, pool, world, sender, handle_code_action,
|
2018-08-12 16:09:30 -05:00
|
|
|
)?;
|
2018-08-13 07:35:53 -05:00
|
|
|
handle_request_on_threadpool::<req::WorkspaceSymbol>(
|
2018-08-17 11:54:08 -05:00
|
|
|
&mut req, pool, world, sender, handle_workspace_symbol,
|
2018-08-13 07:35:53 -05:00
|
|
|
)?;
|
2018-08-13 08:35:17 -05:00
|
|
|
handle_request_on_threadpool::<req::GotoDefinition>(
|
2018-08-17 11:54:08 -05:00
|
|
|
&mut req, pool, world, sender, handle_goto_definition,
|
2018-08-13 08:35:17 -05:00
|
|
|
)?;
|
2018-08-12 18:38:34 -05:00
|
|
|
dispatch::handle_request::<req::ExecuteCommand, _>(&mut req, |params, resp| {
|
|
|
|
io.send(RawMsg::Response(resp.into_response(Ok(None))?));
|
|
|
|
|
2018-08-17 11:54:08 -05:00
|
|
|
let world = world.snapshot();
|
2018-08-12 18:38:34 -05:00
|
|
|
let sender = sender.clone();
|
|
|
|
pool.execute(move || {
|
2018-08-17 11:54:08 -05:00
|
|
|
let (edit, cursor) = match handle_execute_command(world, params) {
|
2018-08-16 05:46:31 -05:00
|
|
|
Ok(res) => res,
|
|
|
|
Err(e) => return sender.send(Task::Die(e)),
|
2018-08-12 18:38:34 -05:00
|
|
|
};
|
2018-08-16 05:46:31 -05:00
|
|
|
match to_value(edit) {
|
|
|
|
Err(e) => return sender.send(Task::Die(e.into())),
|
|
|
|
Ok(params) => {
|
|
|
|
let request = RawRequest {
|
|
|
|
id: 0,
|
|
|
|
method: <req::ApplyWorkspaceEdit as req::ClientRequest>::METHOD.to_string(),
|
|
|
|
params,
|
|
|
|
};
|
|
|
|
sender.send(Task::Request(request))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(cursor) = cursor {
|
|
|
|
let request = RawRequest {
|
|
|
|
id: 0,
|
|
|
|
method: <req::MoveCursor as req::ClientRequest>::METHOD.to_string(),
|
|
|
|
params: to_value(cursor).unwrap(),
|
|
|
|
};
|
|
|
|
sender.send(Task::Request(request))
|
|
|
|
}
|
2018-08-12 18:38:34 -05:00
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
})?;
|
2018-08-12 14:08:14 -05:00
|
|
|
|
2018-08-12 16:09:30 -05:00
|
|
|
let mut shutdown = false;
|
|
|
|
dispatch::handle_request::<req::Shutdown, _>(&mut req, |(), resp| {
|
|
|
|
let resp = resp.into_response(Ok(()))?;
|
|
|
|
io.send(RawMsg::Response(resp));
|
|
|
|
shutdown = true;
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
if shutdown {
|
|
|
|
info!("lifecycle: initiating shutdown");
|
|
|
|
return Ok(false);
|
|
|
|
}
|
|
|
|
if let Some(req) = req {
|
|
|
|
error!("unknown method: {:?}", req);
|
|
|
|
io.send(RawMsg::Response(dispatch::unknown_method(req.id)?));
|
|
|
|
}
|
2018-08-12 14:08:14 -05:00
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
|
2018-08-12 16:09:30 -05:00
|
|
|
fn on_notification(
|
|
|
|
io: &mut Io,
|
2018-08-17 11:54:08 -05:00
|
|
|
state: &mut ServerWorldState,
|
2018-08-12 16:09:30 -05:00
|
|
|
pool: &ThreadPool,
|
|
|
|
sender: &Sender<Task>,
|
|
|
|
not: RawNotification,
|
|
|
|
) -> Result<()> {
|
|
|
|
let mut not = Some(not);
|
|
|
|
dispatch::handle_notification::<req::DidOpenTextDocument, _>(&mut not, |params| {
|
2018-08-15 09:24:20 -05:00
|
|
|
let uri = params.text_document.uri;
|
|
|
|
let path = uri.to_file_path()
|
|
|
|
.map_err(|()| format_err!("invalid uri: {}", uri))?;
|
2018-08-17 11:54:08 -05:00
|
|
|
state.add_mem_file(path, params.text_document.text);
|
2018-08-12 16:09:30 -05:00
|
|
|
update_file_notifications_on_threadpool(
|
2018-08-16 16:18:14 -05:00
|
|
|
pool,
|
2018-08-17 11:54:08 -05:00
|
|
|
state.snapshot(),
|
2018-08-16 16:18:14 -05:00
|
|
|
sender.clone(),
|
|
|
|
uri,
|
2018-08-12 16:09:30 -05:00
|
|
|
);
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
dispatch::handle_notification::<req::DidChangeTextDocument, _>(&mut not, |mut params| {
|
2018-08-17 11:54:08 -05:00
|
|
|
let uri = params.text_document.uri;
|
|
|
|
let path = uri.to_file_path()
|
|
|
|
.map_err(|()| format_err!("invalid uri: {}", uri))?;
|
2018-08-12 16:09:30 -05:00
|
|
|
let text = params.content_changes.pop()
|
|
|
|
.ok_or_else(|| format_err!("empty changes"))?
|
|
|
|
.text;
|
2018-08-17 11:54:08 -05:00
|
|
|
state.change_mem_file(path.as_path(), text)?;
|
2018-08-12 16:09:30 -05:00
|
|
|
update_file_notifications_on_threadpool(
|
2018-08-16 16:18:14 -05:00
|
|
|
pool,
|
2018-08-17 11:54:08 -05:00
|
|
|
state.snapshot(),
|
2018-08-16 16:18:14 -05:00
|
|
|
sender.clone(),
|
2018-08-17 11:54:08 -05:00
|
|
|
uri,
|
2018-08-12 16:09:30 -05:00
|
|
|
);
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
dispatch::handle_notification::<req::DidCloseTextDocument, _>(&mut not, |params| {
|
2018-08-17 11:54:08 -05:00
|
|
|
let uri = params.text_document.uri;
|
|
|
|
let path = uri.to_file_path()
|
|
|
|
.map_err(|()| format_err!("invalid uri: {}", uri))?;
|
|
|
|
state.remove_mem_file(path.as_path())?;
|
2018-08-12 16:09:30 -05:00
|
|
|
let not = req::PublishDiagnosticsParams {
|
2018-08-17 11:54:08 -05:00
|
|
|
uri,
|
2018-08-12 16:09:30 -05:00
|
|
|
diagnostics: Vec::new(),
|
|
|
|
};
|
|
|
|
let not = dispatch::send_notification::<req::PublishDiagnostics>(not);
|
|
|
|
io.send(RawMsg::Notification(not));
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
|
|
|
|
if let Some(not) = not {
|
|
|
|
error!("unhandled notification: {:?}", not);
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2018-08-12 14:08:14 -05:00
|
|
|
fn handle_request_on_threadpool<R: req::ClientRequest>(
|
|
|
|
req: &mut Option<RawRequest>,
|
|
|
|
pool: &ThreadPool,
|
2018-08-17 11:54:08 -05:00
|
|
|
world: &ServerWorldState,
|
2018-08-12 14:08:14 -05:00
|
|
|
sender: &Sender<Task>,
|
2018-08-17 11:54:08 -05:00
|
|
|
f: fn(ServerWorld, R::Params) -> Result<R::Result>,
|
2018-08-12 14:08:14 -05:00
|
|
|
) -> Result<()>
|
|
|
|
{
|
|
|
|
dispatch::handle_request::<R, _>(req, |params, resp| {
|
2018-08-17 11:54:08 -05:00
|
|
|
let world = world.snapshot();
|
2018-08-12 14:08:14 -05:00
|
|
|
let sender = sender.clone();
|
|
|
|
pool.execute(move || {
|
2018-08-17 11:54:08 -05:00
|
|
|
let res = f(world, params);
|
2018-08-12 14:08:14 -05:00
|
|
|
let task = match resp.into_response(res) {
|
|
|
|
Ok(resp) => Task::Respond(resp),
|
|
|
|
Err(e) => Task::Die(e),
|
|
|
|
};
|
|
|
|
sender.send(task);
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update_file_notifications_on_threadpool(
|
|
|
|
pool: &ThreadPool,
|
2018-08-17 11:54:08 -05:00
|
|
|
world: ServerWorld,
|
2018-08-12 14:08:14 -05:00
|
|
|
sender: Sender<Task>,
|
|
|
|
uri: Url,
|
|
|
|
) {
|
|
|
|
pool.execute(move || {
|
2018-08-17 11:54:08 -05:00
|
|
|
match publish_diagnostics(world.clone(), uri.clone()) {
|
2018-08-12 14:08:14 -05:00
|
|
|
Err(e) => {
|
|
|
|
error!("failed to compute diagnostics: {:?}", e)
|
|
|
|
}
|
|
|
|
Ok(params) => {
|
|
|
|
let not = dispatch::send_notification::<req::PublishDiagnostics>(params);
|
|
|
|
sender.send(Task::Notify(not));
|
|
|
|
}
|
|
|
|
}
|
2018-08-17 11:54:08 -05:00
|
|
|
match publish_decorations(world, uri) {
|
2018-08-12 14:08:14 -05:00
|
|
|
Err(e) => {
|
|
|
|
error!("failed to compute decorations: {:?}", e)
|
|
|
|
}
|
|
|
|
Ok(params) => {
|
|
|
|
let not = dispatch::send_notification::<req::PublishDecorations>(params);
|
|
|
|
sender.send(Task::Notify(not))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|