mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-04-02 13:37:45 -05:00
This helps a bit with debugging code that uses them as you don't have to open the object to see which mod/remap configuration we're investigating.
151 lines
4.9 KiB
Java
151 lines
4.9 KiB
Java
/*
|
|
* This file is part of fabric-loom, licensed under the MIT License (MIT).
|
|
*
|
|
* Copyright (c) 2022-2023 FabricMC
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
package net.fabricmc.loom.api;
|
|
|
|
import java.util.Set;
|
|
|
|
import javax.inject.Inject;
|
|
|
|
import org.gradle.api.Named;
|
|
import org.gradle.api.NamedDomainObjectProvider;
|
|
import org.gradle.api.Project;
|
|
import org.gradle.api.artifacts.Configuration;
|
|
import org.gradle.api.plugins.JavaPlugin;
|
|
import org.gradle.api.provider.Property;
|
|
import org.gradle.api.provider.Provider;
|
|
import org.gradle.api.tasks.Internal;
|
|
import org.gradle.api.tasks.SourceSet;
|
|
import org.jetbrains.annotations.ApiStatus;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
/**
|
|
* A {@link Named} object for configuring "proxy" configurations that remap artifacts.
|
|
*/
|
|
public abstract class RemapConfigurationSettings implements Named {
|
|
private final String name;
|
|
|
|
@Inject
|
|
public RemapConfigurationSettings(String name) {
|
|
this.name = name;
|
|
|
|
getSourceSet().finalizeValueOnRead();
|
|
getTargetConfigurationName().finalizeValueOnRead();
|
|
getClientSourceConfigurationName().finalizeValueOnRead();
|
|
getOnCompileClasspath().finalizeValueOnRead();
|
|
getOnRuntimeClasspath().finalizeValueOnRead();
|
|
getPublishingMode().convention(PublishingMode.NONE).finalizeValueOnRead();
|
|
getApplyDependencyTransforms().convention(defaultDependencyTransforms()).finalizeValueOnRead();
|
|
}
|
|
|
|
@Override
|
|
public @NotNull String getName() {
|
|
return name;
|
|
}
|
|
|
|
/**
|
|
* @return The target source set
|
|
*/
|
|
public abstract Property<SourceSet> getSourceSet();
|
|
|
|
/**
|
|
* @return The target configuration name
|
|
*/
|
|
public abstract Property<String> getTargetConfigurationName();
|
|
|
|
/**
|
|
* Optional, only used when split sourcesets are enabled.
|
|
* When not present client only entries should go onto the target configuration.
|
|
*
|
|
* @return The client source configuration name
|
|
*/
|
|
public abstract Property<String> getClientSourceConfigurationName();
|
|
|
|
/**
|
|
* @return True if this configuration's artifacts should be exposed for compile operations.
|
|
*/
|
|
public abstract Property<Boolean> getOnCompileClasspath();
|
|
|
|
/**
|
|
* @return True if this configuration's artifacts should be exposed to runtime operations.
|
|
*/
|
|
public abstract Property<Boolean> getOnRuntimeClasspath();
|
|
|
|
/**
|
|
* @return the {@link PublishingMode} for the configuration.
|
|
*/
|
|
public abstract Property<PublishingMode> getPublishingMode();
|
|
|
|
/**
|
|
* @return true when dependencies should be evaluated for minecraft jar transforms such as transitive Access Wideners or Injected interfaces.
|
|
*/
|
|
public abstract Property<Boolean> getApplyDependencyTransforms();
|
|
|
|
public enum PublishingMode {
|
|
NONE,
|
|
COMPILE_ONLY(JavaPlugin.API_ELEMENTS_CONFIGURATION_NAME),
|
|
RUNTIME_ONLY(JavaPlugin.RUNTIME_ELEMENTS_CONFIGURATION_NAME),
|
|
COMPILE_AND_RUNTIME(JavaPlugin.API_ELEMENTS_CONFIGURATION_NAME, JavaPlugin.RUNTIME_ELEMENTS_CONFIGURATION_NAME);
|
|
|
|
private final Set<String> outgoingConfigurations;
|
|
|
|
PublishingMode(String... outgoingConfigurations) {
|
|
this.outgoingConfigurations = Set.of(outgoingConfigurations);
|
|
}
|
|
|
|
public Set<String> outgoingConfigurations() {
|
|
return outgoingConfigurations;
|
|
}
|
|
}
|
|
|
|
@Inject
|
|
protected abstract Project getProject();
|
|
|
|
@ApiStatus.Internal
|
|
@Internal
|
|
public final String getRemappedConfigurationName() {
|
|
return getName() + "Mapped";
|
|
}
|
|
|
|
@ApiStatus.Internal
|
|
@Internal
|
|
public final NamedDomainObjectProvider<Configuration> getSourceConfiguration() {
|
|
return getConfigurationByName(getName());
|
|
}
|
|
|
|
@Internal
|
|
private NamedDomainObjectProvider<Configuration> getConfigurationByName(String name) {
|
|
return getProject().getConfigurations().named(name);
|
|
}
|
|
|
|
private Provider<Boolean> defaultDependencyTransforms() {
|
|
return getSourceSet().map(sourceSet -> sourceSet.getName().equals(SourceSet.MAIN_SOURCE_SET_NAME) || sourceSet.getName().equals("client"));
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "RemapConfigurationSettings '" + getName() + "'";
|
|
}
|
|
}
|