blob: 751241f7c756f738c8604736e910fabfbf500b2a [file] [log] [blame]
/*
* Copyright 2018 The Bazel Authors. All rights reserved.
*
* 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 io.bazel.ruleskotlin.workers;
import java.util.Arrays;
import java.util.List;
import java.util.function.Function;
/**
* Interface for command line programs.
* <p>
* <p>This is the same thing as a main function, except not static.
*/
public interface CommandLineProgram extends Function<List<String>, Integer> {
/**
* Runs blocking program start to finish.
* <p>
* <p>This function might be called multiple times throughout the life of this object. Output
* must be sent to {@link System#out} and {@link System#err}.
*
* @param args command line arguments
* @return program exit code, i.e. 0 for success, non-zero for failure
*/
@Override
Integer apply(List<String> args);
default Integer apply(String[] args) {
return apply(Arrays.asList(args));
}
}