Search in sources :

Example 1 with OpenBranch

use of com.google.gerrit.server.git.MergeOpRepoManager.OpenBranch in project gerrit by GerritCodeReview.

the class MergeOp method getSubmitStrategies.

private List<SubmitStrategy> getSubmitStrategies(Map<Branch.NameKey, BranchBatch> toSubmit, SubmoduleOp submoduleOp, boolean dryrun) throws IntegrationException, NoSuchProjectException, IOException {
    List<SubmitStrategy> strategies = new ArrayList<>();
    Set<Branch.NameKey> allBranches = submoduleOp.getBranchesInOrder();
    Set<CodeReviewCommit> allCommits = toSubmit.values().stream().map(BranchBatch::commits).flatMap(Set::stream).collect(toSet());
    for (Branch.NameKey branch : allBranches) {
        OpenRepo or = orm.getRepo(branch.getParentKey());
        if (toSubmit.containsKey(branch)) {
            BranchBatch submitting = toSubmit.get(branch);
            OpenBranch ob = or.getBranch(branch);
            checkNotNull(submitting.submitType(), "null submit type for %s; expected to previously fail fast", submitting);
            Set<CodeReviewCommit> commitsToSubmit = submitting.commits();
            ob.mergeTip = new MergeTip(ob.oldTip, commitsToSubmit);
            SubmitStrategy strategy = submitStrategyFactory.create(submitting.submitType(), db, or.rw, or.canMergeFlag, getAlreadyAccepted(or, ob.oldTip), allCommits, branch, caller, ob.mergeTip, commitStatus, submissionId, submitInput.notify, accountsToNotify, submoduleOp, dryrun);
            strategies.add(strategy);
            strategy.addOps(or.getUpdate(batchUpdateFactory), commitsToSubmit);
            if (submitting.submitType().equals(SubmitType.FAST_FORWARD_ONLY) && submoduleOp.hasSubscription(branch)) {
                submoduleOp.addOp(or.getUpdate(batchUpdateFactory), branch);
            }
        } else {
            // no open change for this branch
            // add submodule triggered op into BatchUpdate
            submoduleOp.addOp(or.getUpdate(batchUpdateFactory), branch);
        }
    }
    return strategies;
}
Also used : ArrayList(java.util.ArrayList) Branch(com.google.gerrit.reviewdb.client.Branch) OpenBranch(com.google.gerrit.server.git.MergeOpRepoManager.OpenBranch) OpenRepo(com.google.gerrit.server.git.MergeOpRepoManager.OpenRepo) SubmitStrategy(com.google.gerrit.server.git.strategy.SubmitStrategy) OpenBranch(com.google.gerrit.server.git.MergeOpRepoManager.OpenBranch)

Aggregations

Branch (com.google.gerrit.reviewdb.client.Branch)1 OpenBranch (com.google.gerrit.server.git.MergeOpRepoManager.OpenBranch)1 OpenRepo (com.google.gerrit.server.git.MergeOpRepoManager.OpenRepo)1 SubmitStrategy (com.google.gerrit.server.git.strategy.SubmitStrategy)1 ArrayList (java.util.ArrayList)1