aboutsummaryrefslogtreecommitdiff
path: root/crates/server/src/main.rs
blob: baabde629854e42c023193f01ea007fb9e8870b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#[macro_use]
extern crate log;
#[macro_use]
extern crate failure;
extern crate flexi_logger;
extern crate gen_lsp_server;
extern crate m;

use flexi_logger::{Logger, Duplicate};
use gen_lsp_server::{run_server, stdio_transport};
use m::Result;

fn main() -> Result<()> {
    Logger::with_env_or_str("m=error")
        .duplicate_to_stderr(Duplicate::All)
        .log_to_file()
        .directory("log")
        .start()?;
    info!("lifecycle: server started");
    match ::std::panic::catch_unwind(|| main_inner()) {
        Ok(res) => {
            info!("lifecycle: terminating process with {:?}", res);
            res
        }
        Err(_) => {
            error!("server panicked");
            bail!("server panicked")
        }
    }
}

fn main_inner() -> Result<()> {
    let (receiver, sender, threads) = stdio_transport();
    let cwd = ::std::env::current_dir()?;
    run_server(
        m::server_capabilities(),
        |params, r, s| {
            let root = params.root_uri
                .and_then(|it| it.to_file_path().ok())
                .unwrap_or(cwd);
            m::main_loop(false, root, r, s)
        },
        receiver,
        sender,
    )?;
    info!("shutting down IO...");
    threads.join()?;
    info!("... IO is down");
    Ok(())
}