/* * Copyright 2016 the original author or authors. * * 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 org.gradle.internal.component.external.model; import com.google.common.collect.ImmutableList; import org.gradle.api.Nullable; import org.gradle.api.artifacts.ModuleVersionIdentifier; import org.gradle.api.artifacts.component.ModuleComponentIdentifier; import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.GradlePomModuleDescriptorBuilder; import org.gradle.internal.component.external.descriptor.ModuleDescriptorState; import org.gradle.internal.component.external.descriptor.MutableModuleDescriptorState; import org.gradle.internal.component.model.DependencyMetadata; import org.gradle.internal.component.model.IvyArtifactName; import java.util.Collection; import java.util.Set; import static org.gradle.internal.component.external.model.DefaultMavenModuleResolveMetadata.JAR_PACKAGINGS; import static org.gradle.internal.component.external.model.DefaultMavenModuleResolveMetadata.POM_PACKAGING; public class DefaultMutableMavenModuleResolveMetadata extends AbstractMutableModuleComponentResolveMetadata implements MutableMavenModuleResolveMetadata { private String packaging; private boolean relocated; private String snapshotTimestamp; /** * Creates default metadata given a set of artifacts. */ public DefaultMutableMavenModuleResolveMetadata(ModuleVersionIdentifier id, ModuleComponentIdentifier componentIdentifier, Set<IvyArtifactName> artifacts) { this(id, componentIdentifier, MutableModuleDescriptorState.createModuleDescriptor(componentIdentifier, artifacts), "jar", false, ImmutableList.<DependencyMetadata>of()); } public DefaultMutableMavenModuleResolveMetadata(ModuleVersionIdentifier id, ModuleDescriptorState moduleDescriptor, String packaging, boolean relocated, Collection<DependencyMetadata> dependencies) { this(id, moduleDescriptor.getComponentIdentifier(), moduleDescriptor, packaging, relocated, dependencies); } public DefaultMutableMavenModuleResolveMetadata(ModuleVersionIdentifier id, ModuleComponentIdentifier componentIdentifier, ModuleDescriptorState descriptor, String packaging, boolean relocated, Collection<? extends DependencyMetadata> dependencies) { super(id, componentIdentifier, descriptor, GradlePomModuleDescriptorBuilder.MAVEN2_CONFIGURATIONS, ImmutableList.copyOf(dependencies)); this.packaging = packaging; this.relocated = relocated; } DefaultMutableMavenModuleResolveMetadata(MavenModuleResolveMetadata metadata) { super(metadata); this.packaging = metadata.getPackaging(); this.relocated = metadata.isRelocated(); this.snapshotTimestamp = metadata.getSnapshotTimestamp(); } @Override public MavenModuleResolveMetadata asImmutable() { return new DefaultMavenModuleResolveMetadata(this); } @Nullable @Override public String getSnapshotTimestamp() { return snapshotTimestamp; } @Override public void setSnapshotTimestamp(@Nullable String snapshotTimestamp) { this.snapshotTimestamp = snapshotTimestamp; } @Override public boolean isRelocated() { return relocated; } @Override public String getPackaging() { return packaging; } public boolean isPomPackaging() { return POM_PACKAGING.equals(packaging); } public boolean isKnownJarPackaging() { return JAR_PACKAGINGS.contains(packaging); } }