Search in sources :

Example 1 with MavenDomConfiguration

use of org.jetbrains.idea.maven.dom.model.MavenDomConfiguration in project intellij-community by JetBrains.

the class MavenPropertyPsiReference method collectVariants.

protected void collectVariants(final List<Object> result, Set<String> variants) {
    int prefixLength = 0;
    if (myText.startsWith("pom.")) {
        prefixLength = "pom.".length();
    } else if (myText.startsWith("project.")) {
        prefixLength = "project.".length();
    }
    MavenProject mavenProject = myMavenProject;
    while (myText.startsWith("parent.", prefixLength)) {
        MavenId parentId = mavenProject.getParentId();
        if (parentId == null)
            return;
        mavenProject = myProjectsManager.findProject(parentId);
        if (mavenProject == null)
            return;
        prefixLength += "parent.".length();
    }
    final String prefix = prefixLength == 0 ? null : myText.substring(0, prefixLength);
    PsiDirectory baseDir = getBaseDir(mavenProject);
    addVariant(result, "basedir", baseDir, prefix, MavenIcons.MavenLogo);
    if (prefix == null) {
        result.add(createLookupElement(baseDir, "project.baseUri", MavenIcons.MavenLogo));
        result.add(createLookupElement(baseDir, "pom.baseUri", MavenIcons.MavenLogo));
        result.add(LookupElementBuilder.create(TIMESTAMP_PROP).withIcon(MavenIcons.MavenLogo));
    }
    processSchema(MavenSchemaProvider.MAVEN_PROJECT_SCHEMA_URL, new SchemaProcessor<Object>() {

        @Override
        public Object process(@NotNull String property, XmlElementDescriptor descriptor) {
            if (property.startsWith("project.")) {
                addVariant(result, property.substring("project.".length()), descriptor, prefix, MavenIcons.MavenLogo);
            }
            return null;
        }
    });
    processSchema(MavenSchemaProvider.MAVEN_SETTINGS_SCHEMA_URL, new SchemaProcessor<Object>() {

        @Override
        public Object process(@NotNull String property, XmlElementDescriptor descriptor) {
            result.add(createLookupElement(descriptor, property, MavenIcons.MavenLogo));
            return null;
        }
    });
    collectPropertiesVariants(result, variants);
    collectSystemEnvProperties(MavenPropertiesVirtualFileSystem.SYSTEM_PROPERTIES_FILE, null, result, variants);
    collectSystemEnvProperties(MavenPropertiesVirtualFileSystem.ENV_PROPERTIES_FILE, "env.", result, variants);
    MavenRunnerSettings runnerSettings = MavenRunner.getInstance(myProject).getSettings();
    for (String prop : runnerSettings.getMavenProperties().keySet()) {
        if (variants.add(prefix)) {
            result.add(LookupElementBuilder.create(prop).withIcon(PlatformIcons.PROPERTY_ICON));
        }
    }
    for (String prop : MavenUtil.getPropertiesFromMavenOpts().keySet()) {
        if (variants.add(prop)) {
            result.add(LookupElementBuilder.create(prop).withIcon(PlatformIcons.PROPERTY_ICON));
        }
    }
    for (Object key : myMavenProject.getProperties().keySet()) {
        if (key instanceof String) {
            String property = (String) key;
            if (variants.add(property)) {
                result.add(LookupElementBuilder.create(property).withIcon(PlatformIcons.PROPERTY_ICON));
            }
        }
    }
    MavenDomConfiguration pluginCfg = DomUtil.findDomElement(myElement, MavenDomConfiguration.class);
    if (pluginCfg != null) {
        MavenPluginDescriptor.processDescriptors(descriptor -> {
            if (descriptor.properties != null) {
                for (MavenPluginDescriptor.ModelProperty property : descriptor.properties) {
                    if (property.insideConfigurationOnly) {
                        result.add(LookupElementBuilder.create(property.name).withIcon(PlatformIcons.PROPERTY_ICON));
                    }
                }
            }
            return true;
        }, pluginCfg);
    }
}
Also used : MavenRunnerSettings(org.jetbrains.idea.maven.execution.MavenRunnerSettings) MavenId(org.jetbrains.idea.maven.model.MavenId) MavenDomConfiguration(org.jetbrains.idea.maven.dom.model.MavenDomConfiguration) MavenProject(org.jetbrains.idea.maven.project.MavenProject) MavenPluginDescriptor(org.jetbrains.idea.maven.plugins.api.MavenPluginDescriptor) XmlElementDescriptor(com.intellij.xml.XmlElementDescriptor)

Example 2 with MavenDomConfiguration

use of org.jetbrains.idea.maven.dom.model.MavenDomConfiguration in project intellij-community by JetBrains.

the class MavenPropertyPsiReference method doResolve.

// See org.apache.maven.project.interpolation.AbstractStringBasedModelInterpolator.createValueSources()
@Nullable
protected PsiElement doResolve() {
    boolean hasPrefix = false;
    String unprefixed = myText;
    if (myText.startsWith("pom.")) {
        unprefixed = myText.substring("pom.".length());
        hasPrefix = true;
    } else if (myText.startsWith("project.")) {
        unprefixed = myText.substring("project.".length());
        hasPrefix = true;
    }
    MavenProject mavenProject = myMavenProject;
    while (unprefixed.startsWith("parent.")) {
        if (unprefixed.equals("parent.groupId") || unprefixed.equals("parent.artifactId") || unprefixed.equals("parent.version") || unprefixed.equals("parent.relativePath")) {
            break;
        }
        MavenId parentId = mavenProject.getParentId();
        if (parentId == null)
            return null;
        mavenProject = myProjectsManager.findProject(parentId);
        if (mavenProject == null)
            return null;
        unprefixed = unprefixed.substring("parent.".length());
    }
    if (unprefixed.equals("basedir") || (hasPrefix && mavenProject == myMavenProject && unprefixed.equals("baseUri"))) {
        return getBaseDir(mavenProject);
    }
    if (myText.equals(TIMESTAMP_PROP)) {
        return myElement;
    }
    if (hasPrefix) {
        MavenDomProjectModel domProjectModel = MavenDomUtil.getMavenDomProjectModel(myProject, mavenProject.getFile());
        if (domProjectModel != null) {
            PsiElement res = resolveModelProperty(domProjectModel, unprefixed, new HashSet<>());
            if (res != null) {
                return res;
            }
        }
    }
    // todo resolve properties from config.
    MavenRunnerSettings runnerSettings = MavenRunner.getInstance(myProject).getSettings();
    if (runnerSettings.getMavenProperties().containsKey(myText) || runnerSettings.getVmOptions().contains("-D" + myText + '=')) {
        return myElement;
    }
    if (MavenUtil.getPropertiesFromMavenOpts().containsKey(myText)) {
        return myElement;
    }
    MavenDomProfile profile = DomUtil.findDomElement(myElement, MavenDomProfile.class);
    if (profile != null) {
        PsiElement result = MavenDomProjectProcessorUtils.findProperty(profile.getProperties(), myText);
        if (result != null)
            return result;
    }
    MavenDomConfiguration pluginCfg = DomUtil.findDomElement(myElement, MavenDomConfiguration.class);
    if (pluginCfg != null) {
        boolean notFound = MavenPluginDescriptor.processDescriptors(descriptor -> {
            if (descriptor.properties != null) {
                for (MavenPluginDescriptor.ModelProperty property : descriptor.properties) {
                    if (property.insideConfigurationOnly && property.name.equals(myText)) {
                        return false;
                    }
                }
            }
            return true;
        }, pluginCfg);
        if (!notFound) {
            return myElement;
        }
    }
    if (myProjectDom != null) {
        PsiElement result = MavenDomProjectProcessorUtils.searchProperty(myText, myProjectDom, myProject);
        if (result != null)
            return result;
    }
    if ("java.home".equals(myText)) {
        PsiElement element = resolveToCustomSystemProperty("java.home", MavenUtil.getModuleJreHome(myProjectsManager, mavenProject));
        if (element != null) {
            return element;
        }
    }
    if ("java.version".equals(myText)) {
        PsiElement element = resolveToCustomSystemProperty("java.version", MavenUtil.getModuleJavaVersion(myProjectsManager, mavenProject));
        if (element != null) {
            return element;
        }
    }
    MavenPropertiesVirtualFileSystem mavenPropertiesVirtualFileSystem = MavenPropertiesVirtualFileSystem.getInstance();
    IProperty property = mavenPropertiesVirtualFileSystem.findSystemProperty(myProject, myText);
    if (property != null)
        return property.getPsiElement();
    if (myText.startsWith("env.")) {
        property = mavenPropertiesVirtualFileSystem.findEnvProperty(myProject, myText.substring("env.".length()));
        if (property != null)
            return property.getPsiElement();
    }
    String textWithEnv = "env." + myText;
    property = mavenPropertiesVirtualFileSystem.findSystemProperty(myProject, textWithEnv);
    if (property != null)
        return property.getPsiElement();
    property = mavenPropertiesVirtualFileSystem.findEnvProperty(myProject, textWithEnv);
    if (property != null)
        return property.getPsiElement();
    if (!hasPrefix) {
        MavenDomProjectModel domProjectModel = MavenDomUtil.getMavenDomProjectModel(myProject, mavenProject.getFile());
        if (domProjectModel != null) {
            PsiElement res = resolveModelProperty(domProjectModel, unprefixed, new HashSet<>());
            if (res != null) {
                return res;
            }
        }
    }
    if (mavenProject.getProperties().containsKey(myText)) {
        return myElement;
    }
    if (myText.startsWith("settings.")) {
        return resolveSettingsModelProperty();
    }
    return null;
}
Also used : MavenRunnerSettings(org.jetbrains.idea.maven.execution.MavenRunnerSettings) MavenPropertiesVirtualFileSystem(org.jetbrains.idea.maven.vfs.MavenPropertiesVirtualFileSystem) MavenDomProfile(org.jetbrains.idea.maven.dom.model.MavenDomProfile) MavenId(org.jetbrains.idea.maven.model.MavenId) MavenDomProjectModel(org.jetbrains.idea.maven.dom.model.MavenDomProjectModel) MavenDomConfiguration(org.jetbrains.idea.maven.dom.model.MavenDomConfiguration) MavenProject(org.jetbrains.idea.maven.project.MavenProject) IProperty(com.intellij.lang.properties.IProperty) MavenPluginDescriptor(org.jetbrains.idea.maven.plugins.api.MavenPluginDescriptor) Nullable(org.jetbrains.annotations.Nullable)

Aggregations

MavenDomConfiguration (org.jetbrains.idea.maven.dom.model.MavenDomConfiguration)2 MavenRunnerSettings (org.jetbrains.idea.maven.execution.MavenRunnerSettings)2 MavenId (org.jetbrains.idea.maven.model.MavenId)2 MavenPluginDescriptor (org.jetbrains.idea.maven.plugins.api.MavenPluginDescriptor)2 MavenProject (org.jetbrains.idea.maven.project.MavenProject)2 IProperty (com.intellij.lang.properties.IProperty)1 XmlElementDescriptor (com.intellij.xml.XmlElementDescriptor)1 Nullable (org.jetbrains.annotations.Nullable)1 MavenDomProfile (org.jetbrains.idea.maven.dom.model.MavenDomProfile)1 MavenDomProjectModel (org.jetbrains.idea.maven.dom.model.MavenDomProjectModel)1 MavenPropertiesVirtualFileSystem (org.jetbrains.idea.maven.vfs.MavenPropertiesVirtualFileSystem)1