Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Copyright (C) 2021 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.project;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.MoreCollectors;
import com.google.common.flogger.FluentLogger;
import com.google.gerrit.entities.LabelType;
import com.google.gerrit.entities.SubmitRecord;
import com.google.gerrit.entities.SubmitRecord.Label;
import com.google.gerrit.entities.SubmitRequirement;
import com.google.gerrit.entities.SubmitRequirementExpression;
import com.google.gerrit.entities.SubmitRequirementExpressionResult;
import com.google.gerrit.entities.SubmitRequirementExpressionResult.Status;
import com.google.gerrit.entities.SubmitRequirementResult;
import com.google.gerrit.server.query.change.ChangeData;
import com.google.gerrit.server.query.change.ChangeQueryBuilder;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.function.Function;
import java.util.stream.Collectors;
import org.eclipse.jgit.lib.ObjectId;
/**
* Convert {@link com.google.gerrit.entities.SubmitRecord} entities to {@link
* com.google.gerrit.entities.SubmitRequirementResult}s.
*/
public class SubmitRequirementsAdapter {
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
private SubmitRequirementsAdapter() {}
/**
* Retrieve legacy submit records (created by label functions and other {@link
* com.google.gerrit.server.rules.SubmitRule}s) and convert them to submit requirement results.
*/
public static Map getLegacyRequirements(
SubmitRuleEvaluator.Factory evaluator, ChangeData cd) {
// We use SubmitRuleOptions.defaults() which does not recompute submit rules for closed changes.
// This doesn't have an effect since we never call this class (i.e. to evaluate submit
// requirements) for closed changes.
List records = evaluator.create(SubmitRuleOptions.defaults()).evaluate(cd);
List labelTypes = cd.getLabelTypes().getLabelTypes();
ObjectId commitId = cd.currentPatchSet().commitId();
return records.stream()
.map(r -> createResult(r, labelTypes, commitId))
.flatMap(List::stream)
.collect(Collectors.toMap(sr -> sr.submitRequirement(), Function.identity()));
}
static List createResult(
SubmitRecord record, List labelTypes, ObjectId psCommitId) {
List results;
if (record.ruleName != null && record.ruleName.equals("gerrit~DefaultSubmitRule")) {
results = createFromDefaultSubmitRecord(record.labels, labelTypes, psCommitId);
} else {
results = createFromCustomSubmitRecord(record, psCommitId);
}
logger.atFine().log("Converted submit record %s to submit requirements %s", record, results);
return results;
}
private static List createFromDefaultSubmitRecord(
List