blob: c025997662725fcd859a785687ca1635ece19202 [file] [log] [blame]
/*
* Copyright 2000-2011 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.framework.library.impl;
import com.intellij.facet.frameworks.beans.Artifact;
import com.intellij.facet.frameworks.beans.RequiredFrameworkVersion;
import com.intellij.framework.FrameworkAvailabilityCondition;
import com.intellij.framework.FrameworkVersion;
import com.intellij.framework.library.*;
import com.intellij.ide.util.frameworkSupport.CustomLibraryDescriptionImpl;
import com.intellij.ide.util.frameworkSupport.FrameworkSupportModel;
import com.intellij.ide.util.newProjectWizard.impl.FrameworkSupportModelBase;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.roots.libraries.LibraryType;
import com.intellij.openapi.roots.libraries.ui.LibraryEditorComponent;
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor;
import com.intellij.openapi.roots.ui.configuration.libraries.CustomLibraryDescription;
import org.jetbrains.annotations.NotNull;
import java.net.URL;
/**
* @author nik
*/
public class DownloadableLibraryServiceImpl extends DownloadableLibraryService {
private static final Logger LOG = Logger.getInstance("#com.intellij.framework.library.impl.DownloadableLibraryServiceImpl");
@NotNull
@Override
public DownloadableLibraryDescription createLibraryDescription(@NotNull String groupId, @NotNull final URL... localUrls) {
return new LibraryVersionsFetcher(groupId, localUrls) {
//todo[nik] pull up this method after moving corresponding API to lang-api
@NotNull
protected FrameworkAvailabilityCondition createAvailabilityCondition(Artifact version) {
RequiredFrameworkVersion groupVersion = version.getRequiredFrameworkVersion();
if (groupVersion != null) {
return new FrameworkLibraryAvailabilityCondition(groupVersion.myGroupId, groupVersion.myVersion);
}
return FrameworkAvailabilityCondition.ALWAYS_TRUE;
}
};
}
@NotNull
@Override
public CustomLibraryDescription createDescriptionForType(Class<? extends DownloadableLibraryType> typeClass) {
final DownloadableLibraryType libraryType = LibraryType.EP_NAME.findExtension(typeClass);
LOG.assertTrue(libraryType != null, typeClass);
return new CustomLibraryDescriptionImpl(libraryType);
}
@NotNull
@Override
public LibraryPropertiesEditor createDownloadableLibraryEditor(@NotNull DownloadableLibraryDescription description,
@NotNull LibraryEditorComponent<LibraryVersionProperties> editorComponent,
@NotNull DownloadableLibraryType libraryType) {
return new DownloadableLibraryPropertiesEditor(description, editorComponent, libraryType);
}
private static class FrameworkLibraryAvailabilityCondition extends FrameworkAvailabilityCondition {
private final String myGroupId;
private final String myVersionId;
public FrameworkLibraryAvailabilityCondition(String groupId, String versionId) {
myGroupId = groupId;
myVersionId = versionId;
}
@Override
public boolean isAvailableFor(@NotNull FrameworkSupportModel model) {
FrameworkVersion selectedVersion = ((FrameworkSupportModelBase)model).getSelectedVersion(myGroupId);
return selectedVersion != null && myVersionId.equals(selectedVersion.getId());
}
}
}