forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#13358 - btwotwo:feature/env-vars-autocompleti…
…on, r=Veykril feat: Autocomplete Cargo-defined env vars in `env!` and `option_env!` (rust-lang#12448) Closes rust-lang#12448 Important to know: - Variables are taken from https://doc.rust-lang.org/cargo/reference/environment-variables.html and hardcoded as a const array. - For the sake of simplicity I didn't include the autocompletion of `CARGO_BIN_EXE_<name>` and `OUT_DIR` since it would require information about build.rs and binary name. If somebody knows an easy way of obtaining them I can add those vars as well :)
- Loading branch information
Showing
5 changed files
with
162 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
//! Completes environment variables defined by Cargo (https://doc.rust-lang.org/cargo/reference/environment-variables.html) | ||
use hir::Semantics; | ||
use ide_db::{syntax_helpers::node_ext::macro_call_for_string_token, RootDatabase}; | ||
use syntax::ast::{self, IsString}; | ||
|
||
use crate::{ | ||
completions::Completions, context::CompletionContext, CompletionItem, CompletionItemKind, | ||
}; | ||
|
||
const CARGO_DEFINED_VARS: &[(&str, &str)] = &[ | ||
("CARGO","Path to the cargo binary performing the build"), | ||
("CARGO_MANIFEST_DIR","The directory containing the manifest of your package"), | ||
("CARGO_PKG_VERSION","The full version of your package"), | ||
("CARGO_PKG_VERSION_MAJOR","The major version of your package"), | ||
("CARGO_PKG_VERSION_MINOR","The minor version of your package"), | ||
("CARGO_PKG_VERSION_PATCH","The patch version of your package"), | ||
("CARGO_PKG_VERSION_PRE","The pre-release version of your package"), | ||
("CARGO_PKG_AUTHORS","Colon separated list of authors from the manifest of your package"), | ||
("CARGO_PKG_NAME","The name of your package"), | ||
("CARGO_PKG_DESCRIPTION","The description from the manifest of your package"), | ||
("CARGO_PKG_HOMEPAGE","The home page from the manifest of your package"), | ||
("CARGO_PKG_REPOSITORY","The repository from the manifest of your package"), | ||
("CARGO_PKG_LICENSE","The license from the manifest of your package"), | ||
("CARGO_PKG_LICENSE_FILE","The license file from the manifest of your package"), | ||
("CARGO_PKG_RUST_VERSION","The Rust version from the manifest of your package. Note that this is the minimum Rust version supported by the package, not the current Rust version"), | ||
("CARGO_CRATE_NAME","The name of the crate that is currently being compiled"), | ||
("CARGO_BIN_NAME","The name of the binary that is currently being compiled (if it is a binary). This name does not include any file extension, such as .exe"), | ||
("CARGO_PRIMARY_PACKAGE","This environment variable will be set if the package being built is primary. Primary packages are the ones the user selected on the command-line, either with -p flags or the defaults based on the current directory and the default workspace members. This environment variable will not be set when building dependencies. This is only set when compiling the package (not when running binaries or tests)"), | ||
("CARGO_TARGET_TMPDIR","Only set when building integration test or benchmark code. This is a path to a directory inside the target directory where integration tests or benchmarks are free to put any data needed by the tests/benches. Cargo initially creates this directory but doesn't manage its content in any way, this is the responsibility of the test code") | ||
]; | ||
|
||
pub(crate) fn complete_cargo_env_vars( | ||
acc: &mut Completions, | ||
ctx: &CompletionContext<'_>, | ||
expanded: &ast::String, | ||
) -> Option<()> { | ||
guard_env_macro(expanded, &ctx.sema)?; | ||
let range = expanded.text_range_between_quotes()?; | ||
|
||
CARGO_DEFINED_VARS.iter().for_each(|(var, detail)| { | ||
let mut item = CompletionItem::new(CompletionItemKind::Keyword, range, var); | ||
item.detail(*detail); | ||
item.add_to(acc); | ||
}); | ||
|
||
Some(()) | ||
} | ||
|
||
fn guard_env_macro(string: &ast::String, semantics: &Semantics<'_, RootDatabase>) -> Option<()> { | ||
let call = macro_call_for_string_token(string)?; | ||
let name = call.path()?.segment()?.name_ref()?; | ||
let makro = semantics.resolve_macro_call(&call)?; | ||
let db = semantics.db; | ||
|
||
match name.text().as_str() { | ||
"env" | "option_env" if makro.kind(db) == hir::MacroKind::BuiltIn => Some(()), | ||
_ => None, | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use crate::tests::{check_edit, completion_list}; | ||
|
||
fn check(macro_name: &str) { | ||
check_edit( | ||
"CARGO_BIN_NAME", | ||
&format!( | ||
r#" | ||
#[rustc_builtin_macro] | ||
macro_rules! {} {{ | ||
($var:literal) => {{ 0 }} | ||
}} | ||
fn main() {{ | ||
let foo = {}!("CAR$0"); | ||
}} | ||
"#, | ||
macro_name, macro_name | ||
), | ||
&format!( | ||
r#" | ||
#[rustc_builtin_macro] | ||
macro_rules! {} {{ | ||
($var:literal) => {{ 0 }} | ||
}} | ||
fn main() {{ | ||
let foo = {}!("CARGO_BIN_NAME"); | ||
}} | ||
"#, | ||
macro_name, macro_name | ||
), | ||
); | ||
} | ||
#[test] | ||
fn completes_env_variable_in_env() { | ||
check("env") | ||
} | ||
|
||
#[test] | ||
fn completes_env_variable_in_option_env() { | ||
check("option_env"); | ||
} | ||
|
||
#[test] | ||
fn doesnt_complete_in_random_strings() { | ||
let fixture = r#" | ||
fn main() { | ||
let foo = "CA$0"; | ||
} | ||
"#; | ||
|
||
let completions = completion_list(fixture); | ||
assert!(completions.is_empty(), "Completions weren't empty: {}", completions); | ||
} | ||
|
||
#[test] | ||
fn doesnt_complete_in_random_macro() { | ||
let fixture = r#" | ||
macro_rules! bar { | ||
($($arg:tt)*) => { 0 } | ||
} | ||
fn main() { | ||
let foo = bar!("CA$0"); | ||
} | ||
"#; | ||
|
||
let completions = completion_list(fixture); | ||
assert!(completions.is_empty(), "Completions weren't empty: {}", completions); | ||
} | ||
|
||
#[test] | ||
fn doesnt_complete_for_shadowed_macro() { | ||
let fixture = r#" | ||
macro_rules! env { | ||
($var:literal) => { 0 } | ||
} | ||
fn main() { | ||
let foo = env!("CA$0"); | ||
} | ||
"#; | ||
|
||
let completions = completion_list(fixture); | ||
assert!(completions.is_empty(), "Completions weren't empty: {}", completions) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters