3 * Copyright (C) 2009-2021 SonarSource SA
4 * mailto:info AT sonarsource DOT com
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 3 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 package org.sonar.ce.task.projectanalysis.component;
22 import java.util.Collections;
23 import java.util.HashMap;
24 import java.util.HashSet;
25 import java.util.List;
28 import org.sonar.ce.task.projectanalysis.analysis.AnalysisMetadataHolder;
29 import org.sonar.db.DbClient;
30 import org.sonar.db.DbSession;
31 import org.sonar.db.component.KeyWithUuidDto;
33 import static org.sonar.db.component.ComponentDto.removeBranchAndPullRequestFromKey;
36 * Cache a map of component key -> set<uuid> in sibling PRs that have open issues
38 public class SiblingComponentsWithOpenIssues {
39 private final DbClient dbClient;
40 private final AnalysisMetadataHolder metadataHolder;
41 private final TreeRootHolder treeRootHolder;
43 private Map<String, Set<String>> uuidsByKey;
45 public SiblingComponentsWithOpenIssues(TreeRootHolder treeRootHolder, AnalysisMetadataHolder metadataHolder, DbClient dbClient) {
46 this.treeRootHolder = treeRootHolder;
47 this.metadataHolder = metadataHolder;
48 this.dbClient = dbClient;
51 private void loadUuidsByKey() {
52 String currentBranchUuid = treeRootHolder.getRoot().getUuid();
53 String referenceBranchUuid;
55 if (metadataHolder.isPullRequest()) {
56 referenceBranchUuid = metadataHolder.getBranch().getReferenceBranchUuid();
58 referenceBranchUuid = currentBranchUuid;
61 uuidsByKey = new HashMap<>();
62 try (DbSession dbSession = dbClient.openSession(false)) {
63 List<KeyWithUuidDto> components = dbClient.componentDao().selectAllSiblingComponentKeysHavingOpenIssues(dbSession, referenceBranchUuid, currentBranchUuid);
64 for (KeyWithUuidDto dto : components) {
65 uuidsByKey.computeIfAbsent(removeBranchAndPullRequestFromKey(dto.key()), s -> new HashSet<>()).add(dto.uuid());
70 public Set<String> getUuids(String componentKey) {
71 if (uuidsByKey == null) {
75 return uuidsByKey.getOrDefault(componentKey, Collections.emptySet());