mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 15:14:32 +00:00
Implement ra_lsp_server --version
This commit is contained in:
parent
7819aa8862
commit
5a012fb9fd
2 changed files with 32 additions and 1 deletions
15
crates/ra_lsp_server/build.rs
Normal file
15
crates/ra_lsp_server/build.rs
Normal file
|
@ -0,0 +1,15 @@
|
|||
//! Just embed git-hash to `--version`
|
||||
|
||||
use std::process::Command;
|
||||
|
||||
fn main() {
|
||||
let rev = rev().unwrap_or_else(|| "???????".to_string());
|
||||
println!("cargo:rustc-env=REV={}", rev)
|
||||
}
|
||||
|
||||
fn rev() -> Option<String> {
|
||||
let output = Command::new("git").args(&["rev-parse", "HEAD"]).output().ok()?;
|
||||
let stdout = String::from_utf8(output.stdout).ok()?;
|
||||
let short_hash = stdout.get(0..7)?;
|
||||
Some(short_hash.to_owned())
|
||||
}
|
|
@ -6,7 +6,10 @@ use ra_prof;
|
|||
|
||||
fn main() -> Result<()> {
|
||||
setup_logging()?;
|
||||
run_server()?;
|
||||
match Args::parse()? {
|
||||
Args::Version => println!("rust-analyzer {}", env!("REV")),
|
||||
Args::Run => run_server()?,
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
@ -22,6 +25,19 @@ fn setup_logging() -> Result<()> {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
enum Args {
|
||||
Version,
|
||||
Run,
|
||||
}
|
||||
|
||||
impl Args {
|
||||
fn parse() -> Result<Args> {
|
||||
let res =
|
||||
if std::env::args().any(|it| it == "--version") { Args::Version } else { Args::Run };
|
||||
Ok(res)
|
||||
}
|
||||
}
|
||||
|
||||
fn run_server() -> Result<()> {
|
||||
log::info!("lifecycle: server started");
|
||||
|
||||
|
|
Loading…
Reference in a new issue