org.gradle.language.cpp.internal.NativeVariantIdentity.java Source code

Java tutorial

Introduction

Here is the source code for org.gradle.language.cpp.internal.NativeVariantIdentity.java

Source

/*
 * Copyright 2018 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.cpp.internal;

import com.google.common.collect.Sets;
import org.gradle.api.artifacts.ModuleVersionIdentifier;
import org.gradle.api.component.ComponentWithCoordinates;
import org.gradle.api.internal.artifacts.DefaultModuleVersionIdentifier;
import org.gradle.api.internal.component.SoftwareComponentInternal;
import org.gradle.api.internal.component.UsageContext;
import org.gradle.api.provider.Provider;
import org.gradle.nativeplatform.OperatingSystemFamily;
import org.gradle.util.GUtil;

import java.util.Set;

public class NativeVariantIdentity implements SoftwareComponentInternal, ComponentWithCoordinates {
    private final String name;
    private final Provider<String> baseName;
    private final Provider<String> group;
    private final Provider<String> version;
    private final boolean debuggable;
    private final boolean optimized;
    private final OperatingSystemFamily operatingSystemFamily;
    private final UsageContext linkUsage;
    private final UsageContext runtimeUsage;
    private final Set<UsageContext> usageContexts;

    public NativeVariantIdentity(String name, Provider<String> baseName, Provider<String> group,
            Provider<String> version, boolean debuggable, boolean optimized,
            OperatingSystemFamily operatingSystemFamily, UsageContext linkUsage, UsageContext runtimeUsage) {
        this.name = name;
        this.baseName = baseName;
        this.group = group;
        this.version = version;
        this.debuggable = debuggable;
        this.optimized = optimized;
        this.operatingSystemFamily = operatingSystemFamily;
        this.linkUsage = linkUsage;
        this.runtimeUsage = runtimeUsage;
        this.usageContexts = Sets.newLinkedHashSet();
        if (linkUsage != null) {
            usageContexts.add(linkUsage);
        }
        if (runtimeUsage != null) {
            usageContexts.add(runtimeUsage);
        }
    }

    public boolean isDebuggable() {
        return debuggable;
    }

    public boolean isOptimized() {
        return optimized;
    }

    public OperatingSystemFamily getOperatingSystemFamily() {
        return operatingSystemFamily;
    }

    @Override
    public ModuleVersionIdentifier getCoordinates() {
        return DefaultModuleVersionIdentifier.newId(group.get(), baseName.get() + "_" + GUtil.toWords(name, '_'),
                version.get());
    }

    @Override
    public Set<? extends UsageContext> getUsages() {
        return usageContexts;
    }

    @Override
    public String getName() {
        return name;
    }

    public UsageContext getRuntimeUsageContext() {
        return runtimeUsage;
    }

    public UsageContext getLinkUsageContext() {
        return linkUsage;
    }
}