]> git.lizzy.rs Git - rust.git/blobdiff - crates/ide-completion/src/completions/env_vars.rs
Formatting
[rust.git] / crates / ide-completion / src / completions / env_vars.rs
index 3c573a5f984d31efbd00f8399ba53310b24479c0..09e95e53de63ce42f31791d8c092a2772b4e9501 100644 (file)
@@ -1,37 +1,40 @@
 //! Completes environment variables defined by Cargo (https://doc.rust-lang.org/cargo/reference/environment-variables.html)
-use ide_db::syntax_helpers::node_ext::get_outer_macro_name;
+use hir::Semantics;
+use ide_db::{syntax_helpers::node_ext::macro_call_for_string_token, RootDatabase};
 use syntax::ast::{self, IsString};
 
-use crate::{CompletionItem, CompletionItemKind};
+use crate::{
+    completions::Completions, context::CompletionContext, CompletionItem, CompletionItemKind,
+};
 
-use super::Completions;
 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")
+    ("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)?;
+    guard_env_macro(expanded, &ctx.sema)?;
     let range = expanded.text_range_between_quotes()?;
 
     CARGO_DEFINED_VARS.iter().for_each(|(var, detail)| {
@@ -43,13 +46,16 @@ pub(crate) fn complete_cargo_env_vars(
     Some(())
 }
 
-fn guard_env_macro(string: &ast::String) -> Option<()> {
-    let name = get_outer_macro_name(string)?;
-    if !matches!(name.text().as_str(), "env" | "option_env") {
-        return None;
-    }
+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;
 
-    Some(())
+    match name.text().as_str() {
+        "env" | "option_env" if makro.kind(db) == hir::MacroKind::BuiltIn => Some(()),
+        _ => None,
+    }
 }
 
 #[cfg(test)]
@@ -57,15 +63,35 @@ mod tests {
     use crate::tests::{check_edit, completion_list};
 
     fn check(macro_name: &str) {
-        check_edit("CARGO_BIN_NAME",&format!(r#"
+        check_edit(
+            "CARGO_BIN_NAME",
+            &format!(
+                r#"
+            #[rustc_builtin_macro]
+            macro_rules! {} {{
+                ($var:literal) => {{ 0 }}
+            }}
+
             fn main() {{
                 let foo = {}!("CAR$0");
             }}
-        "#, macro_name), &format!(r#"
+        "#,
+                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, macro_name
+            ),
+        );
     }
     #[test]
     fn completes_env_variable_in_env() {
@@ -105,4 +131,20 @@ fn main() {
         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)
+    }
 }