blob: 16000b44f540eb02f49f7302bcf63a5233b03ae2 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.packaging.impl.artifacts;
import com.intellij.facet.impl.DefaultFacetsProvider;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.roots.libraries.Library;
import com.intellij.openapi.roots.libraries.LibraryTable;
import com.intellij.openapi.roots.libraries.LibraryTablesRegistrar;
import com.intellij.openapi.roots.ui.configuration.DefaultModulesProvider;
import com.intellij.openapi.roots.ui.configuration.FacetsProvider;
import com.intellij.openapi.roots.ui.configuration.ModulesProvider;
import com.intellij.packaging.artifacts.ArtifactManager;
import com.intellij.packaging.artifacts.ArtifactModel;
import com.intellij.packaging.elements.ManifestFileProvider;
import com.intellij.packaging.elements.PackagingElementResolvingContext;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* @author nik
*/
public class DefaultPackagingElementResolvingContext implements PackagingElementResolvingContext {
private final Project myProject;
private final DefaultModulesProvider myModulesProvider;
public DefaultPackagingElementResolvingContext(Project project) {
myProject = project;
myModulesProvider = new DefaultModulesProvider(myProject);
}
@NotNull
public Project getProject() {
return myProject;
}
@NotNull
public ArtifactModel getArtifactModel() {
return ArtifactManager.getInstance(myProject);
}
@NotNull
public ModulesProvider getModulesProvider() {
return myModulesProvider;
}
@NotNull
public FacetsProvider getFacetsProvider() {
return DefaultFacetsProvider.INSTANCE;
}
public Library findLibrary(@NotNull String level, @NotNull String libraryName) {
return findLibrary(myProject, level, libraryName);
}
@NotNull
@Override
public ManifestFileProvider getManifestFileProvider() {
return new DefaultManifestFileProvider(this);
}
@Nullable
public static Library findLibrary(Project project, String level, String libraryName) {
LibraryTable table = LibraryTablesRegistrar.getInstance().getLibraryTableByLevel(level, project);
return table != null ? table.getLibraryByName(libraryName) : null;
}
}