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

org.gradle.nativeplatform.internal.AbstractBinaryToolSpec Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2013 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.nativeplatform.internal;

import org.gradle.internal.operations.logging.BuildOperationLogger;
import org.gradle.nativeplatform.platform.NativePlatform;

import java.io.File;
import java.util.ArrayList;
import java.util.List;

public class AbstractBinaryToolSpec implements BinaryToolSpec {
    private List args = new ArrayList();
    private List systemArgs = new ArrayList();
    private File tempDir;
    private NativePlatform platform;
    private BuildOperationLogger oplogger;

    @Override
    public NativePlatform getTargetPlatform() {
        return platform;
    }

    @Override
    public void setTargetPlatform(NativePlatform platform) {
        this.platform = platform;
    }

    @Override
    public File getTempDir() {
        return tempDir;
    }

    @Override
    public void setTempDir(File tempDir) {
        this.tempDir = tempDir;
    }

    @Override
    public List getArgs() {
        return args;
    }

    @Override
    public void args(List args) {
        this.args.addAll(args);
    }

    @Override
    public List getSystemArgs() {
        return systemArgs;
    }

    @Override
    public void systemArgs(List args) {
       if(!systemArgs.containsAll(args)){
           systemArgs.addAll(args);
       }
    }

    @Override
    public List getAllArgs() {
        List allArgs = new ArrayList(systemArgs.size() + args.size());
        allArgs.addAll(systemArgs);
        allArgs.addAll(args);
        return allArgs;
    }

    @Override
    public BuildOperationLogger getOperationLogger() {
        return oplogger;
    }

    @Override
    public void setOperationLogger(BuildOperationLogger oplogger) {
        this.oplogger = oplogger;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy