Interface PreReceiveHook
- All Known Implementing Classes:
PreReceiveHookChain
ReceivePack
before any
updates are executed.
The hook is called with any commands that are deemed valid after parsing them from the client and applying the standard receive configuration options to them:
receive.denyDenyDeletes
receive.denyNonFastForwards
ReceivePack.getAllCommands()
.
As the hook is invoked prior to the commands being executed, the hook may
choose to block any command by setting its result status with
ReceiveCommand.setResult(ReceiveCommand.Result)
.
The hook may also choose to perform the command itself (or merely pretend
that it has performed the command), by setting the result status to
ReceiveCommand.Result.OK
.
Hooks should run quickly, as they block the caller thread and the client process from completing.
Hooks may send optional messages back to the client via methods on
ReceivePack
. Implementors should be aware
that not all network transports support this output, so some (or all)
messages may simply be discarded. These messages should be advisory only.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
onPreReceive
(ReceivePack rp, Collection<ReceiveCommand> commands) Invoked just before commands are executed.
-
Field Details
-
NULL
A simple no-op hook.
-
-
Method Details
-
onPreReceive
Invoked just before commands are executed.See the class description for how this method can impact execution.
- Parameters:
rp
- the process handling the current receive. Hooks may obtain details about the destination repository through this handle.commands
- unmodifiable set of valid commands still pending execution. May be the empty set.
-