org.gradle.language.swift.internal.DefaultSwiftLibrary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* 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.internal;
import org.gradle.api.Action;
import org.gradle.api.artifacts.Configuration;
import org.gradle.api.artifacts.ConfigurationContainer;
import org.gradle.api.internal.file.FileOperations;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.Property;
import org.gradle.api.provider.SetProperty;
import org.gradle.internal.Describables;
import org.gradle.internal.DisplayName;
import org.gradle.language.LibraryDependencies;
import org.gradle.language.cpp.internal.NativeVariantIdentity;
import org.gradle.language.internal.DefaultLibraryDependencies;
import org.gradle.language.swift.SwiftBinary;
import org.gradle.language.swift.SwiftLibrary;
import org.gradle.language.swift.SwiftPlatform;
import org.gradle.language.swift.SwiftSharedLibrary;
import org.gradle.language.swift.SwiftStaticLibrary;
import org.gradle.nativeplatform.Linkage;
import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal;
import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
import javax.inject.Inject;
import java.util.Collections;
public class DefaultSwiftLibrary extends DefaultSwiftComponent implements SwiftLibrary {
private final ObjectFactory objectFactory;
private final SetProperty linkage;
private final ConfigurationContainer configurations;
private final Property developmentBinary;
private final DefaultLibraryDependencies dependencies;
@Inject
public DefaultSwiftLibrary(String name, ObjectFactory objectFactory, FileOperations fileOperations, ConfigurationContainer configurations) {
super(name, fileOperations, objectFactory);
this.objectFactory = objectFactory;
this.configurations = configurations;
this.developmentBinary = objectFactory.property(SwiftBinary.class);
linkage = objectFactory.setProperty(Linkage.class);
linkage.set(Collections.singleton(Linkage.SHARED));
dependencies = objectFactory.newInstance(DefaultLibraryDependencies.class, getNames().withSuffix("implementation"), getNames().withSuffix("api"));
}
@Override
public DisplayName getDisplayName() {
return Describables.withTypeAndName("Swift library", getName());
}
@Override
public Configuration getImplementationDependencies() {
return dependencies.getImplementationDependencies();
}
@Override
public LibraryDependencies getDependencies() {
return dependencies;
}
public void dependencies(Action super LibraryDependencies> action) {
action.execute(dependencies);
}
public SwiftStaticLibrary addStaticLibrary(NativeVariantIdentity identity, boolean testable, SwiftPlatform targetPlatform, NativeToolChainInternal toolChain, PlatformToolProvider platformToolProvider) {
SwiftStaticLibrary result = objectFactory.newInstance(DefaultSwiftStaticLibrary.class, getNames().append(identity.getName()), getModule(), testable, getSwiftSource(), getImplementationDependencies(), targetPlatform, toolChain, platformToolProvider, identity);
getBinaries().add(result);
return result;
}
public SwiftSharedLibrary addSharedLibrary(NativeVariantIdentity identity, boolean testable, SwiftPlatform targetPlatform, NativeToolChainInternal toolChain, PlatformToolProvider platformToolProvider) {
SwiftSharedLibrary result = objectFactory.newInstance(DefaultSwiftSharedLibrary.class, getNames().append(identity.getName()), getModule(), testable, getSwiftSource(), configurations, getImplementationDependencies(), targetPlatform, toolChain, platformToolProvider, identity);
getBinaries().add(result);
return result;
}
@Override
public Configuration getApiDependencies() {
return dependencies.getApiDependencies();
}
@Override
public Property getDevelopmentBinary() {
return developmentBinary;
}
@Override
public SetProperty getLinkage() {
return linkage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy