All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.language.swift.plugins.SwiftApplicationPlugin Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2017 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.language.swift.plugins;

import org.apache.commons.lang.StringUtils;
import org.gradle.api.Action;
import org.gradle.api.Incubating;
import org.gradle.api.Named;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
import org.gradle.api.artifacts.ConfigurationContainer;
import org.gradle.api.attributes.AttributeContainer;
import org.gradle.api.attributes.Usage;
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
import org.gradle.api.internal.file.FileOperations;
import org.gradle.api.internal.project.ProjectInternal;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.Provider;
import org.gradle.language.cpp.internal.DefaultUsageContext;
import org.gradle.language.cpp.internal.NativeVariantIdentity;
import org.gradle.language.internal.NativeComponentFactory;
import org.gradle.language.nativeplatform.internal.BuildType;
import org.gradle.language.nativeplatform.internal.toolchains.ToolChainSelector;
import org.gradle.language.swift.SwiftApplication;
import org.gradle.language.swift.SwiftExecutable;
import org.gradle.language.swift.SwiftPlatform;
import org.gradle.language.swift.internal.DefaultSwiftApplication;
import org.gradle.nativeplatform.OperatingSystemFamily;
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform;
import org.gradle.util.GUtil;

import javax.inject.Inject;
import java.util.Collection;
import java.util.Set;
import java.util.concurrent.Callable;

import static org.gradle.language.cpp.CppBinary.DEBUGGABLE_ATTRIBUTE;
import static org.gradle.language.cpp.CppBinary.OPTIMIZED_ATTRIBUTE;

/**
 * 

A plugin that produces an executable from Swift source.

* *

Adds compile, link and install tasks to build the executable. Defaults to looking for source files in `src/main/swift`.

* *

Adds a {@link SwiftApplication} extension to the project to allow configuration of the executable.

* * @since 4.5 */ @Incubating public class SwiftApplicationPlugin implements Plugin { private final NativeComponentFactory componentFactory; private final ToolChainSelector toolChainSelector; private final ImmutableAttributesFactory attributesFactory; /** * Injects a {@link FileOperations} instance. * * @since 4.2 */ @Inject public SwiftApplicationPlugin(NativeComponentFactory componentFactory, ToolChainSelector toolChainSelector, ImmutableAttributesFactory attributesFactory) { this.componentFactory = componentFactory; this.toolChainSelector = toolChainSelector; this.attributesFactory = attributesFactory; } @Override public void apply(final ProjectInternal project) { project.getPluginManager().apply(SwiftBasePlugin.class); final ConfigurationContainer configurations = project.getConfigurations(); // Add the application and extension final DefaultSwiftApplication application = componentFactory.newInstance(SwiftApplication.class, DefaultSwiftApplication.class, "main"); project.getExtensions().add(SwiftApplication.class, "application", application); project.getComponents().add(application); // Setup component application.getModule().set(GUtil.toCamelCase(project.getName())); project.afterEvaluate(new Action() { @Override public void execute(final Project project) { application.getOperatingSystems().lockNow(); Set operatingSystemFamilies = application.getOperatingSystems().get(); if (operatingSystemFamilies.isEmpty()) { throw new IllegalArgumentException("An operating system needs to be specified for the application."); } final ObjectFactory objectFactory = project.getObjects(); Usage runtimeUsage = objectFactory.named(Usage.class, Usage.NATIVE_RUNTIME); for (BuildType buildType : BuildType.DEFAULT_BUILD_TYPES) { for (OperatingSystemFamily operatingSystem : operatingSystemFamilies) { String operatingSystemSuffix = createDimensionSuffix(operatingSystem, operatingSystemFamilies); String variantName = buildType.getName() + operatingSystemSuffix; Provider group = project.provider(new Callable() { @Override public String call() throws Exception { return project.getGroup().toString(); } }); Provider version = project.provider(new Callable() { @Override public String call() throws Exception { return project.getVersion().toString(); } }); AttributeContainer runtimeAttributes = attributesFactory.mutable(); runtimeAttributes.attribute(Usage.USAGE_ATTRIBUTE, runtimeUsage); runtimeAttributes.attribute(DEBUGGABLE_ATTRIBUTE, buildType.isDebuggable()); runtimeAttributes.attribute(OPTIMIZED_ATTRIBUTE, buildType.isOptimized()); runtimeAttributes.attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, operatingSystem); NativeVariantIdentity variantIdentity = new NativeVariantIdentity(variantName, application.getModule(), group, version, buildType.isDebuggable(), buildType.isOptimized(), operatingSystem, null, new DefaultUsageContext(variantName + "-runtime", runtimeUsage, runtimeAttributes)); if (DefaultNativePlatform.getCurrentOperatingSystem().toFamilyName().equals(operatingSystem.getName())) { ToolChainSelector.Result result = toolChainSelector.select(SwiftPlatform.class); SwiftExecutable executable = application.addExecutable(variantIdentity, buildType == BuildType.DEBUG, result.getTargetPlatform(), result.getToolChain(), result.getPlatformToolProvider()); // Use the debug variant as the development binary if (buildType == BuildType.DEBUG) { application.getDevelopmentBinary().set(executable); } } } } // Configure the binaries application.getBinaries().realizeNow(); } }); } private String createDimensionSuffix(Named dimensionValue, Collection multivalueProperty) { if (isDimensionVisible(multivalueProperty)) { return StringUtils.capitalize(dimensionValue.getName().toLowerCase()); } return ""; } private boolean isDimensionVisible(Collection multivalueProperty) { return multivalueProperty.size() > 1; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy