@NotThreadSafe public interface CommandBuilder<B extends CommandBuilder<B>> extends CommandBuilderSupport<B>
arguments
.
As this builder is free-form, it is left to the caller to ensure the validity of the command being built. This includes, among other things:
input handler
is supportedMethods for removing property values have two possible prefixes, where each property will only provide one:
About arguments: Each call to a method accepting an argument is expected to be provided a single argument. Providing multiple arguments separated by a space will cause the executed command to fail. Consider the following example:
CommandBuilder<Void> builder = ...;
builder.command("someCommand").argument("a b").build(someOutputHandler).call();
The argument array for the executed command will contain a single entry, "a b"
, not two entries
"a"
and "b"
. This is likely to result in usage exceptions
. This
applies to:
argument(String)
argumentAfter(String, String)
argumentAt(int, String)
argumentBefore(String, String)
rawArgument(String)
rawArgumentAfter(String, String)
rawArgumentAt(int, String)
rawArgumentBefore(String, String)
About whitespace: In general, leading and trailing whitespace for most arguments is usually a mistake, and likely to result in the command failing unexpectedly. When typing commands into a shell, the shell typically consumes leading and trailing whitespace. That behavior is emulated by the following methods:
argument(String)
argumentAfter(String, String)
argumentAt(int, String)
argumentBefore(String, String)
rawArgument(String)
rawArgumentAfter(String, String)
rawArgumentAt(int, String)
rawArgumentBefore(String, String)
Warning: Command builders are not thread-safe. Each builder should be used on a single thread. If multiple threads require builders, each thread should construct its own. Chained builders returned from any method on builder interfaces are attached to their originating build and share threading semantics. This means calling builder methods and passing the returned objects to different threads is also not supported.
Modifier and Type | Method and Description |
---|---|
B |
argument(String argument)
Appends the provided argument, with leading and trailing whitespace trimmed
|
B |
argumentAfter(String anchor,
String argument)
Inserts the provided argument, with leading and trailing whitespace trimmed, immediately after the
specified anchor if the anchor can be found.
|
B |
argumentAt(int index,
String argument)
Inserts the provided argument, with leading and trailing whitespace trimmed, at the specified index.
|
B |
argumentBefore(String anchor,
String argument)
Inserts the provided argument, with leading and trailing whitespace trimmed, immediately before the
specified anchor if the anchor can be found.
|
B |
clearArguments()
Clears any arguments which have been set.
|
B |
clearInputHandler()
Clears the
input handler , if one has been set. |
B |
defaultErrorHandler()
Applies the default
error handler , which will collect any output written to the
error stream and provide that output to the exit handler . |
B |
errorHandler(CommandErrorHandler value)
Sets the
error handler which will be used to process any output written to the
error stream as the command runs. |
B |
inputHandler(CommandInputHandler value)
Sets the
input handler which will be used to feed data to the command's input
stream. |
B |
rawArgument(String argument)
Appends the provided argument, verbatim
|
B |
rawArgumentAfter(String anchor,
String argument)
Inserts the provided argument, verbatim, immediately after the specified anchor if the anchor can be
found.
|
B |
rawArgumentAt(int index,
String argument)
Inserts the provided argument, verbatim, at the specified index.
|
B |
rawArgumentBefore(String anchor,
String argument)
Inserts the provided argument, verbatim, immediately before the specified anchor if the anchor can be
found.
|
build, clearEnvironment, defaultExitHandler, defaultWorkDir, defaultWorkingDirectory, exitHandler, removeEnvironment, withEnvironment, workDir, workDir, workingDirectory, workingDirectory, workingDirectory
@Nonnull B argument(String argument)
Note: Arguments must be provided one per invocation. There is no need to quote strings which include spaces; spaces in arguments are not interpreted. They are passed as-is to the command.
argument
- the argument to append to the commandthis
IllegalArgumentException
- if the provided argument
is empty or blankNullPointerException
- if the provided argument
is null
@Nonnull B argumentAfter(String anchor, String argument)
Note: Arguments must be provided one per invocation. There is no need to quote strings which include spaces; spaces in arguments are not interpreted. They are passed as-is to the command.
anchor
- the argument serving as the anchor for the new argumentargument
- the argument to add immediately after the specified anchorthis
IllegalArgumentException
- if the provided argument
is empty or blankNullPointerException
- if the provided argument
is null
@Nonnull B argumentAt(int index, String argument)
Note: Arguments must be provided one per invocation. There is no need to quote strings which include spaces; spaces in arguments are not interpreted. They are passed as-is to the command.
index
- the index at which the argument should be insertedargument
- the argument to insert at the specified indexthis
IllegalArgumentException
- if the provided argument
is empty or blankIndexOutOfBoundsException
- if the provided index
is out of boundsNullPointerException
- if the provided argument
is null
@Nonnull B argumentBefore(String anchor, String argument)
Note: Arguments must be provided one per invocation. There is no need to quote strings which include spaces; spaces in arguments are not interpreted. They are passed as-is to the command.
anchor
- the argument serving as the anchor for the new argumentargument
- the argument to add immediately before the specified anchorthis
IllegalArgumentException
- if the provided argument
is empty or blankNullPointerException
- if the provided argument
is null
@Nonnull B clearInputHandler()
input handler
, if one has been set. Without an input handler, no data
will be provided on the command's input stream.
Some commands always read data from their input stream, rather than, or in addition to, considering arguments
provided on the command line. For such commands, the caller must provide an explicit
input handler
; there is no automatic default.
this
@Nonnull B defaultErrorHandler()
error handler
, which will collect any output written to the
error stream and provide that output to the exit handler
.this
@Nonnull B errorHandler(@Nonnull CommandErrorHandler value)
error handler
which will be used to process any output written to the
error stream as the command runs.
When using a custom error handler, the exit handler
will not receive error
stream output; it is assumed that the error handler will have received and processed the output already. If
the error handler throws an exception in response to error stream output, the exit handler will receive that
exception.
value
- the handler to receive and process the command's error streamthis
NullPointerException
- if the provided value
is null
@Nonnull B inputHandler(@Nonnull CommandInputHandler value)
input handler
which will be used to feed data to the command's input
stream.
Some commands require specific arguments to trigger processing data provided via an input stream. For such commands, the caller must also provide those arguments in addition to setting the input handler; the builder does not add them automatically.
value
- the handler to receive and process the command's input streamthis
NullPointerException
- if the provided value
is null
@Nonnull B rawArgument(String argument)
Note: Arguments must be provided one per invocation. There is no need to quote strings which include spaces; spaces in arguments are not interpreted. They are passed as-is to the command.
argument
- the argument to append to the commandthis
NullPointerException
- if the provided argument
is null
@Nonnull B rawArgumentAfter(String anchor, String argument)
Note: Arguments must be provided one per invocation. There is no need to quote strings which include spaces; spaces in arguments are not interpreted. They are passed as-is to the command.
anchor
- the argument serving as the anchor for the new argumentargument
- the argument to add immediately after the specified anchorthis
NullPointerException
- if the provided argument
is null
@Nonnull B rawArgumentAt(int index, String argument)
Note: Arguments must be provided one per invocation. There is no need to quote strings which include spaces; spaces in arguments are not interpreted. They are passed as-is to the command.
index
- the index at which the argument should be insertedargument
- the argument to insert at the specified indexthis
IndexOutOfBoundsException
- if the provided index
is out of boundsNullPointerException
- if the provided argument
is null
@Nonnull B rawArgumentBefore(String anchor, String argument)
Note: Arguments must be provided one per invocation. There is no need to quote strings which include spaces; spaces in arguments are not interpreted. They are passed as-is to the command.
anchor
- the argument serving as the anchor for the new argumentargument
- the argument to add immediately before the specified anchorthis
NullPointerException
- if the provided argument
is null
Copyright © 2021 Atlassian. All rights reserved.