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

com.google.gerrit.server.query.change.DistinctVotersPredicate Maven / Gradle / Ivy

There is a newer version: 3.10.0
Show newest version
// Copyright (C) 2022 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.query.change;

import com.google.common.base.Splitter;
import com.google.common.collect.ImmutableList;
import com.google.common.primitives.Ints;
import com.google.gerrit.entities.LabelType;
import com.google.gerrit.entities.PatchSetApproval;
import com.google.gerrit.index.query.QueryParseException;
import com.google.gerrit.server.project.ProjectCache;
import com.google.gerrit.server.project.ProjectState;
import com.google.inject.Inject;
import com.google.inject.assistedinject.Assisted;
import java.util.Optional;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * A submit requirement predicate that allows checking for distinct voters across labels.
 *
 * 

Examples: * *

    *
  • [Label-Name1,Label-Name2],value=MAX,count=2 *
  • [Label-Name1,Label-Name2,Label-Name3],count=5 *
*/ public class DistinctVotersPredicate extends SubmitRequirementPredicate { public interface Factory { DistinctVotersPredicate create(String value) throws QueryParseException; } private static final Pattern PATTERN = Pattern.compile( "\\[(?[^\\]]+)\\](,value=(?MAX|MIN|-?[0-9]+))?,count\\>(?[0-9]+)"); private final ProjectCache projectCache; private final ImmutableList labelNames; private final boolean enforceMaxVote; private final boolean enforceMinVote; private final Optional enforceIntegerVote; private final int numDistinctVotes; @Inject public DistinctVotersPredicate(ProjectCache projectCache, @Assisted String value) throws QueryParseException { super("distinctvoters", value); this.projectCache = projectCache; Matcher m = PATTERN.matcher(value); if (!m.matches()) { throw new QueryParseException("input " + value + " invalid"); } labelNames = ImmutableList.copyOf(Splitter.on(',').split(m.group("labels"))); Integer votes = Ints.tryParse(m.group("count")); if (votes == null) { throw new QueryParseException("unable to parse number of required votes"); } numDistinctVotes = votes + 1; // Regex has > sign if (m.group("value") != null) { enforceMaxVote = "MAX".equals(m.group("value")); enforceMinVote = "MIN".equals(m.group("value")); enforceIntegerVote = Optional.ofNullable(Ints.tryParse(m.group("value"))); } else { enforceMaxVote = false; enforceMinVote = false; enforceIntegerVote = Optional.empty(); } } @Override public boolean match(ChangeData cd) { ProjectState projectState = projectCache .get(cd.project()) .orElseThrow(() -> new IllegalStateException("project absent " + cd.project())); return cd.currentApprovals().stream() .filter(psa -> filterPatchSetApproval(psa, projectState)) .map(PatchSetApproval::accountId) .distinct() .count() >= numDistinctVotes; } @Override public int getCost() { return 1; } private boolean filterPatchSetApproval(PatchSetApproval psa, ProjectState projectState) { if (!labelNames.contains(psa.label())) { return false; } Optional labelType = projectState.getLabelTypes().byLabel(psa.labelId()); if (labelType.isEmpty()) { // Label is not configured in this project return false; } if (enforceMaxVote && psa.value() != labelType.get().getMaxPositive()) { return false; } if (enforceMinVote && psa.value() != labelType.get().getMaxNegative()) { return false; } if (enforceIntegerVote.isPresent() && psa.value() != enforceIntegerVote.get()) { return false; } return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy