blob: 5b6adee60398de74dc3826ac2a62583fab3792e0 [file] [log] [blame]
/*
* Copyright 2013-present Facebook, Inc.
*
* 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 com.facebook.buck.cli;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Supplier;
import com.google.common.base.Suppliers;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import org.kohsuke.args4j.Argument;
import org.kohsuke.args4j.Option;
import java.util.List;
public class RunCommandOptions extends AbstractCommandOptions {
/**
* Expected usage:
* <pre>
* buck run //java/com/facebook/tools/munge:munge --mungearg /tmp/input
* </pre>
*/
@Argument
private List<String> noDashArguments = Lists.newArrayList();
@Option(name = "--", handler = ConsumeAllOptionsHandler.class)
private List<String> withDashArguments = Lists.newArrayList();
private Supplier<List<String>> arguments = Suppliers.memoize(
new Supplier<List<String>>() {
@Override
public List<String> get() {
ImmutableList.Builder<String> builder = new ImmutableList.Builder<>();
builder.addAll(noDashArguments);
builder.addAll(withDashArguments);
return builder.build();
}
});
public RunCommandOptions(BuckConfig buckConfig) {
super(buckConfig);
}
public List<String> getArguments() { return arguments.get(); }
/** @return the arguments (if any) to be passed to the target command. */
public List<String> getTargetArguments() {
return arguments.get().subList(1, arguments.get().size());
}
public boolean hasTargetSpecified() {
return arguments.get().size() > 0;
}
/** @return the normalized target name for command to run. */
public String getTarget() {
return getCommandLineBuildTargetNormalizer().normalize(arguments.get().get(0));
}
@VisibleForTesting
void setArguments(List<String> arguments) {
this.arguments = Suppliers.ofInstance(arguments);
}
}