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

com.google.gerrit.server.git.validators.OnSubmitValidationListener Maven / Gradle / Ivy

There is a newer version: 3.10.0
Show newest version
// Copyright (C) 2017 The Android Open Source Project
//
// 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.google.gerrit.server.git.validators;

import static java.util.Objects.requireNonNull;

import com.google.common.collect.ImmutableMap;
import com.google.gerrit.entities.Project;
import com.google.gerrit.extensions.annotations.ExtensionPoint;
import com.google.gerrit.server.git.RefCache;
import com.google.gerrit.server.update.ChainedReceiveCommands;
import com.google.gerrit.server.validators.ValidationException;
import java.io.IOException;
import java.util.Optional;
import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.revwalk.RevWalk;
import org.eclipse.jgit.transport.ReceiveCommand;

/**
 * Listener to validate ref updates performed during submit operation.
 *
 * 

As submit strategies may generate new commits (e.g. Cherry Pick), this listener allows * validation of resulting new commit before destination branch is updated and new patchset ref is * created. * *

If you only care about validating the change being submitted and not the resulting new commit, * consider using {@link MergeValidationListener} instead. */ @ExtensionPoint public interface OnSubmitValidationListener { class Arguments { private Project.NameKey project; private RevWalk rw; private ImmutableMap commands; private RefCache refs; /** * @param project project. * @param rw revwalk that can read unflushed objects from {@code refs}. * @param commands commands to be executed. */ Arguments(Project.NameKey project, RevWalk rw, ChainedReceiveCommands commands) { this.project = requireNonNull(project); this.rw = requireNonNull(rw); this.refs = requireNonNull(commands); this.commands = ImmutableMap.copyOf(commands.getCommands()); } /** Get the project name for this operation. */ public Project.NameKey getProject() { return project; } /** * Get a revwalk for this operation. * *

This instance is able to read all objects mentioned in {@link #getCommands()} and {@link * #getRef(String)}. * * @return open revwalk. */ public RevWalk getRevWalk() { return rw; } /** * Returns a map from ref to commands covering all ref operations to be performed on this * repository as part of the ongoing submit operation. */ public ImmutableMap getCommands() { return commands; } /** * Get a ref from the repository. * * @param name ref name; can be any ref, not just the ones mentioned in {@link #getCommands()}. * @return latest value of a ref in the repository, as if all commands from {@link * #getCommands()} had already been applied. * @throws IOException if an error occurred reading the ref. */ public Optional getRef(String name) throws IOException { return refs.get(name); } } /** * Called right before branch is updated with new commit or commits as a result of submit. * *

If ValidationException is thrown, submitting is aborted. */ void preBranchUpdate(Arguments args) throws ValidationException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy