use of org.gradle.api.provider.ProviderFactory in project gradle by gradle.
the class CppLibraryPlugin method apply.
@Override
public void apply(final ProjectInternal project) {
project.getPluginManager().apply(CppBasePlugin.class);
final TaskContainer tasks = project.getTasks();
final ObjectFactory objectFactory = project.getObjects();
final ProviderFactory providers = project.getProviders();
// Add the library and extension
final DefaultCppLibrary library = componentFactory.newInstance(CppLibrary.class, DefaultCppLibrary.class, "main");
project.getExtensions().add(CppLibrary.class, "library", library);
project.getComponents().add(library);
// Configure the component
library.getBaseName().set(project.getName());
project.afterEvaluate(new Action<Project>() {
@Override
public void execute(final Project project) {
library.getOperatingSystems().lockNow();
Set<OperatingSystemFamily> operatingSystemFamilies = library.getOperatingSystems().get();
if (operatingSystemFamilies.isEmpty()) {
throw new IllegalArgumentException("An operating system needs to be specified for the library.");
}
library.getLinkage().lockNow();
Set<Linkage> linkages = library.getLinkage().get();
if (linkages.isEmpty()) {
throw new IllegalArgumentException("A linkage needs to be specified for the library.");
}
Usage runtimeUsage = objectFactory.named(Usage.class, Usage.NATIVE_RUNTIME);
Usage linkUsage = objectFactory.named(Usage.class, Usage.NATIVE_LINK);
for (BuildType buildType : BuildType.DEFAULT_BUILD_TYPES) {
for (OperatingSystemFamily operatingSystem : operatingSystemFamilies) {
for (Linkage linkage : linkages) {
String operatingSystemSuffix = createDimensionSuffix(operatingSystem, operatingSystemFamilies);
String linkageSuffix = createDimensionSuffix(linkage, linkages);
String variantName = buildType.getName() + linkageSuffix + operatingSystemSuffix;
Provider<String> group = project.provider(new Callable<String>() {
@Override
public String call() throws Exception {
return project.getGroup().toString();
}
});
Provider<String> version = project.provider(new Callable<String>() {
@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(LINKAGE_ATTRIBUTE, linkage);
runtimeAttributes.attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, operatingSystem);
AttributeContainer linkAttributes = attributesFactory.mutable();
linkAttributes.attribute(Usage.USAGE_ATTRIBUTE, linkUsage);
linkAttributes.attribute(DEBUGGABLE_ATTRIBUTE, buildType.isDebuggable());
linkAttributes.attribute(OPTIMIZED_ATTRIBUTE, buildType.isOptimized());
linkAttributes.attribute(LINKAGE_ATTRIBUTE, linkage);
linkAttributes.attribute(OperatingSystemFamily.OPERATING_SYSTEM_ATTRIBUTE, operatingSystem);
NativeVariantIdentity variantIdentity = new NativeVariantIdentity(variantName, library.getBaseName(), group, version, buildType.isDebuggable(), buildType.isOptimized(), operatingSystem, new DefaultUsageContext(variantName + "Link", linkUsage, linkAttributes), new DefaultUsageContext(variantName + "Runtime", runtimeUsage, runtimeAttributes));
if (DefaultNativePlatform.getCurrentOperatingSystem().toFamilyName().equals(operatingSystem.getName())) {
ToolChainSelector.Result<CppPlatform> result = toolChainSelector.select(CppPlatform.class);
if (linkage == Linkage.SHARED) {
CppSharedLibrary sharedLibrary = library.addSharedLibrary(variantIdentity, result.getTargetPlatform(), result.getToolChain(), result.getPlatformToolProvider());
library.getMainPublication().addVariant(sharedLibrary);
// Use the debug shared library as the development binary
if (buildType == BuildType.DEBUG) {
library.getDevelopmentBinary().set(sharedLibrary);
}
} else {
CppStaticLibrary staticLibrary = library.addStaticLibrary(variantIdentity, result.getTargetPlatform(), result.getToolChain(), result.getPlatformToolProvider());
library.getMainPublication().addVariant(staticLibrary);
if (!linkages.contains(Linkage.SHARED) && buildType == BuildType.DEBUG) {
// Use the debug static library as the development binary
library.getDevelopmentBinary().set(staticLibrary);
}
}
} else {
// Known, but not buildable
library.getMainPublication().addVariant(variantIdentity);
}
}
}
}
final MainLibraryVariant mainVariant = library.getMainPublication();
final Configuration apiElements = library.getApiElements();
// TODO - deal with more than one header dir, e.g. generated public headers
Provider<File> publicHeaders = providers.provider(new Callable<File>() {
@Override
public File call() throws Exception {
Set<File> files = library.getPublicHeaderDirs().getFiles();
if (files.size() != 1) {
throw new UnsupportedOperationException(String.format("The C++ library plugin currently requires exactly one public header directory, however there are %d directories configured: %s", files.size(), files));
}
return files.iterator().next();
}
});
apiElements.getOutgoing().artifact(publicHeaders);
project.getPluginManager().withPlugin("maven-publish", new Action<AppliedPlugin>() {
@Override
public void execute(AppliedPlugin appliedPlugin) {
final Zip headersZip = tasks.create("cppHeaders", Zip.class);
headersZip.from(library.getPublicHeaderFiles());
// TODO - should track changes to build directory
headersZip.setDestinationDir(new File(project.getBuildDir(), "headers"));
headersZip.setClassifier("cpp-api-headers");
headersZip.setArchiveName("cpp-api-headers.zip");
mainVariant.addArtifact(new ArchivePublishArtifact(headersZip));
}
});
library.getBinaries().realizeNow();
}
});
}
use of org.gradle.api.provider.ProviderFactory in project gradle by gradle.
the class NativeBasePlugin method apply.
@Override
public void apply(final ProjectInternal project) {
project.getPluginManager().apply(LifecycleBasePlugin.class);
final TaskContainer tasks = project.getTasks();
final ProviderFactory providers = project.getProviders();
final DirectoryProperty buildDirectory = project.getLayout().getBuildDirectory();
final SoftwareComponentContainer components = project.getComponents();
addLifecycleTasks(tasks, components);
// Add tasks to build various kinds of components
addTasksForComponentWithExecutable(tasks, providers, buildDirectory, components);
addTasksForComponentWithSharedLibrary(tasks, providers, buildDirectory, components);
addTasksForComponentWithStaticLibrary(tasks, providers, buildDirectory, components);
// Add outgoing configurations and publications
final ConfigurationContainer configurations = project.getConfigurations();
project.getDependencies().getAttributesSchema().attribute(LINKAGE_ATTRIBUTE).getDisambiguationRules().add(LinkageSelectionRule.class);
addOutgoingConfigurationForLinkUsage(components, configurations);
addOutgoingConfigurationForRuntimeUsage(components, configurations);
addPublicationsFromVariants(project, components);
}
use of org.gradle.api.provider.ProviderFactory in project gradle by gradle.
the class DefaultScript method init.
@Override
public void init(final Object target, ServiceRegistry services) {
super.init(target, services);
this.__scriptServices = services;
loggingManager = services.get(LoggingManager.class);
Instantiator instantiator = services.get(Instantiator.class);
FileLookup fileLookup = services.get(FileLookup.class);
ExecFactory execFactory = services.get(ExecFactory.class);
DirectoryFileTreeFactory directoryFileTreeFactory = services.get(DirectoryFileTreeFactory.class);
StreamHasher streamHasher = services.get(StreamHasher.class);
FileHasher fileHasher = services.get(FileHasher.class);
if (target instanceof FileOperations) {
fileOperations = (FileOperations) target;
} else {
File sourceFile = getScriptSource().getResource().getLocation().getFile();
if (sourceFile != null) {
fileOperations = new DefaultFileOperations(fileLookup.getFileResolver(sourceFile.getParentFile()), null, null, instantiator, fileLookup, directoryFileTreeFactory, streamHasher, fileHasher, execFactory);
} else {
fileOperations = new DefaultFileOperations(fileLookup.getFileResolver(), null, null, instantiator, fileLookup, directoryFileTreeFactory, streamHasher, fileHasher, execFactory);
}
}
processOperations = (ProcessOperations) fileOperations;
providerFactory = services.get(ProviderFactory.class);
}
use of org.gradle.api.provider.ProviderFactory in project gradle by gradle.
the class SwiftBasePlugin method apply.
@Override
public void apply(final ProjectInternal project) {
project.getPluginManager().apply(NativeBasePlugin.class);
project.getPluginManager().apply(SwiftCompilerPlugin.class);
final TaskContainerInternal tasks = project.getTasks();
final DirectoryProperty buildDirectory = project.getLayout().getBuildDirectory();
final ProviderFactory providers = project.getProviders();
project.getDependencies().getAttributesSchema().attribute(Usage.USAGE_ATTRIBUTE).getCompatibilityRules().add(SwiftCppUsageCompatibilityRule.class);
project.getComponents().withType(DefaultSwiftBinary.class, new Action<DefaultSwiftBinary>() {
@Override
public void execute(final DefaultSwiftBinary binary) {
final Names names = binary.getNames();
SwiftCompile compile = tasks.create(names.getCompileTaskName("swift"), SwiftCompile.class);
compile.getModules().from(binary.getCompileModules());
compile.getSource().from(binary.getSwiftSource());
compile.getDebuggable().set(binary.isDebuggable());
compile.getOptimized().set(binary.isOptimized());
if (binary.isTestable()) {
compile.getCompilerArgs().add("-enable-testing");
}
if (binary.getTargetPlatform().getOperatingSystem().isMacOsX()) {
compile.getCompilerArgs().add("-sdk");
compile.getCompilerArgs().add(locator.find().getAbsolutePath());
}
compile.getModuleName().set(binary.getModule());
compile.getObjectFileDir().set(buildDirectory.dir("obj/" + names.getDirName()));
compile.getModuleFile().set(buildDirectory.file(providers.provider(new Callable<String>() {
@Override
public String call() {
return "modules/" + names.getDirName() + binary.getModule().get() + ".swiftmodule";
}
})));
compile.getSourceCompatibility().set(binary.getSourceCompatibility());
binary.getModuleFile().set(compile.getModuleFile());
compile.getTargetPlatform().set(binary.getTargetPlatform());
// TODO - make this lazy
compile.getToolChain().set(binary.getToolChain());
binary.getCompileTask().set(compile);
binary.getObjectsDir().set(compile.getObjectFileDir());
}
});
project.getComponents().withType(SwiftSharedLibrary.class, new Action<SwiftSharedLibrary>() {
@Override
public void execute(SwiftSharedLibrary library) {
// Specific compiler arguments
library.getCompileTask().get().getCompilerArgs().add("-parse-as-library");
}
});
project.getComponents().withType(SwiftStaticLibrary.class, new Action<SwiftStaticLibrary>() {
@Override
public void execute(SwiftStaticLibrary library) {
// Specific compiler arguments
library.getCompileTask().get().getCompilerArgs().add("-parse-as-library");
}
});
project.getComponents().withType(DefaultSwiftComponent.class, new Action<DefaultSwiftComponent>() {
@Override
public void execute(final DefaultSwiftComponent component) {
project.afterEvaluate(new Action<Project>() {
@Override
public void execute(Project project) {
component.getSourceCompatibility().lockNow();
}
});
component.getBinaries().whenElementKnown(DefaultSwiftBinary.class, new Action<DefaultSwiftBinary>() {
@Override
public void execute(final DefaultSwiftBinary binary) {
Provider<SwiftVersion> swiftLanguageVersionProvider = project.provider(new Callable<SwiftVersion>() {
@Override
public SwiftVersion call() throws Exception {
SwiftVersion swiftSourceCompatibility = component.getSourceCompatibility().getOrNull();
if (swiftSourceCompatibility == null) {
return toSwiftVersion(binary.getPlatformToolProvider().getCompilerMetadata(ToolType.SWIFT_COMPILER).getVersion());
}
return swiftSourceCompatibility;
}
});
binary.getSourceCompatibility().set(swiftLanguageVersionProvider);
}
});
}
});
project.getComponents().withType(ProductionSwiftComponent.class, new Action<ProductionSwiftComponent>() {
@Override
public void execute(final ProductionSwiftComponent component) {
project.afterEvaluate(new Action<Project>() {
@Override
public void execute(Project project) {
DefaultSwiftComponent componentInternal = (DefaultSwiftComponent) component;
publicationRegistry.registerPublication(project.getPath(), new DefaultProjectPublication(componentInternal.getDisplayName(), new SwiftPmTarget(component.getModule().get()), false));
}
});
}
});
}
Aggregations